

 /* Quick contact floating button */
        .quick-contact {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 998;
        }

        .quick-contact-btn {
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .quick-contact-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
            color: white;
        }

        .quick-contact-btn::before {
            content: 'Chat with us';
            position: absolute;
            right: 70px;
            background: var(--navy);
            color: white;
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .quick-contact-btn:hover::before {
            opacity: 1;
            visibility: visible;
        }


       @media (max-width: 575px) {
            .sm-pt-20 {
                padding-top: 20vh !important;
            }
            .sm-pt-4 {
                padding-top: 4vh !important;
            }
        }


/* Home Page */

        :root {
            --gold: #C9A962;
            --gold-light: #E8D5A3;
            --gold-dark: #A68A3E;
            --navy: #1A2332;
            --navy-light: #243044;
            --navy-dark: #0F1620;
            --cream: #FBF9F4;
            --white: #FFFFFF;
            --text-dark: #1A2332;
            --text-light: #6B7280;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            background-color: var(--cream);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--navy);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-logo {
            width: 20vw;
            animation: pulse 1.5s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.8;
            }
        }

        /* Navigation */
        .navbar {
            padding: 1rem 0;
            transition: all 0.4s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(26, 35, 50, 0.98);
            backdrop-filter: blur(10px);
            padding: 0.5rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .navbar-brand img {
            height: 80px;
            transition: height 0.3s ease;
        }

        .navbar.scrolled .navbar-brand img {
            height: 60px;
        }

        .navbar-nav .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            padding: 0.5rem 1.2rem !important;
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 60%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--navy) !important;
            border: none;
            padding: 0.8rem 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-radius: 0;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-gold:hover::before {
            left: 0;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 169, 98, 0.4);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--gold) !important;
            border: 2px solid var(--gold);
            padding: 0.75rem 2rem;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            border-radius: 0;
            transition: all 0.4s ease;
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: var(--navy) !important;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A962' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero h1 span {
            color: var(--gold);
            display: block;
        }

        .hero-subtitle {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            max-width: 600px;
            margin-bottom: 2rem;
        }

        .hero-price {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid rgba(201, 169, 98, 0.3);
            padding: 1rem 1.5rem;
            margin-bottom: 2rem;
        }

        .hero-price .price {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .hero-price .price-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            border-radius: 0;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            z-index: -1;
        }

        .floating-badge {
            position: absolute;
            background: var(--gold);
            color: var(--navy);
            padding: 1rem 1.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            animation: float 3s ease-in-out infinite;
        }

        .floating-badge.top-right {
            top: -10px;
            right: -30px;
        }

        .floating-badge.bottom-left {
            bottom: 30px;
            left: -30px;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            40% {
                transform: translateX(-50%) translateY(-10px);
            }

            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* Stats Section */
        .stats-section {
            background: var(--gold);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        .stat-item {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--navy);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--navy);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-top: 0.5rem;
        }

        /* Section Styling */
        .section {
            padding: 6rem 0;
        }

        .section-dark {
            background: var(--navy);
            color: var(--white);
        }

        .section-cream {
            background: var(--cream);
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin-top: 1rem;
        }

        .section-title.text-center::after {
            margin: 1rem auto 0;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Pain Points Section */
        .pain-points {
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
        }

        .pain-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(201, 169, 98, 0.2);
            padding: 2rem;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: #e74c3c;
            transition: height 0.4s ease;
        }

        .pain-card:hover::before {
            height: 100%;
        }

        .pain-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .pain-icon {
            width: 50px;
            height: 50px;
            background: rgba(231, 76, 60, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .pain-icon i {
            color: #e74c3c;
            font-size: 1.3rem;
        }

        .pain-card h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .pain-card p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Solution Section */
        .solution-card {
            background: var(--white);
            padding: 2.5rem;
            height: 100%;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .solution-icon i {
            color: var(--navy);
            font-size: 1.5rem;
        }

        .solution-card h4 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
            color: var(--navy);
        }

        .solution-card p {
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Why Choose Us */
        .why-choose-card {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(201, 169, 98, 0.15);
            height: 100%;
            transition: all 0.4s ease;
        }

        .why-choose-card:hover {
            background: rgba(201, 169, 98, 0.08);
            border-color: rgba(201, 169, 98, 0.4);
            transform: translateY(-10px);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.4s ease;
        }

        .why-choose-card:hover .why-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .why-icon i {
            color: var(--navy);
            font-size: 2rem;
        }

        .why-choose-card h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .why-choose-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Event Types Section */
        .events-section {
            background: var(--cream);
            position: relative;
        }

        .events-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 200px;
            /* background: linear-gradient(180deg, var(--navy) 0%, transparent 100%); */
        }

        .event-card {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            cursor: pointer;
            aspect-ratio: 4/3;
        }

        .event-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .event-card:hover img {
            transform: scale(1.1);
        }

        .event-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(0deg, rgba(26, 35, 50, 0.95) 70%, transparent 100%);
            transform: translateY(20px);
            opacity: 0.8;
            transition: all 0.4s ease;
        }

        .event-card:hover .event-overlay {
            transform: translateY(0);
            opacity: 1;
        }

        .event-overlay h4 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .event-overlay p {
            color: var(--gold);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
        }

        @media (max-width: 991px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-item {
            padding: 2.5rem;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: var(--navy);
        }

        .service-item:hover h4,
        .service-item:hover p {
            color: var(--white);
        }

        .service-item:hover .service-check {
            background: var(--gold);
            color: var(--navy);
        }

        .service-check {
            width: 32px;
            height: 32px;
            min-width: 32px;
            background: var(--navy);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .service-item h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            transition: color 0.3s ease;
        }

        .service-item p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
            transition: color 0.3s ease;
        }

        /* Pricing Section */
        .pricing-section {
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
            position: relative;
        }

        .pricing-card {
            background: rgba(255, 255, 255, 0.03);
            border: 2px solid var(--gold);
            padding: 3rem;
            text-align: center;
            position: relative;
        }

        .pricing-badge {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--navy);
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1px;
        }

        .pricing-amount {
            font-family: 'Cormorant Garamond', serif;
            font-size: 4rem;
            font-weight: 700;
            color: var(--gold);
            line-height: 1;
            margin: 1.5rem 0;
        }

        .pricing-amount span {
            font-size: 1.5rem;
        }

        .pricing-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .pricing-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            text-align: left;
        }

        .pricing-list li {
            color: rgba(255, 255, 255, 0.8);
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .pricing-list li i {
            color: var(--gold);
            font-size: 0.8rem;
            margin-top: 0.3rem;
        }

        /* Testimonials */
        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            position: relative;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .testimonial-card::before {
            content: '"';
            font-family: 'Cormorant Garamond', serif;
            font-size: 8rem;
            color: var(--gold);
            opacity: 0.15;
            position: absolute;
            top: -20px;
            left: 20px;
            line-height: 1;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-stars {
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1.05rem;
            color: var(--text-dark);
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h5 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gold);
            padding: 5rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: var(--navy);
            opacity: 0.8;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-navy {
            background: var(--navy);
            color: var(--gold) !important;
            border: none;
            padding: 1rem 3rem;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            border-radius: 0;
            transition: all 0.4s ease;
        }

        .btn-navy:hover {
            background: var(--navy-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(26, 35, 50, 0.3);
        }

        /* FAQ Section */
        .faq-section {
            background: var(--cream);
        }

        .accordion-item {
            border: none;
            background: transparent;
            margin-bottom: 1rem;
        }

        .accordion-button {
            background: var(--white);
            border: none;
            padding: 1.5rem 2rem;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--navy);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }

        .accordion-button:not(.collapsed) {
            background: var(--navy);
            color: var(--white);
            box-shadow: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A962'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }

        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A962'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--gold);
        }

        .accordion-body {
            background: var(--white);
            padding: 1.5rem 2rem;
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.8;
        }

        /* Footer */
        .footer {
            background: var(--navy-dark);
            padding: 5rem 0 2rem;
        }

        .footer-logo {
            height: 180px;
            margin-bottom: 1.5rem;
        }

        .footer-about {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-title {
            color: var(--gold);
            font-size: 1.2rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--gold);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-contact i {
            color: var(--gold);
            font-size: 1.1rem;
            margin-top: 0.2rem;
        }

        .footer-contact span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid rgba(201, 169, 98, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--navy);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.9rem;
            margin: 0;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gold);
            color: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--gold-dark);
            transform: translateY(-5px);
        }

        /* Mobile Menu */
        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23C9A962' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--navy);
                padding: 1.5rem;
                margin-top: 1rem;
            }

            .hero-image {
                margin-top: 3rem;
            }

            .hero-image::before {
                display: none;
            }

            .floating-badge {
                display: none;
            }

            .section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 767px) {
            .stat-item {
                margin-bottom: 2rem;
            }

            .pricing-card {
                padding: 2rem;
            }

            .pricing-amount {
                font-size: 3rem;
            }
        }

        /* Add-ons Section */
        .addons-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .addon-tag {
            background: rgba(201, 169, 98, 0.1);
            border: 1px solid var(--gold);
            padding: 0.75rem 1.5rem;
            color: var(--navy);
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .addon-tag:hover {
            background: var(--gold);
            transform: translateY(-3px);
        }

        .addon-tag i {
            margin-right: 0.5rem;
            color: var(--gold);
        }

        .addon-tag:hover i {
            color: var(--navy);
        }

        /* Divider */
        .section-divider {
            width: 100px;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
            margin: 0 auto;
        }

        /* Custom container max width */
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        /* Section */
        .avoid-section {
            padding: 60px 20px;
            background: var(--navy);
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Header - Compact */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: var(--white);
            font-weight: 500;
            margin-bottom: 12px;
        }

        .section-header p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            max-width: 600px;
            margin: 0 auto 20px;
            line-height: 1.7;
        }

        .section-label {
            color: var(--coral);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Pain Points - Inline Compact */
        .pain-points {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 20px;
            margin-bottom: 35px;
        }

        .pain-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 0;
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            position: relative;
            cursor: default;
            transition: color 0.3s ease;
        }

        .pain-item:hover {
            color: var(--gold);
        }

        .pain-item i {
            font-size: 1rem;
            color: var(--coral);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .pain-item:hover i {
            opacity: 1;
            transform: scale(1.1);
        }

        /* Separator dot between items */
        .pain-item:not(:last-child)::after {
            content: '·';
            position: absolute;
            right: -14px;
            color: rgba(255, 255, 255, 0.2);
            font-size: 1.2rem;
        }

        /* Bottom Quote */
        .bottom-quote {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .bottom-quote p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight:bold;
            color: var(--gold);
            opacity:1;
        }

        /* Mobile */
        @media (max-width: 768px) {
            .avoid-section {
                padding: 50px 20px;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .pain-points {
                gap: 5px 15px;
            }

            .pain-item {
                font-size: 0.8rem;
            }

            .pain-item::after {
                display: none;
            }
        }

        /*  Contact  */

