        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f3eee8;
            color: #2c241e;
            line-height: 1.7;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ===== VARIABLES ===== 
        :root {
            --primary: #2c241e;
            --primary-light: #4d3d30;
            --accent: #a67c52;
            --accent-light: #c9a078;
            --accent-dark: #8c6a47;
            --warm-bg: #f3eee8;
            --cream: #fcf8f3;
            --cream-dark: #efe6db;
            --border-light: #e5dbd0;
            --text-dark: #2c241e;
            --text-muted: #5f4d3e;
            --white: #ffffff;
            --shadow: 0 15px 40px rgba(44, 36, 30, 0.08);
            --shadow-hover: 0 25px 50px rgba(166, 124, 82, 0.15);
            --radius: 60px;
            --radius-sm: 30px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }
*/
        :root {
            --primary: #0b1f3a;
            --primary-light: #16345c;
            --accent: #c8a35a;
            --accent-light: #d7b46a;
            --accent-dark: #a98337;
            --warm-bg: #f4f6f9;
            --cream: #fcfcfb;
            --cream-dark: #eef2f6;
            --border-light: #dbe3ec;
            --text-dark: #18212f;
            --text-muted: #5e6470;
            --white: #ffffff;
            --shadow: 0 15px 40px rgba(11, 31, 58, 0.08);
            --shadow-hover: 0 25px 50px rgba(200, 163, 90, 0.15);
            --radius: 60px;
            --radius-sm: 30px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            padding: 16px 40px;
            border: none;
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: var(--transition);
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(166, 124, 82, 0.25);
            text-align: center;
        }

        .btn:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 18px 35px rgba(166, 124, 82, 0.3);
        }

        .btn-outline {
            display: inline-block;
            background: transparent;
            color: var(--white);
            padding: 14px 36px;
            border: 2px solid var(--accent);
            border-radius: 60px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
        }

        .btn-outline:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-3px);
        }

        .btn-secondary {
            display: inline-block;
            background: var(--cream-dark);
            color: var(--primary);
            padding: 14px 36px;
            border: 2px solid var(--border-light);
            border-radius: 60px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            text-align: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .logo img {
            width: 85px;
            height: 85px;
            object-fit: contain;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-light);
            letter-spacing: 2px;
        }

        .logo-subtitle {
            margin-top: 6px;
            font-size: .72rem !important;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--white) !important;
            font-weight: 500;
        }

        .btn-secondary:hover {
            background: var(--accent);
            color: var(--white);
            border-color: var(--accent);
            transform: translateY(-3px);
        }

        /* ===== SECTION TITLES ===== */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title .tag {
            display: inline-block;
            background: var(--cream-dark);
            color: var(--accent);
            padding: 6px 24px;
            border-radius: 60px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
            border: 1px solid var(--border-light);
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .section-title p {
            color: var(--text-muted);
            max-width: 560px;
            margin: 12px auto 0;
            font-size: 1.05rem;
        }

        /* ===== LOADER ===== */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loader::after {
            content: '';
            width: 50px;
            height: 50px;
            border: 4px solid var(--border-light);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== BACK TO TOP ===== */
        #backTop {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(166, 124, 82, 0.3);
            transition: var(--transition);
            z-index: 999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        #backTop:hover {
            transform: translateY(-5px);
            background: var(--accent-dark);
        }

        /* ===== HEADER ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #08182e;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 85px;
            padding: 0 20px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--white);
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-phone {
            color: var(--white) !important;
            font-weight: 600;
        }

        .nav-phone i {
            color: var(--accent);
            margin-right: 8px;
        }

        .nav-phone::after {
            display: none !important;
        }

        .nav-btn {
            background: var(--accent);
            color: var(--white);
            padding: 10px 28px;
            border-radius: 60px;
            font-weight: 600;
            transition: var(--transition);
        }

        .nav-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--white);
            cursor: pointer;
            background: none;
            border: none;
        }

        /* ===== HERO ===== */
        .hero {
            background: var(--primary);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            right: -100px;
            top: -80px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            border: 20px solid var(--accent);
            opacity: 0.15;
        }

        .hero::after {
            content: '';
            position: absolute;
            left: -150px;
            bottom: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--accent);
            opacity: 0.05;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content .badge {
            display: inline-block;
            background: rgba(166, 124, 82, 0.2);
            color: var(--accent-light);
            padding: 8px 24px;
            border-radius: 60px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 24px;
            border: 1px solid rgba(166, 124, 82, 0.2);
        }

        .hero-content .badge i {
            margin-right: 8px;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.2rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }

        .hero-content h1 em {
            font-style: normal;
            color: var(--accent-light);
            background: rgba(166, 124, 82, 0.15);
            padding: 0 12px;
            border-radius: 30px;
            display: inline-block;
            padding-bottom: 15px;
            margin-top: 8px;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.75);
            max-width: 480px;
            margin-bottom: 35px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 45px;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px 30px;
        }

        .hero-features div {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hero-features i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        .hero-image {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--cream-dark);
            min-height: 340px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .hero-image svg {
            width: 80px;
            height: 80px;
            fill: var(--accent);
            opacity: 0.4;
        }

        .hero-image .placeholder-text {
            position: absolute;
            bottom: 30px;
            right: 30px;
            background: rgba(44, 36, 30, 0.8);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.8rem;
            backdrop-filter: blur(10px);
        }

        /* ===== SERVICES ===== */
        .services {
            padding: 100px 0;
            background: var(--warm-bg);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--cream);
            padding: 40px 30px 35px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .service-card .icon {
            width: 70px;
            height: 70px;
            background: var(--cream-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: var(--accent);
            transition: var(--transition);
        }

        .service-card:hover .icon {
            background: var(--accent);
            color: var(--white);
        }

        .service-card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .service-card .schedule {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ===== TRUST BADGES ===== */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 40px;
            margin-top: 50px;
            padding: 20px 30px;
            background: var(--cream);
            border-radius: 80px;
            border: 1px solid var(--border-light);
        }

        .trust-badges span {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .trust-badges i {
            color: var(--accent);
            font-size: 1.1rem;
        }

        /* ===== ABOUT ===== */
        .about {
            padding: 100px 0;
            background: var(--cream);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image {
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--cream-dark);
            min-height: 390px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-light);
        }

        .about-image svg {
            width: 100px;
            height: 100px;
            fill: var(--accent);
            opacity: 0.3;
        }

        .about-content .tag {
            display: inline-block;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .about-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-muted);
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .about-content ul {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 20px;
            margin-bottom: 30px;
        }

        .about-content ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: var(--primary);
        }

        .about-content ul li i {
            color: var(--accent);
            font-size: 1rem;
        }

        /* ===== PROCESS ===== */
        .process {
            padding: 100px 0;
            background: var(--primary);
        }

        .process .section-title h2 {
            color: var(--white);
        }

        .process .section-title .tag {
            background: rgba(166, 124, 82, 0.2);
            color: var(--accent-light);
            border-color: rgba(166, 124, 82, 0.2);
        }

        .process .section-title p {
            color: rgba(255, 255, 255, 0.6);
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .steps::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: rgba(166, 124, 82, 0.2);
            z-index: 0;
        }

        .step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step .icon {
            width: 90px;
            height: 90px;
            background: var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(166, 124, 82, 0.3);
            transition: var(--transition);
        }

        .step:hover .icon {
            transform: scale(1.05) rotate(-5deg);
        }

        .step h3 {
            color: var(--white);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .step p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-top: 4px;
        }

        /* ===== WHY CHOOSE ===== */
        .why {
            padding: 100px 0;
            background: var(--warm-bg);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .why-item {
            background: var(--cream);
            padding: 40px 25px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            text-align: center;
            transition: var(--transition);
        }

        .why-item:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
            background: var(--primary);
        }

        .why-item:hover h3,
        .why-item:hover p {
            color: var(--white);
        }

        .why-item:hover .icon {
            background: var(--accent);
            color: var(--white);
        }

        .why-item .icon {
            width: 65px;
            height: 65px;
            background: var(--cream-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            font-size: 1.8rem;
            color: var(--accent);
            transition: var(--transition);
        }

        .why-item h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary);
            transition: var(--transition);
        }

        .why-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-top: 4px;
            transition: var(--transition);
        }

        /* ===== TESTIMONIALS ===== */
        .testimonials {
            padding: 100px 0;
            background: var(--cream);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px 30px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .testimonial-card .stars {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

        .testimonial-card blockquote {
            font-style: italic;
            color: var(--primary);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .testimonial-card .client {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .testimonial-card .client .avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--cream-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: var(--accent);
        }

        .testimonial-card .client .name {
            font-weight: 600;
            color: var(--primary);
        }

        .testimonial-card .client .location {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* ===== FAQ ===== */
        .faq {
            padding: 100px 0;
            background: var(--warm-bg);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--cream);
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-item.active {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }

        .faq-question {
            width: 100%;
            padding: 20px 28px;
            background: none;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            text-align: left;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--accent);
        }

        .faq-question .icon {
            font-size: 1.2rem;
            color: var(--accent);
            transition: var(--transition);
            flex-shrink: 0;
            margin-left: 16px;
        }

        .faq-item.active .faq-question .icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 28px 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* ===== CONTACT ===== */
        .contact {
            padding: 100px 0;
            background: var(--cream);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .contact-info p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 3px;
        }

        .contact-info .details {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .contact-info .details li {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 500;
            color: var(--primary);
        }

        .contact-info .details i {
            width: 40px;
            height: 40px;
            background: var(--cream-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-info .areas {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .contact-info .areas span {
            background: var(--cream-dark);
            padding: 6px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--primary);
            border: 1px solid var(--border-light);
        }

        .contact-form {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }

        .contact-form h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .contact-form .form-group {
            margin-bottom: 18px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-light);
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: var(--transition);
            background: var(--warm-bg);
            color: var(--primary);
            outline: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--accent);
            background: var(--white);
        }

        .contact-form textarea {
            height: 120px;
            resize: vertical;
        }

        .contact-form .btn {
            width: 100%;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--primary);
            padding: 70px 0 30px;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-brand .logo {
            font-size: 1.6rem;
            margin-bottom: 0px;
            display: flex;
            transform: scale(0.8);
            transform-origin: left center;
        }

        .footer-brand p {
            font-size: 0.95rem;
            line-height: 1.8;
            max-width: 320px;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-brand .social {
            display: flex;
            gap: 14px;
            margin-top: 20px;
        }

        .footer-brand .social a {
            width: 42px;
            height: 42px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-brand .social a:hover {
            background: var(--accent);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-col h4 {
            color: var(--white);
            font-weight: 600;
            margin-bottom: 18px;
            font-size: 1.05rem;
        }

        .footer-col ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul a {
            color: rgba(255, 255, 255, 0.6);
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .footer-col ul a:hover {
            color: var(--accent-light);
        }

        .footer-col .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col .contact-info p,
        .footer-col .contact-info p a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }



        .footer-col .contact-info i {
            color: var(--accent);
            width: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .footer-bottom .badges {
            display: flex;
            gap: 16px;
        }

        .footer-bottom .badges span {
            padding: 4px 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3.2rem;
            }

            .section-title h2 {
                font-size: 2.4rem;
            }

            .about-content h2 {
                font-size: 2.2rem;
            }

            .steps::before {
                display: none;
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 85px;
                left: -100%;
                width: 280px;
                height: calc(100vh - 85px);
                background: var(--primary);
                flex-direction: column;
                padding: 40px 30px;
                gap: 20px;
                align-items: flex-start;
                transition: var(--transition);
                box-shadow: 10px 0 40px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links a {
                font-size: 1rem;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content {
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-features {
                grid-template-columns: 1fr 1fr;
                text-align: left;
            }

            .hero-content h1 {
                font-size: 2.6rem;
            }

            .hero {
                padding: 60px 0 70px;
            }

            .about-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .about-content ul {
                grid-template-columns: 1fr;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
                border-radius: 30px;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-features {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn,
            .hero-buttons .btn-outline {
                width: 100%;
                text-align: center;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-brand .social {
                justify-content: center;
            }

            .footer-brand p {
                margin-left: auto;
                margin-right: auto;
            }

            .contact-form {
                padding: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .section-title h2 {
                font-size: 1.7rem;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .contact-info h2 {
                font-size: 2rem;
            }
        }