/* ========================================
   Panduri Homepage - Enhanced UI/UX CSS
   Readability, Background Variations, Slider
   ======================================== */

/* ============ CSS Variables ============ */
:root {
    --primary: #f15d30;
    --primary-dark: #d94a1f;
    --dark: #1a1a2e;
    --gray-dark: #4a4a68;
    --gray: #6c757d;
    --gray-light: #f8f9fa;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* ============ Global Text Readability ============ */
.text-container {
    max-width: 650px;
}

.text-container-wide {
    max-width: 800px;
}

/* ============ Hero Section with Strong Overlay ============ */
.hero-wrap .overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%) !important;
    opacity: 1 !important;
}

.hero-wrap .slider-text h1 {
    max-width: 700px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 45px !important;
}

/* Hero Wrap 2 - Inner Page Headers */
.hero-wrap-2 {
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
    min-height: 50vh !important;
}

.hero-wrap-2 .overlay {
    background: linear-gradient(180deg, rgba(26, 58, 82, 0.85) 0%, rgba(26, 58, 82, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%) !important;
    opacity: 1 !important;
}

.hero-wrap-2 .slider-text {
    padding-bottom: 80px;
}

.hero-wrap-2 .slider-text h1.bread {
    max-width: none;
    width: 100%;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
    font-size: 42px !important;
    font-weight: 700;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.hero-wrap-2 .slider-text .breadcrumbs {
    text-align: center !important;
    margin-bottom: 15px;
}

.hero-wrap-2 .slider-text .breadcrumbs span a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.hero-wrap-2 .slider-text .breadcrumbs span a:hover {
    color: #f15d30;
}

.hero-wrap-2 .slider-text .breadcrumbs span i {
    color: #f15d30;
    margin: 0 5px;
}

/* Hero-wrap-2 Responsive */
@media (max-width: 991px) {
    .hero-wrap-2 {
        min-height: 40vh !important;
        background-attachment: scroll !important;
    }

    .hero-wrap-2 .slider-text h1.bread {
        font-size: 32px !important;
    }
}

@media (max-width: 576px) {
    .hero-wrap-2 {
        min-height: 35vh !important;
    }

    .hero-wrap-2 .slider-text h1.bread {
        font-size: 26px !important;
    }

    .hero-wrap-2 .slider-text {
        padding-bottom: 50px;
    }
}

.hero-wrap .slider-text .subheading {
    color: #fff !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-wrap .slider-text p {
    max-width: 550px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    font-size: 15px;
}

/* Hero Blog Mini Highlight */
.hero-blog-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 30px;
    max-width: 450px;
}

.hero-blog-highlight .badge {
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    display: inline-block;
}

.hero-blog-highlight h6 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.hero-blog-highlight .meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-blog-highlight a {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

/* Hero Info Bar Improved */
.hero-info-bar {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info-item {
    text-align: left;
}

.hero-info-item small {
    display: block;
    font-size: 10px;
    opacity: 0.7;
    margin-bottom: 2px;
}

.hero-info-item strong {
    font-size: 13px;
    font-weight: 600;
}

/* ============ Section Headers ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subheading {
    font-size: 28px;
    color: var(--primary);
    font-family: "Arizonia", cursive;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ Section Backgrounds ============ */
/* Solid Background Sections */
.section-solid {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-solid-gray {
    background: var(--gray-light);
}

/* Image Background with Blur + Overlay */
.section-image-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-image-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.section-image-bg>.container {
    position: relative;
    z-index: 1;
}

.section-image-bg .section-header h2,
.section-image-bg .section-header p,
.section-image-bg .section-header .subheading {
    color: #fff;
}

.section-image-bg .section-header .subheading {
    color: var(--primary);
}

/* ============ About Section - Wave Depth Background ============ */
.section-about {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23f1f3f5' d='M0,64L80,69.3C160,75,320,85,480,80C640,75,800,53,960,48C1120,43,1280,53,1360,58.7L1440,64L1440,120L1360,120C1280,120,1120,120,960,120C800,120,640,120,480,120C320,120,160,120,80,120L0,120Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 0;
}

.section-about::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-about>.container {
    position: relative;
    z-index: 1;
}

/* ============ Services Section - Geometric Depth ============ */
.services-section {
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.services-section>.container {
    position: relative;
    z-index: 1;
}

.services.services-1 {
    position: relative;
    width: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.services.services-1:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.services.services-1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.services.services-1 .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.services.services-1 .icon span {
    font-size: 24px;
    color: #fff;
}

.services.services-1 .media-body {
    padding: 25px;
    position: relative;
    z-index: 1;
}

.services.services-1 .heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.services.services-1 p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.services.services-1 .btn-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.services.services-1 .btn-link:hover {
    color: #fff;
}

/* ============ Blog Section - Subtle Dot Pattern ============ */
.blog-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
}

.blog-section::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(241, 93, 48, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.blog-section>.container {
    position: relative;
    z-index: 1;
}

.blog-featured {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.blog-featured:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.blog-featured .featured-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-featured .featured-image .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.blog-featured .featured-content {
    padding: 20px;
}

.blog-featured .meta {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
}

.blog-featured h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-featured h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-featured h3 a:hover {
    color: var(--primary);
}

.blog-featured p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Blog Card Small */
.blog-card-small {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-card-small:hover {
    box-shadow: var(--shadow-md);
}

.blog-card-small .card-image {
    width: 100px;
    min-height: 80px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.blog-card-small .card-content {
    padding: 12px 15px;
    flex: 1;
}

.blog-card-small .meta {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 5px;
}

.blog-card-small h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.blog-card-small h5 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-small h5 a:hover {
    color: var(--primary);
}

/* ============ Testimonial & CTA Shared Background ============ */
.testimony-section {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimony-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.88) 0%, rgba(241, 93, 48, 0.15) 100%);
}

.testimony-section>.container {
    position: relative;
    z-index: 1;
}

.testimony-section .section-header h2,
.testimony-section .section-header p {
    color: #fff;
}

.testimony-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin: 10px;
    box-shadow: var(--shadow-sm);
}

.testimony-wrap .star {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimony-wrap .text p {
    color: var(--gray-dark);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimony-wrap .user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.testimony-wrap .name {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 0;
}

.testimony-wrap .position {
    font-size: 13px;
    color: var(--primary);
}

/* Owl Carousel Dots */
.carousel-testimony .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.carousel-testimony .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.carousel-testimony .owl-dots .owl-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============ FAQ Section - Diagonal Lines Depth ============ */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(0, 0, 0, 0.01) 35px,
            rgba(0, 0, 0, 0.01) 70px);
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section>.container {
    position: relative;
    z-index: 1;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question .icon {
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question {
    background: var(--primary);
    color: #fff;
}

.faq-item.active .faq-question .icon {
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin: 0;
}

/* ============ CTA Section - Shared Background with Testimonial ============ */
.cta-section {
    padding: 50px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(241, 93, 48, 0.25) 100%);
}

.cta-section>.container {
    position: relative;
    z-index: 1;
}

.cta-section h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    margin: 0 8px;
}

.cta-section .btn-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(241, 93, 48, 0.4);
}

.cta-section .btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-section .btn-cta-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ============ Buttons Modern ============ */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-modern-primary {
    background: var(--primary);
    color: #fff;
}

.btn-modern-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-modern-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-modern-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ============ Detail Sections ============ */
.detail-section {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.detail-section h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-light);
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid var(--gray-light);
}

.detail-section ul li:last-child {
    border-bottom: none;
}

.detail-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Sidebar Box */
.sidebar-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.sidebar-box h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-box .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-box .btn {
    background: #fff;
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: var(--transition);
}

.sidebar-box .btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .hero-wrap .slider-text h1 {
        font-size: 42px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .hero-info-bar {
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .hero-wrap .slider-text h1 {
        font-size: 32px;
    }

    .hero-info-bar {
        flex-direction: column;
        gap: 15px;
    }

    .hero-blog-highlight {
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .blog-card-small {
        flex-direction: column;
    }

    .blog-card-small .card-image {
        width: 100%;
        height: 120px;
    }

    .faq-question {
        font-size: 14px;
        padding: 15px 20px;
    }

    .cta-section h3 {
        font-size: 22px;
    }
}

/* ============ Compact Navbar Brand ============ */
.ftco-navbar-light .navbar-brand {
    font-size: 20px !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.ftco-navbar-light .navbar-brand span {
    font-size: 9px !important;
}

.ftco-navbar-light.scrolled .navbar-brand {
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
}

/* ============ About Section - Photo Grid ============ */
.about-photo-box {
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.about-photo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.section-solid {
    background: #f8f9fa;
    padding: 80px 0;
}

/* ============ Login Button - Regular Nav Style ============ */
.ftco-navbar-light .nav-item.cta a {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 0 !important;
    padding: 0.5rem 0 !important;
    font-weight: 400 !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.ftco-navbar-light .nav-item.cta a:hover {
    color: var(--primary) !important;
}

.ftco-navbar-light.scrolled .nav-item.cta a {
    color: #000 !important;
}

.ftco-navbar-light.scrolled .nav-item.cta a:hover {
    color: var(--primary) !important;
}

/* ============ Footer - Reduced Bottom Spacing ============ */
.ftco-footer {
    padding-bottom: 20px !important;
}

.ftco-footer .container .row.mb-5 {
    margin-bottom: 1.5rem !important;
}

.ftco-footer .col-md.pt-5 {
    padding-top: 1.5rem !important;
}

.ftco-footer .ftco-footer-widget.pt-md-5 {
    padding-top: 0.5rem !important;
}

.ftco-footer .ftco-footer-widget.mb-4 {
    margin-bottom: 0.5rem !important;
}

/* ============ Enhanced Section Backgrounds - More Attractive ============ */
/* About Section - Ocean Wave with Glow */
.section-about {
    background: linear-gradient(180deg, #ffffff 0%, #e8f4f8 50%, #f0f8ff 100%) !important;
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}

.section-about::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23f1f5f9' fill-opacity='0.8' d='M0,96L48,90.7C96,85,192,75,288,80C384,85,480,107,576,112C672,117,768,107,864,96C960,85,1056,75,1152,74.7C1248,75,1344,85,1392,90.7L1440,96L1440,150L1392,150C1344,150,1248,150,1152,150C1056,150,960,150,864,150C768,150,672,150,576,150C480,150,384,150,288,150C192,150,96,150,48,150L0,150Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 0;
}

.section-about::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 8s ease-in-out infinite;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.1);
    }
}

/* Services Section - Geometric Mesh */
.services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%) !important;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(241, 93, 48, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 26, 46, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatBlob 10s ease-in-out infinite reverse;
}

/* Blog Section - Grid Dots Enhanced */
.blog-section {
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%) !important;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(241, 93, 48, 0.04) 2px, transparent 2px),
        radial-gradient(circle at 60% 30%, rgba(241, 93, 48, 0.08) 0%, transparent 40%);
    background-size: 25px 25px, 100% 100%;
    z-index: 0;
}

/* FAQ Section - Elegant Lines */
.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%) !important;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(135deg,
            transparent,
            transparent 50px,
            rgba(241, 93, 48, 0.02) 50px,
            rgba(241, 93, 48, 0.02) 100px);
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

/* Testimonial - Enhanced Overlay */
.testimony-section {
    padding: 60px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.testimony-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(45, 45, 74, 0.85) 50%, rgba(241, 93, 48, 0.3) 100%);
}

/* CTA Section - Same Style as Testimonial */
.cta-section {
    padding: 50px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(45, 45, 74, 0.88) 50%, rgba(241, 93, 48, 0.35) 100%);
}

/* ============ Clickable Link Styles ============ */
/* About Photo Links */
.about-photo-link {
    display: block;
    text-decoration: none;
}

.about-photo-box {
    position: relative;
    overflow: hidden;
}

.about-photo-box .photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(241, 93, 48, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.about-photo-box .photo-overlay span {
    font-size: 32px;
    color: #fff;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.about-photo-link:hover .photo-overlay {
    opacity: 1;
}

.about-photo-link:hover .photo-overlay span {
    transform: scale(1);
}

/* Services Link - Full Card Clickable */
.services-link {
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.services-link .services {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-link:hover .services {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.services-link .btn-link {
    color: #f15d30;
    transition: all 0.3s ease;
}

.services-link:hover .btn-link {
    letter-spacing: 1px;
}

/* Blog Featured Image Link */
.featured-image-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.featured-image-link .featured-image {
    transition: transform 0.5s ease;
}

.featured-image-link:hover .featured-image {
    transform: scale(1.05);
}

/* Blog Card Image Link */
.card-image-link {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
}

.card-image-link .card-image {
    transition: transform 0.4s ease;
}

.card-image-link:hover .card-image {
    transform: scale(1.1);
}

/* ============================================
   ABOUT PAGE - TAB LAYOUT STYLES
   ============================================ */

/* Hero Section */
.about-hero-section {
    height: 50vh;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.about-hero-section .hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
}

.about-hero-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Tab Section */
.services-tab-section {
    padding: 80px 0;
    background: #fff;
}

/* Tab Icons Grid */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 15px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 0;
    min-width: 0;
}

.tab-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.tab-item.active {
    background: var(--primary);
    border-color: var(--primary);
    position: relative;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid var(--primary);
}

.tab-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tab-item.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
}

.tab-icon span {
    font-size: 22px !important;
    color: var(--primary);
    transition: all 0.3s ease;
}

.tab-item.active .tab-icon span {
    color: #fff;
}

.tab-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    transition: all 0.3s ease;
    line-height: 1.3;
    word-wrap: break-word;
    hyphens: auto;
}

.tab-item.active .tab-label {
    color: #fff;
}

/* Tab Content */
.services-tab-content {
    background: #fff;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info {
    padding-left: 40px;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-info p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.btn-see-more {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-more:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 93, 48, 0.35);
}

/* Beach Info Section */
.beach-info-section {
    padding: 80px 0 40px 0;
    background: linear-gradient(180deg, #cce7f5 0%, #e0f2fe 30%, #f0f9ff 70%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Beach Ornaments - Wave pattern */
.beach-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%2390cdf4' fill-opacity='0.4' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 L1440,0 L0,0 Z'/%3E%3Cpath fill='%2363b3ed' fill-opacity='0.25' d='M0,60 C360,100 720,20 1080,60 C1260,80 1350,40 1440,60 L1440,0 L0,0 Z'/%3E%3C/svg%3E");
    background-size: cover;
}

/* Beach ornament - Sun/Circle decoration */
.beach-info-section::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.25) 0%, rgba(255, 200, 100, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(241, 93, 48, 0.1);
}

/* Additional wave at bottom */
.beach-info-section .container {
    position: relative;
    z-index: 1;
}

/* Decorative palm leaves */
.beach-info-section .container::before {
    content: '🌴';
    position: absolute;
    top: -50px;
    left: -30px;
    font-size: 80px;
    opacity: 0.25;
    transform: rotate(-15deg);
}

.beach-info-section .container::after {
    content: '🐚';
    position: absolute;
    bottom: -40px;
    right: 30px;
    font-size: 50px;
    opacity: 0.3;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 span {
    color: var(--primary);
    font-size: 24px;
}

/* Stats Grid in Info Card */
.info-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stat-box .stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-box .stat-label {
    font-size: 13px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.hour-item.highlight {
    background: linear-gradient(135deg, rgba(241, 93, 48, 0.1) 0%, rgba(241, 93, 48, 0.05) 100%);
    border-color: #ffc107;
}

.hour-item .day {
    font-weight: 600;
    color: var(--dark);
}

.hour-item .time {
    font-weight: 500;
    color: var(--primary);
}

/* Mini Cards */
.mini-card {
    text-align: center;
    padding: 25px;
}

.mini-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.mini-icon span {
    font-size: 26px;
    color: #fff;
}

.mini-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.mini-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.about-gallery-grid .gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-gallery-grid .gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-gallery-grid .gallery-item-1 {
    grid-row: span 2;
}

.about-intro-content .subheading {
    font-size: 18px;
    color: var(--primary);
    font-family: 'Arizonia', cursive;
    font-size: 28px;
}

.about-intro-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-intro-content .lead {
    font-size: 18px;
    color: var(--gray-dark);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-intro-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    display: flex;
    gap: 25px;
    margin: 30px 0;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-features .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-features .feature-icon span {
    color: #fff;
    font-size: 24px;
}

.about-features .feature-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.about-features .feature-text p {
    font-size: 14px;
    color: var(--gray);
    margin: 0;
}

.about-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Stats Section */
.about-stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon span {
    color: #fff;
    font-size: 28px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Services Section */
.about-services-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-detail-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-detail-card .service-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-detail-card .service-content {
    padding: 25px;
    position: relative;
}

.service-detail-card .service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -28px;
    left: 25px;
    box-shadow: 0 5px 15px rgba(241, 93, 48, 0.3);
}

.service-detail-card .service-icon span {
    color: #fff;
    font-size: 24px;
}

.service-detail-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 20px 0 12px;
}

.service-detail-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-detail-card .service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.service-detail-card .service-link:hover {
    gap: 10px;
}

/* Video Section */
.about-video-section {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-video-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(241, 93, 48, 0.4) 100%);
}

.video-content {
    position: relative;
    z-index: 1;
}

.video-content .subheading {
    color: var(--primary);
    font-family: 'Arizonia', cursive;
    font-size: 28px;
}

.video-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0 20px;
}

.video-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.play-button {
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    transition: all 0.3s ease;
    animation: pulse-glow 2s infinite;
}

.play-button:hover {
    transform: scale(1.15);
    background: var(--primary-dark);
    color: #fff;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(241, 93, 48, 0.5);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(241, 93, 48, 0);
    }
}

/* Testimonial Section */
.about-testimonial-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.testimony-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 15px;
}

.testimony-card .testimony-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    color: rgba(241, 93, 48, 0.15);
}

.testimony-card .star {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimony-card .testimony-text {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimony-card .testimony-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimony-card .author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--primary);
}

.testimony-card .author-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.testimony-card .author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-cta-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(241, 93, 48, 0.3) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 32px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery-grid {
        grid-template-rows: repeat(2, 150px);
    }

    .about-gallery-grid .gallery-item-1 {
        grid-row: span 1;
    }

    .video-content h2,
    .cta-content h2,
    .about-intro-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   GALLERY PAGE - MODERN BENTO GRID
   ============================================ */

/* Gallery Section Header */
.gallery-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.gallery-section .section-header {
    margin-bottom: 50px;
}

.gallery-section .section-header .subheading {
    font-family: 'Arizonia', cursive;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.gallery-section .section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.gallery-section .section-header p {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HORIZONTAL BENTO GALLERY LAYOUT
   Featured large image left + 5 small photos right
   ============================================ */

.gallery-horizontal-bento {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    height: 600px;
}

/* Featured Main Image - Left Side */
.gallery-featured-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    height: 100%;
}

.gallery-featured-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.gallery-featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-featured-main:hover img {
    transform: scale(1.05);
}

/* Featured Overlay */
.gallery-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.gallery-featured-main:hover .gallery-featured-overlay {
    opacity: 1;
}

.gallery-featured-overlay .featured-info h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-featured-main:hover .gallery-featured-overlay .featured-info h4 {
    transform: translateY(0);
}

.gallery-featured-overlay .featured-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s;
}

.gallery-featured-main:hover .gallery-featured-overlay .featured-info span {
    transform: translateY(0);
}

.gallery-featured-overlay .gallery-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-featured-overlay .gallery-view-icon span {
    font-size: 28px;
    color: var(--primary);
    transform: none;
}

.gallery-featured-main:hover .gallery-featured-overlay .gallery-view-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Small Photos Grid - Right Side */
.gallery-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 12px;
    height: 100%;
}

.gallery-small-item-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

/* Small Item */
.gallery-small-item {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-small-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-small-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-small-item:hover img {
    transform: scale(1.1);
}

.gallery-small-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-small-item:hover .gallery-small-overlay {
    opacity: 1;
}

.gallery-small-overlay .gallery-view-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-small-item:hover .gallery-small-overlay .gallery-view-icon {
    transform: scale(1);
}

.gallery-small-overlay .gallery-view-icon span {
    font-size: 18px;
    color: var(--primary);
}

/* See More Overlay - On Last Photo */
.gallery-see-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-see-more-overlay:hover {
    background: rgba(26, 26, 46, 0.9);
}

.gallery-see-more-overlay .see-more-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.gallery-see-more-overlay:hover .see-more-number {
    transform: scale(1.1);
    color: var(--primary);
}

.gallery-see-more-overlay .see-more-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.gallery-see-more-overlay:hover .see-more-label {
    color: #fff;
}

/* Responsive - Horizontal Bento */
@media (max-width: 991px) {
    .gallery-horizontal-bento {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-featured-main {
        height: 350px;
    }

    .gallery-small-grid {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .gallery-small-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 350px;
        gap: 8px;
    }

    .gallery-featured-main {
        height: 280px;
    }

    .gallery-see-more-overlay .see-more-number {
        font-size: 26px;
    }

    .gallery-see-more-overlay .see-more-label {
        font-size: 10px;
    }
}

/* Bento Grid Layout */
.gallery-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 20px;
}

/* Featured Item - Spans 2 columns and 2 rows */
.gallery-bento-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* Gallery Item Base */
.gallery-bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-bento-item:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.gallery-bento-item:hover .gallery-bento-overlay {
    opacity: 1;
}

.gallery-bento-overlay h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-bento-item:hover .gallery-bento-overlay h4 {
    transform: translateY(0);
}

.gallery-bento-overlay span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.15s;
}

.gallery-bento-item:hover .gallery-bento-overlay span {
    transform: translateY(0);
}

/* View Icon */
.gallery-view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-view-icon span {
    font-size: 24px;
    color: var(--primary);
    transform: none;
}

.gallery-bento-item:hover .gallery-view-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* See More Section */
.gallery-see-more-section {
    margin-top: 50px;
    text-align: center;
}

.gallery-see-more-card {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.gallery-see-more-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.2) 0%, transparent 60%);
    border-radius: 50%;
}

.gallery-see-more-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    border-radius: 50%;
}

.gallery-see-more-content {
    position: relative;
    z-index: 1;
}

.gallery-see-more-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(241, 93, 48, 0.3);
}

.gallery-see-more-icon span {
    font-size: 36px;
    color: #fff;
}

.gallery-see-more-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.gallery-see-more-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-see-more-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(241, 93, 48, 0.3);
}

.btn-see-more-gallery:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(241, 93, 48, 0.4);
    color: #fff;
}

.btn-see-more-gallery span {
    transition: transform 0.3s ease;
}

.btn-see-more-gallery:hover span {
    transform: translateX(5px);
}

.gallery-register-link {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.gallery-register-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.gallery-register-link a:hover {
    color: #fff;
}

/* Full Gallery (When logged in) */
.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-full-grid .gallery-bento-item {
    height: 250px;
}

/* Gallery Modal */
.gallery-count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

/* Responsive Gallery */
@media (max-width: 1199px) {
    .gallery-bento {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-full-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-bento-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-section .section-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .gallery-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-bento-item,
    .gallery-bento-item.featured {
        grid-column: span 1;
        grid-row: span 1;
        height: 220px;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr;
    }

    .gallery-see-more-card {
        padding: 40px 25px;
    }

    .gallery-see-more-content h3 {
        font-size: 24px;
    }

    .btn-see-more-gallery {
        padding: 14px 30px;
    }
}

/* ============================================
   GALLERY - INLINE SEE MORE CARD
   ============================================ */

/* See More Card - Inline with Gallery Grid */
.gallery-see-more-inline {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.gallery-see-more-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(241, 93, 48, 0.15) 0%, transparent 50%);
    transition: all 0.5s ease;
}

.gallery-see-more-inline:hover::before {
    transform: scale(1.2);
    background: radial-gradient(circle, rgba(241, 93, 48, 0.25) 0%, transparent 50%);
}

.gallery-see-more-inline .see-more-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.gallery-see-more-inline .see-more-content>span:first-child {
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.gallery-see-more-inline:hover .see-more-content>span:first-child {
    transform: scale(1.1);
}

.gallery-see-more-inline .see-more-count {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.gallery-see-more-inline .see-more-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-see-more-inline:hover .see-more-text {
    color: var(--primary);
}

.gallery-see-more-inline:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Responsive for inline see more */
@media (max-width: 575px) {
    .gallery-see-more-inline .see-more-count {
        font-size: 28px;
    }

    .gallery-see-more-inline .see-more-content>span:first-child {
        font-size: 28px;
    }
}

/* ============================================
   USER DROPDOWN MENU - SIMPLE & ALIGNED
   ============================================ */

/* User Toggle - Match nav-link padding exactly */
#ftco-navbar .navbar-nav>.nav-item.user-dropdown {
    position: relative !important;
}

#ftco-navbar .user-dropdown .nav-link.user-toggle {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #fff !important;
}

#ftco-navbar.scrolled .user-dropdown .nav-link.user-toggle {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    color: #000 !important;
}

#ftco-navbar .user-dropdown .user-toggle .user-avatar {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #f15d30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

#ftco-navbar .user-dropdown .user-toggle .user-name {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

/* Dropdown Menu - Position directly below toggle */
#ftco-navbar .user-dropdown .dropdown-menu.user-menu {
    min-width: 200px !important;
    padding: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    margin-top: 0 !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

/* Header Compact */
#ftco-navbar .user-menu .user-menu-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px !important;
    background: #f15d30 !important;
    border-radius: 6px !important;
    margin-bottom: 6px !important;
}

#ftco-navbar .user-menu .user-menu-header .user-avatar-lg {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

#ftco-navbar .user-menu .user-menu-header .user-info {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
}

#ftco-navbar .user-menu .user-menu-header .user-info .user-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #fff !important;
}

#ftco-navbar .user-menu .user-menu-header .user-info .user-email {
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Menu Items */
#ftco-navbar .user-menu .user-menu-body {
    padding: 0 !important;
}

#ftco-navbar .user-menu .user-menu-body .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 10px !important;
    color: #333 !important;
    font-size: 13px !important;
    border-radius: 5px !important;
}

#ftco-navbar .user-menu .user-menu-body .dropdown-item i {
    font-size: 16px !important;
    color: #f15d30 !important;
    width: 18px !important;
}

#ftco-navbar .user-menu .user-menu-body .dropdown-item:hover {
    background: rgba(241, 93, 48, 0.1) !important;
}

/* Footer */
#ftco-navbar .user-menu .user-menu-footer {
    padding: 6px 0 0 !important;
    margin-top: 6px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

#ftco-navbar .user-menu .user-menu-footer .dropdown-item.logout {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 10px !important;
    color: #dc3545 !important;
    font-size: 13px !important;
    border-radius: 5px !important;
}

#ftco-navbar .user-menu .user-menu-footer .dropdown-item.logout i {
    font-size: 16px !important;
    width: 18px !important;
}

#ftco-navbar .user-menu .user-menu-footer .dropdown-item.logout:hover {
    background: rgba(220, 53, 69, 0.1) !important;
}

/* Login Button - Match nav-link alignment */
#ftco-navbar .navbar-nav>.nav-item>.nav-link.btn-login {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

#ftco-navbar .navbar-nav>.nav-item>.nav-link.btn-login:hover {
    color: #f15d30 !important;
}

#ftco-navbar.scrolled .navbar-nav>.nav-item>.nav-link.btn-login {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    color: #000 !important;
}

#ftco-navbar.scrolled .navbar-nav>.nav-item>.nav-link.btn-login:hover {
    color: #f15d30 !important;
}

#ftco-navbar .nav-link.btn-login i {
    font-size: 15px;
    color: #f15d30;
}

/* Responsive */
@media (max-width: 991px) {
    #ftco-navbar .user-dropdown .dropdown-menu.user-menu {
        width: 100% !important;
        backdrop-filter: none !important;
        background: #fff !important;
    }

    /* Hide user avatar on mobile to align with other menu items */
    #ftco-navbar .user-dropdown .user-toggle .user-avatar {
        display: none !important;
    }

    /* Make user dropdown toggle look like regular nav-link on mobile */
    #ftco-navbar .user-dropdown .nav-link.user-toggle {
        padding: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* User name styling on mobile - WHITE text for dark background (not scrolled) */
    #ftco-navbar .user-dropdown .user-toggle .user-name {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    /* When scrolled (white background) - DARK text */
    #ftco-navbar.scrolled .user-dropdown .user-toggle .user-name {
        color: rgba(0, 0, 0, 0.5) !important;
    }

    /* Dropdown toggle arrow - match text color */
    #ftco-navbar .user-dropdown .nav-link.dropdown-toggle::after {
        margin-left: 8px;
        border-top-color: rgba(255, 255, 255, 0.9);
    }

    #ftco-navbar.scrolled .user-dropdown .nav-link.dropdown-toggle::after {
        border-top-color: rgba(0, 0, 0, 0.5);
    }
}

/* ============================================
   CTA SECTION MOBILE RESPONSIVE - GLOBAL
   ============================================ */
/* Make button container flex for horizontal layout */
.cta-section .container .ftco-animate,
.cta-section .container div {
    text-align: center;
}

.cta-section .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

@media (max-width: 767px) {
    .cta-section {
        padding: 40px 15px !important;
    }

    .cta-section h3 {
        font-size: 20px !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
    }

    .cta-section p {
        font-size: 14px !important;
        margin-bottom: 18px !important;
    }

    /* Force horizontal button layout on mobile */
    .cta-section .btn-cta {
        padding: 11px 16px !important;
        font-size: 12px !important;
        margin: 0 5px !important;
        display: inline-flex !important;
        white-space: nowrap !important;
        border-radius: 6px !important;
    }

    .cta-section .btn-cta-outline {
        padding: 9px 14px !important;
    }
}

@media (max-width: 400px) {
    .cta-section .btn-cta {
        padding: 10px 12px !important;
        font-size: 11px !important;
        margin: 0 3px !important;
    }

    .cta-section .btn-cta-outline {
        padding: 8px 10px !important;
    }
}