/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563EB;
    --secondary: #06B6D4;
    --accent: #F59E0B;
    --dark: #0F172A;
    --light: #F8FAFC;
    --gray: #64748B;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 50px;
}

section {
    padding: 80px 0;
}

/* ===== HEADER / NAVBAR ===== */
header {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
}

.logo-text h1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--secondary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #CBD5E1;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-whatsapp {
    background: #25D366;
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600 !important;
}

.nav-whatsapp:hover {
    background: #1ebe57;
}

.nav-whatsapp::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 50%, #0c4a6e 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.5);
    color: var(--secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 36px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat h3 span {
    color: var(--accent);
}

.stat p {
    font-size: 0.85rem;
    color: #94A3B8;
    margin-bottom: 0;
}

/* ===== COURSES SECTION ===== */
.courses {
    background: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.course-card {
    background: var(--light);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37,99,235,0.12);
}

.course-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}

.course-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.course-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== WHY US SECTION ===== */
.why-us {
    background: var(--dark);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-subtitle {
    color: #94A3B8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(37,99,235,0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.7;
}

/* ===== ADMISSION CTA SECTION ===== */
.admission-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
}

.admission-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.admission-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    font-weight: 700;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: #020617;
    color: #94A3B8;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.footer-brand span {
    color: var(--secondary);
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact li span:first-child {
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background: #25D366;
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(37,211,102,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark);
        padding: 20px;
        gap: 16px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    nav {
        position: relative;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* ===== PAGE BANNER ===== */
.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #1e3a5f 100%);
    padding: 70px 0 50px;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner p {
    color: #94A3B8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748B;
}

.breadcrumb a {
    color: var(--secondary);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* ===== ABOUT INTRO ===== */
.about-intro {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: #EFF6FF;
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 18px;
    line-height: 1.3;
}

.about-text h2 span {
    color: var(--primary);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-highlights {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 500;
}

.about-stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--light);
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(37,99,235,0.1);
}

.stat-box h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ===== MISSION VISION ===== */
.mission-vision {
    background: var(--light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.mv-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mv-card.mission { border-top: 4px solid var(--primary); }
.mv-card.vision  { border-top: 4px solid var(--secondary); }
.mv-card.values  { border-top: 4px solid var(--accent); }

.mv-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.mv-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.mv-card p {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== WHY ABOUT ===== */
.why-about {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.why-card {
    background: var(--light);
    border-radius: 16px;
    padding: 32px 26px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(37,99,235,0.1);
}

.why-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(37,99,235,0.08);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== RESPONSIVE ABOUT ===== */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }
}
/* ===== COURSES PAGE ===== */
.courses-intro {
    background: var(--light);
    padding: 60px 0 0;
}

.courses-detail {
    background: var(--light);
    padding: 40px 0 80px;
}

.courses-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.course-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.cd-header {
    padding: 30px 26px;
    text-align: center;
}

.cd-icon {
    font-size: 42px;
    margin-bottom: 12px;
}

.cd-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.cd-body {
    padding: 26px;
}

.cd-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cd-topics {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cd-topics li {
    font-size: 0.88rem;
    color: var(--dark);
    font-weight: 500;
}

.cd-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.cd-meta span {
    background: var(--light);
    border: 1px solid #E2E8F0;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.cd-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
}
/* ===== ADMISSIONS PAGE ===== */
.admissions-open {
    background: var(--white);
    padding: 60px 0 20px;
}

.open-banner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.open-badge {
    display: inline-block;
    background: #F0FDF4;
    color: #16A34A;
    border: 1px solid #BBF7D0;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.open-banner h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.open-banner p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* HOW TO APPLY */
.how-to-apply {
    background: var(--light);
}

.apply-methods {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.apply-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.apply-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.apply-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.apply-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.apply-card > p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.apply-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.apply-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num {
    min-width: 30px;
    height: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.apply-step p {
    font-size: 0.88rem;
    color: var(--dark);
    margin: 0;
}

.apply-info {
    background: var(--light);
    border-radius: 12px;
    padding: 16px;
    margin-top: 10px;
}

.apply-info p {
    font-size: 0.88rem;
    color: var(--gray);
    margin-bottom: 6px;
}

.apply-info p:last-child {
    margin-bottom: 0;
}

.apply-wa-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
    margin-top: 10px;
}

.apply-or {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.or-line {
    width: 2px;
    height: 80px;
    background: #E2E8F0;
}

.apply-or span {
    font-weight: 700;
    color: var(--gray);
    font-size: 0.9rem;
    background: var(--light);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #E2E8F0;
}

/* REQUIREMENTS */
.requirements {
    background: var(--white);
}

.req-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.req-card {
    background: var(--light);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: all 0.3s;
}

.req-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37,99,235,0.1);
}

.req-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

.req-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.req-card p {
    font-size: 0.87rem;
    color: var(--gray);
    line-height: 1.6;
}

/* AVAILABLE COURSES */
.admission-courses {
    background: var(--light);
}

.ac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.ac-item {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.ac-item:hover {
    border-color: var(--primary);
    background: #EFF6FF;
    color: var(--primary);
    transform: translateX(4px);
}

/* RESPONSIVE ADMISSIONS */
@media (max-width: 768px) {
    .apply-methods {
        flex-direction: column;
    }

    .apply-or {
        flex-direction: row;
        padding: 0;
    }

    .or-line {
        width: 80px;
        height: 2px;
    }
}
/* ===== CONTACT PAGE ===== */
.contact-main {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.3;
}

.contact-info > p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.ci-icon {
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ci-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.ci-text p,
.ci-text a {
    font-size: 0.88rem;
    color: var(--gray);
    transition: color 0.3s;
}

.ci-text a:hover {
    color: var(--primary);
}

.contact-wa-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 1rem;
}

/* CONTACT FORM */
.contact-form-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-box > p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--light);
    transition: border 0.3s, box-shadow 0.3s;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border-radius: 12px;
    text-align: center;
}

.form-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: #16A34A;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-error {
    background: #FFF1F2;
    border: 1px solid #FECDD3;
    color: #E11D48;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 20px;
    font-weight: 500;
}

/* MAP */
.map-section {
    background: var(--white);
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.07);
}

/* RESPONSIVE CONTACT */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 28px 20px;
    }
}
.contact-info h2 span {
    color: var(--primary);
}
