﻿:root {
    --primary: #ff6a00;
    --secondary: #2b2b2b;
    --accent: #0db14b;
    --bg-light: #ffffff;
    --bg-dark: #121212;
    --text-light: #f5f5f5;
    --text-dark: #222;
    --card-bg: #ffffff;
}

[data-theme="dark"] {
    --bg-light: #121212;
    --text-dark: #f5f5f5;
    --card-bg: #1e1e1e;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 16px;
}

/* TOP BAR */
.top-bar {
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
}

    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }

#themeToggle {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white;
}

/* HEADER */
.main-header {
    background: var(--bg-light);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

    .nav-menu a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
    }

.btn-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
}

/* FOOTER */
.footer {
    background: var(--secondary);
    color: #fff;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 40px 0;
}

.footer a {
    display: block;
    color: #ccc;
    margin-top: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 12px;
    background: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        right: -100%;
        flex-direction: column;
        background: var(--bg-light);
        width: 260px;
        height: 100vh;
        padding: 24px;
        transition: 0.3s;
    }

        .nav-menu.active {
            right: 0;
        }

    .menu-toggle {
        display: block;
    }
}
/* HERO */
.hero {
    background: linear-gradient(120deg, var(--primary), #ff944d);
    color: #fff;
    padding: 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 40px;
}

.hero-content h1 {
    font-size: 42px;
    margin: 16px 0;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #fff;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
}

/* STATS */
.stats {
    background: var(--light-bg);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.stat-card {
    background: var(--card-bg);
    padding: 24px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* BENEFITS */
.benefits {
    padding: 80px 0;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s;
}

    .benefit-card:hover {
        transform: translateY(-8px);
    }

/* PROCESS */
.process {
    background: var(--light-bg);
    padding: 80px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.process-step span {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary);
}

/* CTA */
.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(120deg, var(--accent), #4cd964);
    color: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

/* ANIMATIONS */
.fade-up {
    animation: fadeUp 0.8s ease both;
}

.slide-up {
    animation: slideUp 0.8s ease both;
}

.zoom-in {
    animation: zoomIn 0.8s ease both;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

.delay-3 {
    animation-delay: .6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* TOP STRIP */
.top-strip {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding: 5px
}

.strip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.social i {
    margin-left: 12px;
    cursor: pointer;
}
.social a{
    color:white;
    text-decoration:none;
}
/* INFO BAR */
.info-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.info-grid {
    display: grid;
    grid-template-columns: auto repeat(3, 1fr);
    align-items: center;
    gap: 24px;
    padding: 16px 0;
}

.logo-box img {
    height: 64px;
}

.info-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .info-item i {
        font-size: 32px;
        color: var(--primary);
    }

    .info-item small {
        color: #777;
    }

/* NAV BAR */
.nav-wrapper {
    background: #2b2b2b;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

/* CONTACT CTA ANGLED */
.contact-cta {
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    color: #fff;
    padding: 18px 36px;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    font-weight: 700;
    text-decoration: none;
}

/* MOBILE */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: #222;
        flex-direction: column;
        padding: 24px;
        transition: 0.3s;
    }

        .nav-links.active {
            left: 0;
        }

    .menu-toggle {
        display: block;
    }

    
}
/* 1️⃣ HERO SLIDER */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 70vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    max-width: 500px;
}

/* 2️⃣ IMPACT */
.impact {
    padding: 80px 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.impact-box {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .impact-box.highlight {
        background: linear-gradient(120deg, var(--primary), #ff9a4d);
        color: #fff;
    }

/* 3️⃣ GALLERY */
.gallery {
    background: var(--light-bg);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

/* 4️⃣ JOIN US */
.join-us {
    padding: 80px 0;
    background: linear-gradient(120deg, var(--accent), #4cd964);
    color: #fff;
}

.join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.join-form {
    display: grid;
    gap: 16px;
}

    .join-form input,
    .join-form select {
        padding: 14px;
        border-radius: 8px;
        border: none;
    }

    .join-form button {
        padding: 14px;
        background: #fff;
        color: var(--accent);
        font-weight: 700;
        border-radius: 8px;
    }
/* MOBILE VIEW: Only Logo visible */
@media (max-width: 768px) {

    /* Hide all info items */
    .info-bar .info-item {
        display: none !important;
    }

    /* Center logo */
    .info-bar .info-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .logo-box img {
        height: 56px;
    }
}
/* OUR IMPACT */
.our-impact {
    padding: 90px 0;
    background: #fff;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

    .impact-card ul {
        margin-top: 20px;
    }

    .impact-card li {
        list-style: none;
        margin-bottom: 12px;
        font-size: 16px;
    }

        .impact-card li span {
            color: var(--accent);
            font-weight: bold;
            margin-right: 8px;
        }

/* STATS */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    gap: 16px;
    text-align: center;
}

    .stat-grid strong {
        font-size: 32px;
        color: var(--primary);
    }

/* KEY BENEFITS */
.key-benefits {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary), #ff944d);
}

.section-title.light {
    color: #fff;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.benefit-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 28px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    transition: transform .3s ease;
}

    .benefit-item:hover {
        transform: translateY(-8px);
    }

    .benefit-item h4 {
        margin: 12px 0 8px;
    }

/* MOBILE */
@media(max-width:768px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
}
/* WOMEN EMPOWERMENT SECTION */
.women-empowerment {
    padding: 100px 0;
    background: linear-gradient( 180deg, #ffffff 0%, #ffffff 45%, #2b1d12 45%, #2b1d12 100% );
}

.empowerment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.empowerment-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.empowerment-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    max-width: 520px;
}

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 16px 0 24px;
}

/* RIGHT CARD */
.empowerment-card {
    background: linear-gradient(135deg, #3a2616, #1f140c);
    color: #fff;
    padding: 50px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    text-align: center;
}

    .empowerment-card h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }

        .empowerment-card h3 span {
            color: var(--primary);
        }

/* LIST */
.benefit-list {
    list-style: none;
    padding: 0;
}

    .benefit-list li {
        font-size: 18px;
        margin-bottom: 16px;
        position: relative;
        padding-left: 28px;
    }

        .benefit-list li::before {
            content: "➤";
            position: absolute;
            left: 0;
            color: var(--primary);
        }

    .benefit-list small {
        display: block;
        font-size: 14px;
        color: #d6cfc8;
    }

/* TERMS */
.tnc {
    margin-top: 24px;
    font-size: 13px;
    opacity: 0.8;
}

/* MOBILE */
@media (max-width: 768px) {
    .empowerment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .women-empowerment {
        background: #2b1d12;
    }

    .empowerment-text h2,
    .empowerment-text p {
        color: #fff;
        text-align: center;
    }

    .divider {
        margin: 16px auto 24px;
    }
}
/* MAJOR BENEFITS */
.major-benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), #ff8c1a);
    color: #fff;
}

.benefit-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

    .benefit-header h2 {
        font-size: 42px;
        font-weight: 700;
    }

        .benefit-header h2 span {
            color: #ffe2c2;
        }

    .benefit-header p {
        font-size: 18px;
        opacity: 0.95;
        margin-top: 12px;
    }

/* GRID */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
/* CARD */
.benefit-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 22px;
    padding: 36px 28px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    }

/* ICON */
.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 32px;
}

/* TEXT */
.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.5;
}

/* HIGHLIGHT CARD */
.benefit-card.highlight {
    background: #fff;
    color: var(--primary);
}

    .benefit-card.highlight .icon-circle {
        background: var(--primary);
        color: #fff;
    }

/* TERMS */
.tnc-note {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    opacity: 0.85;
}

/* MOBILE */
@media (max-width: 768px) {
    .benefit-header h2 {
        font-size: 32px;
    }
}
/* JOIN PREMIUM */
.join-premium {
    padding: 100px 0;
    background: linear-gradient(135deg, #0db14b, #2ecc71);
}

.join-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.join-text h2 {
    font-size: 44px;
    color: #fff;
    margin-bottom: 12px;
}

.join-text p {
    font-size: 18px;
    color: #eafff1;
}

.join-points {
    margin-top: 24px;
}

    .join-points li {
        list-style: none;
        margin-bottom: 10px;
        color: #fff;
        font-size: 16px;
    }

/* CARD */
.join-card {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* INPUT GROUP */
.input-group {
    position: relative;
    margin-bottom: 18px;
}

    .input-group i {
        position: absolute;
        top: 50%;
        left: 14px;
        transform: translateY(-50%);
        color: var(--accent);
        font-size: 18px;
    }

    .input-group input,
    .input-group select {
        width: 100%;
        padding: 14px 14px 14px 44px;
        border-radius: 10px;
        border: none;
        font-size: 15px;
    }

/* BUTTON */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background .3s ease;
}

    .btn-submit:hover {
        background: #ff7a1a;
    }

/* MOBILE */
@media(max-width:768px) {
    .join-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .join-text {
        text-align: center;
    }
}
.benefit-card.loan {
    border: 2px solid #fff;
    background: rgba(255,255,255,0.25);
}

/* NAV ITEM */
.nav-item {
    position: relative;
}

.nav-link {
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
}

/* SUBMENU */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    z-index: 999;
    overflow: hidden;
}

    .submenu a {
        display: block;
        padding: 12px 16px;
        color: #333;
        font-size: 14px;
        text-decoration: none;
    }

        .submenu a:hover {
            background: #f5f5f5;
            color: var(--primary);
        }

/* DESKTOP HOVER */
@media (min-width: 769px) {
    .nav-item:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        width: 100%;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        border-radius: 0;
    }

    .nav-item.active .submenu {
        max-height: 500px;
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 14px 0;
    }
}
.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* RIGHT SIDE GROUP */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* CONTACT CTA DEFAULT */
.contact-cta {
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .contact-cta.mobile-cta {
        display: inline-flex; /* 👈 THIS IS THE FIX */
        font-size: 14px;
        padding: 8px 14px;
    }

    .menu-toggle {
        display: block;
        font-size: 26px;
    }
}
/* ===== HEADER LAYOUT FIX ===== */

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT MENU (nav-links) */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}



/* CONTACT CTA */
.contact-cta {
    background: linear-gradient(135deg, #ff6a00, #ff8c1a);
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* HAMBURGER */
.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

    /* hide desktop menu */
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 260px;
        height: 100vh;
        background: #222;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transition: left .3s ease;
        z-index: 999;
    }

        .nav-links.active {
            left: 0;
        }

    /* RIGHT SIDE ALWAYS VISIBLE */
    .nav-right {
        margin-left: auto; /* 👈 IMPORTANT */
    }

    .mobile-cta {
        display: inline-flex; /* 👈 CONTACT US SHOW */
        font-size: 14px;
        padding: 6px 12px;
    }
}
/* CONTACT HERO */
.contact-hero {
    background: linear-gradient(135deg, var(--primary), #ff944d);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

    .contact-hero h1 {
        font-size: 42px;
        margin-bottom: 10px;
    }

/* CONTACT MAIN */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card,
.contact-form-card {
    background: var(--card-bg);
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-list {
    list-style: none;
    margin-top: 20px;
}

    .contact-list li {
        margin-bottom: 12px;
        font-size: 16px;
    }

/* FORM */
.contact-form-card form {
    display: grid;
    gap: 14px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.contact-form-card button {
    background: var(--primary);
    color: #fff;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

/* DISCLAIMER */
.contact-disclaimer {
    background: #fff3e8;
    padding: 50px 0;
    text-align: center;
}

    .contact-disclaimer p {
        font-size: 18px;
        color: #b14a00;
    }

/* DEPARTMENTS */
.department-contacts {
    padding: 80px 0;
    background: #fafafa;
}

.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.dept-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

/* TOLL FREE */
.tollfree-section {
    background: linear-gradient(135deg, var(--primary), #ff944d);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.tollfree-number {
    display: inline-block;
    margin-top: 20px;
    font-size: 28px;
    font-weight: 700;
    background: #fff;
    color: var(--accent);
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 32px;
    }
}
.form-alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn .4s ease;
}

.form-alert.success {
    background: #e8fff1;
    color: #0b7a39;
    border: 1px solid #0db14b;
}

.form-alert.error {
    background: #fff1f1;
    color: #a30000;
    border: 1px solid #ff4d4d;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}