
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #2C2C2C;
            --primary-gold: #E5C07B;
            --pure-white: #FFFFFF;
            --light-bg: #F9F9F9;
            --text-gray: #666666;
            --transition: all 0.4s ease;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--primary-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* ========== NAVBAR STYLES ========== */
        .navbar {
            padding: 20px 0;
            position: relative;
            z-index: 1000;
            transition: var(--transition);
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-dark);
        }

        .logo i {
            font-size: 36px;
            color: var(--primary-gold);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .nav-menu li a {
            text-decoration: none;
            color: var(--primary-dark);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            padding: 5px 0;
            transition: var(--transition);
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-gold);
            transition: var(--transition);
        }

        .nav-menu li a:hover::after {
            width: 100%;
        }

        .nav-menu li a:hover {
            color: var(--primary-gold);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            color: var(--primary-dark) !important;
            padding: 12px 30px !important;
            border-radius: 50px;
            font-weight: 600 !important;
            border: none !important;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(229, 192, 123, 0.4);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(229, 192, 123, 0.6);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-toggle span {
            width: 30px;
            height: 3px;
            background: var(--primary-dark);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* ========== HERO SECTION ========== */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, rgba(44, 44, 44, 0.85), rgba(44, 44, 44, 0.75)),
                        url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23E5C07B" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom/cover no-repeat;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            max-width: 750px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(229, 192, 123, 0.15);
            border: 1px solid var(--primary-gold);
            padding: 10px 25px;
            border-radius: 50px;
            color: var(--primary-gold);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 25px;
            animation: fadeInDown 1s ease;
        }

        .hero-badge i {
            animation: bounce 1s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .hero h1 {
            font-size: 64px;
            line-height: 1.2;
            color: var(--pure-white);
            margin-bottom: 25px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero h1 span {
            color: var(--primary-gold);
            position: relative;
        }

        .hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 40px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            color: var(--primary-dark);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition);
            box-shadow: 0 5px 25px rgba(229, 192, 123, 0.4);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(229, 192, 123, 0.6);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--pure-white);
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: var(--transition);
        }

        .btn-secondary:hover {
            border-color: var(--primary-gold);
            color: var(--primary-gold);
        }

        .hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 60px;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-gold);
            font-family: 'Playfair Display', serif;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--primary-gold);
            top: 10%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: var(--pure-white);
            bottom: 20%;
            right: 25%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            background: var(--primary-gold);
            top: 30%;
            right: 40%;
            animation: float 5s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-40px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ========== SECTION COMMON STYLES ========== */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 70px;
        }

        .section-subtitle {
            display: inline-block;
            color: var(--primary-gold);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            position: relative;
            padding-left: 50px;
        }

        .section-subtitle::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 35px;
            height: 2px;
            background: var(--primary-gold);
        }

        .section-title {
            font-size: 46px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .section-desc {
            font-size: 17px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
        }

        /* ========== ABOUT SECTION ========== */
        .about-section {
            background: var(--pure-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image-main {
            width: 100%;
            height: 550px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .about-experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            color: var(--primary-dark);
            padding: 30px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(229, 192, 123, 0.4);
            animation: float 4s ease-in-out infinite;
        }

        .experience-number {
            font-size: 48px;
            font-weight: 800;
            font-family: 'Playfair Display', serif;
            line-height: 1;
        }

        .experience-text {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .about-content h2 {
            font-size: 42px;
            color: var(--primary-dark);
            margin-bottom: 25px;
            line-height: 1.3;
        }

        .about-content h2 span {
            color: var(--primary-gold);
        }

        .about-content p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 30px 0;
        }

        .about-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .about-feature-item i {
            color: var(--primary-gold);
            font-size: 20px;
        }

        .about-feature-item span {
            font-weight: 500;
            color: var(--primary-dark);
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: transparent;
            color: var(--primary-dark);
            padding: 14px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            border: 2px solid var(--primary-dark);
            transition: var(--transition);
            margin-top: 10px;
        }

        .btn-outline:hover {
            background: var(--primary-dark);
            color: var(--pure-white);
            transform: translateX(5px);
        }

        /* ========== COUNTER SECTION ========== */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-dark), #1a1a1a);
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/1694934/pexels-photo-1694934.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat fixed;
            opacity: 0.08;
        }

        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .counter-card {
            text-align: center;
            padding: 50px 30px;
            border: 1px solid rgba(229, 192, 123, 0.2);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .counter-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            background: rgba(229, 192, 123, 0.05);
        }

        .counter-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--primary-dark);
        }

        .counter-number {
            font-size: 52px;
            font-weight: 800;
            color: var(--primary-gold);
            font-family: 'Playfair Display', serif;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* ========== VISION & MISSION ========== */
        .vision-mission-section {
            background: var(--light-bg);
        }

        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .vm-card {
            background: var(--pure-white);
            padding: 50px 45px;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-gold), #d4a84a);
        }

        .vm-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(229, 192, 123, 0.15), rgba(229, 192, 123, 0.05));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            font-size: 40px;
            color: var(--primary-gold);
        }

        .vm-card h3 {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .vm-card p {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.9;
        }

        /* ========== WHY CHOOSE US ========== */
        .why-us-section {
            background: var(--pure-white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .feature-card {
            background: var(--light-bg);
            padding: 45px 35px;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #d4a84a);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover::after {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 42px;
            color: var(--primary-dark);
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            transform: rotateY(360deg);
        }

        .feature-card h4 {
            font-size: 22px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        /* ========== WORK PROCESS ========== */
        .process-section {
            background: var(--light-bg);
            position: relative;
        }

        .process-timeline {
            position: relative;
            display: flex;
            justify-content: space-between;
            margin-top: 60px;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            top: 60px;
            left: 10%;
            right: 10%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gold), #d4a84a, var(--primary-gold));
            border-radius: 2px;
        }

        .process-step {
            text-align: center;
            position: relative;
            flex: 1;
            max-width: 220px;
        }

        .step-number {
            width: 120px;
            height: 120px;
            background: var(--pure-white);
            border: 4px solid var(--primary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-gold);
            font-family: 'Playfair Display', serif;
            position: relative;
            z-index: 2;
            transition: var(--transition);
            cursor: default;
        }

        .step-number i {
            font-size: 45px;
            color: var(--primary-gold);
        }

        .process-step:hover .step-number {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 40px rgba(229, 192, 123, 0.4);
        }

        .process-step:hover .step-number i {
            color: var(--primary-dark);
        }

        .step-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-family: 'Poppins', sans-serif;
        }

        .step-desc {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Animated connector lines */
        .connector-line {
            position: absolute;
            top: 60px;
            height: 4px;
            background: var(--primary-gold);
            z-index: 1;
            animation: flowLine 2s ease-in-out infinite;
        }

        @keyframes flowLine {
            0% { opacity: 0.3; }
            50% { opacity: 1; }
            100% { opacity: 0.3; }
        }

        /* ========== SERVICES SECTION ========== */
        .services-section {
            background: var(--pure-white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
        }

        .service-card {
            background: var(--light-bg);
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        }

        .service-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: var(--transition);
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
        }

        .service-image-wrapper {
            overflow: hidden;
            position: relative;
        }

        .service-image-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--light-bg), transparent);
        }

        .service-content {
            padding: 35px 30px 30px;
        }

        .service-content h3 {
            font-size: 26px;
            color: var(--primary-dark);
            margin-bottom: 15px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
        }

        .service-content p {
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.85;
            margin-bottom: 25px;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: var(--transition);
        }

        .service-link:hover {
            gap: 15px;
            color: var(--primary-dark);
        }

        .service-link i {
            transition: var(--transition);
        }

        /* ========== REVIEWS SECTION ========== */
        .reviews-section {
            background: linear-gradient(135deg, var(--primary-dark), #1a1a1a);
            position: relative;
            overflow: hidden;
        }

        .reviews-section .section-subtitle {
            color: var(--primary-gold);
        }

        .reviews-section .section-title {
            color: var(--pure-white);
        }

        .reviews-section .section-desc {
            color: rgba(255, 255, 255, 0.7);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(229, 192, 123, 0.15);
            border-radius: 20px;
            padding: 40px 30px;
            transition: var(--transition);
            position: relative;
        }

        .review-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            background: rgba(229, 192, 123, 0.05);
        }

        .review-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .review-stars i {
            color: var(--primary-gold);
            font-size: 18px;
        }

        .review-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.9;
            margin-bottom: 25px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .author-info h4 {
            font-size: 17px;
            color: var(--pure-white);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .author-info span {
            font-size: 13px;
            color: var(--primary-gold);
        }

        .quote-icon {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 60px;
            color: rgba(229, 192, 123, 0.15);
            font-family: 'Playfair Display', serif;
        }

        /* ========== FAQ SECTION ========== */
        .faq-section {
            background: var(--light-bg);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--pure-white);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question h4 {
            font-size: 17px;
            color: var(--primary-dark);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            padding-right: 20px;
        }

        .faq-question i {
            color: var(--primary-gold);
            font-size: 20px;
            transition: var(--transition);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }

        .faq-answer p {
            padding: 0 30px 25px;
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ========== CTA SECTION ========== */
        .cta-section {
            background: linear-gradient(135deg, rgba(229, 192, 123, 0.95), rgba(212, 168, 74, 0.95)),
                        url('https://images.pexels.com/photos/276724/pexels-photo-276724.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .cta-content {
            max-width: 750px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .cta-content h2 {
            font-size: 48px;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .cta-content p {
            font-size: 19px;
            color: rgba(44, 44, 44, 0.8);
            margin-bottom: 40px;
        }

        .btn-dark {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--primary-dark);
            color: var(--pure-white);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .btn-dark:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            background: #1a1a1a;
        }

        /* ========== CONTACT SECTION ========== */
        .contact-section {
            background: var(--pure-white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 36px;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .contact-info > p {
            font-size: 16px;
            color: var(--text-gray);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, rgba(229, 192, 123, 0.15), rgba(229, 192, 123, 0.05));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: var(--primary-gold);
            flex-shrink: 0;
        }

        .contact-item-text h4 {
            font-size: 18px;
            color: var(--primary-dark);
            margin-bottom: 5px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .contact-item-text p,
        .contact-item-text a {
            font-size: 15px;
            color: var(--text-gray);
            text-decoration: none;
            transition: var(--transition);
            line-height: 1.6;
        }

        .contact-item-text a:hover {
            color: var(--primary-gold);
        }

        .contact-form-wrapper {
            background: var(--light-bg);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        }

        .contact-form-wrapper h3 {
            font-size: 28px;
            color: var(--primary-dark);
            margin-bottom: 30px;
            font-family: 'Poppins', sans-serif;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-dark);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
            background: var(--pure-white);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-gold);
            box-shadow: 0 0 0 4px rgba(229, 192, 123, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 130px;
        }

        .form-submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            color: var(--primary-dark);
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(229, 192, 123, 0.4);
        }

        /* ========== FOOTER ========== */
        .footer {
            background: var(--primary-dark);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
            gap: 50px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-col h4 {
            font-size: 20px;
            color: var(--pure-white);
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-gold);
        }

        .footer-about p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            font-size: 18px;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--primary-gold);
            color: var(--primary-dark);
            transform: translateY(-5px);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 12px;
            color: var(--primary-gold);
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .newsletter-form p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
            margin-bottom: 5px;
        }

        .newsletter-form input {
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--pure-white);
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: var(--transition);
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--primary-gold);
        }

        .newsletter-form button {
            padding: 15px 25px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            color: var(--primary-dark);
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: var(--transition);
        }

        .newsletter-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(229, 192, 123, 0.4);
        }

        .footer-bottom {
            padding: 30px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-bottom-links a:hover {
            color: var(--primary-gold);
        }

        /* ========== SCROLL ANIMATIONS ========== */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========== RESPONSIVE DESIGN ========== */
        @media (max-width: 1200px) {
            .hero h1 { font-size: 52px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 350px;
                height: 100vh;
                background: var(--pure-white);
                flex-direction: column;
                padding: 100px 40px;
                gap: 25px;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
            }

            .nav-menu.active {
                right: 0;
            }

            .mobile-toggle {
                display: flex;
            }

            .about-grid { grid-template-columns: 1fr; gap: 50px; }
            
            .about-image-wrapper {
                max-width: 550px;
                margin: 0 auto;
            }

            .counter-grid { grid-template-columns: repeat(2, 1fr); }
            .vm-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-grid { grid-template-columns: 1fr; }
            .hero-stats { gap: 30px; }
            .process-timeline { flex-wrap: wrap; justify-content: center; gap: 40px; }
            .process-timeline::before { display: none; }
        }

        @media (max-width: 768px) {
            .container { padding: 0 25px; }
            .navbar-container { padding: 0 25px; }
            section { padding: 70px 0; }
            .hero h1 { font-size: 38px; }
            .section-title { font-size: 34px; }
            .hero-content { padding: 0 25px; }
            .hero-stats { flex-direction: column; gap: 20px; }
            .counter-grid { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .reviews-grid { grid-template-columns: 1fr; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .cta-content h2 { font-size: 34px; }
            .about-content h2 { font-size: 32px; }
            .process-step { max-width: 100%; }
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, var(--primary-gold), #d4a84a);
            color: var(--primary-dark);
            border: none;
            border-radius: 50%;
            font-size: 22px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 20px rgba(229, 192, 123, 0.4);
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px);
        }
