 
    :root {
        --primary: #1a2a4a;
        --primary-light: #2d4a7c;
        --accent: #c9a962;
        --accent-light: #e4d4a8;
        --white: #ffffff;
        --off-white: #f8f7f4;
        --gray-100: #f5f5f5;
        --gray-200: #e8e8e8;
        --gray-600: #6b7280;
        --gray-800: #374151;
        --text: #1f2937;
        --shadow: 0 4px 30px rgba(26, 42, 74, 0.08);
        --shadow-lg: 0 20px 60px rgba(26, 42, 74, 0.12);
        --radius: 12px;
        --radius-lg: 20px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'DM Sans', sans-serif;
        color: var(--text);
        background: var(--white);
        line-height: 1.6;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        line-height: 1.2;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gray-200);
        transition: var(--transition);
    }

    header.scrolled {
        box-shadow: var(--shadow);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        /* padding: 16px 24px; */
        padding: 16px 24px 6px 24px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo {
        display: flex;
        flex-direction: column;
    }

    .logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 26px;
        font-weight: 700;
        color: var(--primary);
        letter-spacing: -0.5px;
    }

    .logo-tagline {
        font-size: 11px;
        color: var(--accent);
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        list-style: none;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        font-size: 15px;
        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::after {
        width: 100%;
    }

    .nav-cta {
        background: var(--primary);
        color: var(--white) !important;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
    }

    .nav-cta:hover {
        background: var(--primary-light);
    }

    .nav-cta::after {
        display: none !important;
    }

    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
    }

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

    .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='%23ffffff' 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-decoration {
        position: absolute;
        top: 20%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(201, 169, 98, 0.15) 0%, transparent 70%);
        border-radius: 50%;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .hero-text h1 {
        font-size: clamp(40px, 5vw, 60px);
        color: var(--white);
        margin-bottom: 24px;
    }

    .hero-text h1 span {
        color: var(--accent);
    }

    .hero-text p {
        font-size: 18px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 40px;
        max-width: 500px;
    }

    .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: var(--transition);
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background: var(--accent);
        color: var(--primary);
    }

    .btn-primary:hover {
        background: var(--accent-light);
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .hero-form {
        background: var(--white);
        padding: 40px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .hero-form h3 {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .hero-form p {
        color: var(--gray-600);
        margin-bottom: 24px;
        font-size: 15px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 6px;
        font-size: 14px;
        color: var(--gray-800);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid var(--gray-200);
        border-radius: 8px;
        font-size: 15px;
        font-family: inherit;
        transition: var(--transition);
        background: var(--white);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .btn-submit {
        width: 100%;
        background: var(--primary);
        color: var(--white);
        padding: 16px;
        font-size: 16px;
        margin-top: 8px;
    }

    .btn-submit:hover {
        background: var(--primary-light);
    }

    /* Stats Strip */
    .stats-strip {
        background: var(--off-white);
        padding: 40px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        text-align: center;
    }

    .stat-item h4 {
        font-size: 42px;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .stat-item h4 span {
        color: var(--accent);
    }

    .stat-item p {
        color: var(--gray-600);
        font-size: 15px;
        font-weight: 500;
    }

    /* Section Styles */
    section {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 60px;
    }

    .section-label {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
        color: var(--primary);
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: clamp(32px, 4vw, 44px);
        color: var(--primary);
        margin-bottom: 16px;
    }

    .section-header p {
        color: var(--gray-600);
        font-size: 17px;
    }

    /* Locations Section */
    .locations {
        background: var(--white);
    }

    .locations-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .location-card {
        position: relative;
        height: 350px;
        border-radius: var(--radius-lg);
        overflow: hidden;
        cursor: pointer;
        transition: var(--transition);
    }

    .location-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .location-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(26, 42, 74, 0.95) 100%);
        z-index: 1;
    }

    .location-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .location-card:hover img {
        transform: scale(1.05);
    }

    .location-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        z-index: 2;
    }

    .location-content h3 {
        font-size: 28px;
        color: var(--white);
        margin-bottom: 8px;
    }

    .location-content p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
    }

    .location-tag {
        display: inline-block;
        background: var(--accent);
        color: var(--primary);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
    }

    /* Projects Section */
    .projects {
        background: var(--off-white);
    }

    .projects-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .project-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .project-image {
        height: 200px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .project-image-placeholder {
        font-family: 'Playfair Display', serif;
        font-size: 48px;
        color: rgba(255, 255, 255, 0.2);
        font-weight: 700;
    }

    .project-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background: var(--accent);
        color: var(--primary);
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .project-details {
        padding: 28px;
    }

    .project-details h3 {
        font-size: 22px;
        color: var(--primary);
        margin-bottom: 10px;
    }

    .project-location {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--gray-600);
        font-size: 14px;
        margin-bottom: 16px;
    }

    .project-location svg {
        width: 16px;
        height: 16px;
        fill: var(--accent);
    }

    .project-features {
        display: flex;
        gap: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--gray-200);
    }

    .project-feature {
        font-size: 13px;
        color: var(--gray-600);
    }

    .project-feature strong {
        display: block;
        color: var(--primary);
        font-size: 15px;
        font-weight: 600;
    }

    .btn-view-project {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 10px;
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: var(--transition);
    }

    .btn-view-project:hover {
        color: var(--accent);
        gap: 12px;
    }

    .btn-view-project1 {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        transition: var(--transition);
    }

    .btn-view-project1:hover {
        color: var(--accent);
        gap: 12px;
    }

    .project-slider {
    padding-bottom: 50px;
}

.project-btns {
    display: flex;
    justify-content: space-between; /* 🔥 left + right */
    align-items: center;
    margin-top: 20px;
}

.btn-read {
    font-weight: 600;
    color: #c9a96e;
    text-decoration: none;
    font-size: 14px;
}

.btn-read:hover {
    text-decoration: underline;
}

    /* Why Choose Us */
    .why-us {
        background: var(--white);
    }

    .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .why-card {
        text-align: center;
        padding: 40px 24px;
        background: var(--off-white);
        border-radius: var(--radius-lg);
        transition: var(--transition);
        border: 2px solid transparent;
    }

    .why-card:hover {
        border-color: var(--accent);
        transform: translateY(-4px);
    }

    .why-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .why-icon svg {
        width: 32px;
        height: 32px;
        fill: var(--white);
    }

    .why-card h4 {
        font-size: 20px;
        color: var(--primary);
        margin-bottom: 12px;
        font-family: 'DM Sans', sans-serif;
        font-weight: 700;
    }

    .why-card p {
        color: var(--gray-600);
        font-size: 15px;
        line-height: 1.6;
    }

    /* Tech Edge Section */
    .tech-edge {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
        position: relative;
        overflow: hidden;
    }

    .tech-edge::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        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='%23ffffff' fill-opacity='0.05'%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");
    }

    .tech-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .tech-text h2 {
        font-size: clamp(32px, 4vw, 44px);
        color: var(--white);
        margin-bottom: 20px;
    }

    .tech-text h2 span {
        color: var(--accent);
    }

    .tech-text>p {
        color: rgba(255, 255, 255, 0.85);
        font-size: 17px;
        margin-bottom: 32px;
    }

    .tech-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .tech-feature {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .tech-feature svg {
        width: 24px;
        height: 24px;
        fill: var(--accent);
        flex-shrink: 0;
        margin-top: 2px;
    }

    .tech-feature p {
        color: var(--white);
        font-size: 15px;
        font-weight: 500;
    }

    .powered-by {
        background: rgba(255, 255, 255, 0.1);
        padding: 40px;
        border-radius: var(--radius-lg);
        text-align: center;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .powered-by-label {
        color: rgba(255, 255, 255, 0.6);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .powered-by-logo {
        font-family: 'DM Sans', sans-serif;
        font-size: 42px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
    }

    .powered-by-tagline {
        color: var(--accent);
        font-size: 14px;
        font-weight: 500;
    }

    /* About Section */
    .about {
        background: var(--off-white);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 80px;
        align-items: center;
    }

    .about-image {
        position: relative;
    }

    .about-image-main {
        width: 100%;
        height: 500px;
        /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); */
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-image-placeholder {
        color: rgba(255, 255, 255, 0.3);
        font-size: 18px;
        font-weight: 500;
    }

    .about-experience {
        position: absolute;
        bottom: -30px;
        right: -39px;
        background: var(--accent);
        background: var(--accent);
        padding: 30px;
        border-radius: var(--radius);
        text-align: center;
        box-shadow: var(--shadow-lg);
    }

    .about-experience h4 {
        font-size: 48px;
        color: var(--primary);
        line-height: 1;
    }

    .about-experience p {
        color: var(--primary);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-text h2 {
        font-size: clamp(32px, 4vw, 44px);
        color: var(--primary);
        margin-bottom: 24px;
    }

    .about-text>p {
        color: var(--gray-600);
        font-size: 17px;
        margin-bottom: 20px;
        line-height: 1.8;
    }

    .about-highlights {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .about-highlight {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .about-highlight svg {
        width: 24px;
        height: 24px;
        fill: var(--accent);
    }

    .about-highlight span {
        font-weight: 600;
        color: var(--primary);
    }

    /* Contact Section */
    .contact {
        background: var(--white);
    }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .contact-info h2 {
        font-size: clamp(32px, 4vw, 44px);
        color: var(--primary);
        margin-bottom: 20px;
    }

    .contact-info>p {
        color: var(--gray-600);
        font-size: 17px;
        margin-bottom: 40px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .contact-item {
        display: flex;
        gap: 16px;
    }

    .contact-icon {
        width: 56px;
        height: 56px;
        background: var(--off-white);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-icon svg {
        width: 24px;
        height: 24px;
        fill: var(--primary);
    }

    .contact-item-text h4 {
        font-family: 'DM Sans', sans-serif;
        font-size: 14px;
        color: var(--gray-600);
        font-weight: 500;
        margin-bottom: 4px;
    }

    .contact-item-text p,
    .contact-item-text a {
        font-size: 17px;
        color: var(--primary);
        font-weight: 600;
        text-decoration: none;
    }

    .contact-item-text a:hover {
        color: var(--accent);
    }

    .contact-form-wrapper {
        background: var(--off-white);
        padding: 48px;
        border-radius: var(--radius-lg);
    }

    .contact-form-wrapper h3 {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 24px;
    }

    /* Footer */
    footer {
        background: var(--primary);
        padding: 60px 0 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 50px;
    }

    .footer-brand .logo-text {
        color: var(--white);
        margin-bottom: 8px;
    }

    .footer-brand .logo-tagline {
        margin-bottom: 20px;
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 24px;
    }

    .social-links {
        display: flex;
        gap: 12px;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }

    .social-links a:hover {
        background: var(--accent);
    }

    .social-links svg {
        width: 20px;
        height: 20px;
        fill: var(--white);
    }

    .social-links a:hover svg {
        fill: var(--primary);
    }

    .footer-column h4 {
        color: var(--white);
        font-family: 'DM Sans', sans-serif;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 24px;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column li {
        margin-bottom: 12px;
    }

    .footer-column a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 15px;
        transition: var(--transition);
    }

    .footer-column a:hover {
        color: var(--accent);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
    }

    .footer-bottom a {
        color: var(--accent);
        text-decoration: none;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        bottom: 70px;
        right: 30px;
        z-index: 999;
    }

    .whatsapp-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #25d366;
        color: white;
        padding: 14px 24px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
        transition: var(--transition);
    }

    .whatsapp-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
        fill: white;
    }

    /* Mobile Responsiveness */
    @media (max-width: 1024px) {
        .hero-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero-text p {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-form {
            max-width: 500px;
            margin: 0 auto;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .locations-grid,
        .projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .why-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .tech-content,
        .about-content,
        .contact-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: flex;
        }

        .hero {
            padding-top: 100px;
            padding-bottom: 60px;
        }

        .hero-form {
            padding: 28px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .stats-grid,
        .locations-grid,
        .projects-grid,
        .why-grid {
            grid-template-columns: 1fr;
        }

        .location-card {
            height: 280px;
        }

        .tech-features {
            grid-template-columns: 1fr;
        }

        .about-experience {
            position: static;
            margin-top: 20px;
        }

        .about-highlights {
            grid-template-columns: 1fr;
        }

        .contact-form-wrapper {
            padding: 28px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-bottom {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }

        .whatsapp-btn span {
            display: none;
        }

        .whatsapp-btn {
            padding: 16px;
            border-radius: 50%;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-in {
        animation: fadeInUp 0.6s ease forwards;
    }

    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.2s;
    }

    .delay-3 {
        animation-delay: 0.3s;
    }

    .delay-4 {
        animation-delay: 0.4s;
    }
   

    @media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;  /* 🔥 IMPORTANT */
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
}

