/* ===== UNIQUE ITI — EMERALD DESIGN v4 ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #fafafa;
    color: #3a3a5c;
    overflow-x: hidden;
}

:root {
    --emerald: #059669;
    --emerald-light: #34d399;
    --emerald-dark: #047857;
    --charcoal: #1a1a2e;
    --navy: #16213e;
    --accent: #e94560;
    --accent-light: #ff6b6b;
    --cream: #f8f6f3;
    --warm-gray: #6b7280;
    --light-gray: #f3f4f6;
    --border: #e5e7eb;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-emerald: 0 8px 30px rgba(5, 150, 105, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 100px;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img,
iframe {
    max-width: 100%;
}

.pg-header-inner {
    position: relative;
    z-index: 3;
}

.section-link {
    margin-top: 1.5rem;
}

.section-gap-sm {
    margin-top: 1.5rem;
}

.section-gap-md {
    margin-bottom: 2rem;
}

.section-gap-lg {
    margin-top: 2.5rem;
}

.section-tight {
    padding: 3rem 1.5rem;
}

.intro-copy-spaced {
    margin-top: 1rem;
}

.feature-panel {
    padding: 2.5rem;
}

.feature-panel-md {
    padding: 2rem;
}

.content-stack {
    margin-top: 1.5rem;
}

.feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.course-flag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    z-index: 2;
}

.course-flag-emerald {
    background: var(--emerald);
}

.course-flag-accent {
    background: var(--accent);
}

.stat-row-left {
    justify-content: flex-start;
    margin-top: 2rem;
}

.media-card {
    padding: 0;
    overflow: hidden;
}

.media-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.media-card-img-sm {
    height: 220px;
}

.media-card-img-lg {
    height: 280px;
}

.media-card-body {
    padding: 1.5rem;
}

.sec-title-sm {
    font-size: 1.8rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: var(--radius-md);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card-icon-emerald {
    background: rgba(5, 150, 105, 0.1);
}

.info-card-icon-accent {
    background: rgba(233, 69, 96, 0.08);
}

.info-card-icon-blue {
    background: rgba(59, 130, 246, 0.08);
}

.info-card-copy {
    font-size: 0.88rem;
    color: var(--warm-gray);
}

.info-card-copy a {
    color: var(--emerald);
    font-weight: 600;
    text-decoration: none;
}

.info-card-meta {
    font-size: 0.78rem;
    color: var(--warm-gray);
    margin-top: 0.2rem;
}

.office-hours-card {
    background: var(--charcoal);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.office-hours-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

.office-hours-main {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.office-hours-meta {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

.map-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: var(--shadow-emerald);
    transition: transform 0.3s;
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.2;
    transition: color 0.3s;
}

.logo-sub {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar.scrolled .logo-text {
    color: var(--charcoal);
}

.navbar.scrolled .logo-sub {
    color: var(--warm-gray);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--emerald-light);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.navbar.scrolled .nav-link {
    color: var(--warm-gray);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--emerald);
}

.navbar.scrolled .nav-link::after {
    background: var(--emerald);
}

.nav-cta {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-full) !important;
    margin-left: 0.75rem;
    box-shadow: var(--shadow-emerald);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.25);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 150;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.mob-nav.open {
    right: 0;
}

.mob-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    display: block;
}

.mob-nav a:hover,
.mob-nav a.active {
    color: var(--emerald);
    background: rgba(5, 150, 105, 0.06);
}

.mob-cta {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light)) !important;
    color: #fff !important;
    text-align: center;
    font-weight: 700 !important;
    margin-top: 1rem;
    border-radius: var(--radius-full) !important;
    padding: 1rem !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(5, 150, 105, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 69, 96, 0.08), transparent),
        radial-gradient(ellipse 50% 60% at 50% 20%, rgba(52, 211, 153, 0.1), transparent);
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--emerald-light);
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.navbar.scrolled .nav-link {
    color: var(--warm-gray);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--emerald);
}

.navbar.scrolled .nav-link::after {
    background: var(--emerald);
}

.nav-cta {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light)) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: var(--radius-full) !important;
    margin-left: 0.75rem;
    box-shadow: var(--shadow-emerald);
    transition: all 0.3s;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.25);
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #fff;
    border-radius: 5px;
    transition: all 0.3s;
}

.navbar.scrolled .hamburger span {
    background: var(--charcoal);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Nav */
.mob-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.mob-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mob-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 150;
    padding: 5rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
}

.mob-nav.open {
    right: 0;
}

.mob-nav a {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
    display: block;
}

.mob-nav a:hover,
.mob-nav a.active {
    color: var(--emerald);
    background: rgba(5, 150, 105, 0.06);
}

.mob-cta {
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light)) !important;
    color: #fff !important;
    text-align: center;
    font-weight: 700 !important;
    margin-top: 1rem;
    border-radius: var(--radius-full) !important;
    padding: 1rem !important;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(5, 150, 105, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(233, 69, 96, 0.08), transparent),
        radial-gradient(ellipse 50% 60% at 50% 20%, rgba(52, 211, 153, 0.1), transparent);
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 8rem;
    padding-bottom: 6rem;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-copy {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(5, 150, 105, 0.2);
    color: var(--emerald-light);
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 .text-emerald {
    color: var(--emerald-light);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-actions-home {
    max-width: 560px;
}

.btn-emerald {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-emerald);
}

.btn-emerald:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(5, 150, 105, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline:hover {
    background: #fff;
    color: var(--charcoal);
    border-color: #fff;
}

.hero-counters {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-counters-home {
    max-width: 600px;
}

.hero-counter-card {
    min-width: 0;
}

.counter-item .counter-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
}

.counter-item .counter-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.3rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.hero-img-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.hero-img-wrapper::before {
    display: none;
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.hero-float-card.card-1 {
    bottom: -20px;
    left: -20px;
    animation: float 5s ease-in-out infinite;
}

.hero-float-card.card-2 {
    top: 30px;
    right: -15px;
    animation: float 5s ease-in-out infinite 1.5s;
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.float-info strong {
    display: block;
    font-size: 0.88rem;
    color: var(--charcoal);
    font-weight: 700;
}

.float-info span {
    font-size: 0.72rem;
    color: var(--warm-gray);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 1.5rem;
    position: relative;
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: var(--white);
}

.section-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.sec-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.08);
    color: var(--emerald);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.sec-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--emerald);
    border-radius: 50%;
}

.sec-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.sec-title .em {
    color: var(--emerald);
}

.sec-desc {
    color: var(--warm-gray);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Dark section overrides */
.section-dark .sec-badge {
    background: rgba(52, 211, 153, 0.12);
    color: var(--emerald-light);
}

.section-dark .sec-badge .dot {
    background: var(--emerald-light);
}

.section-dark .sec-title {
    color: #fff;
}

.section-dark .sec-desc {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== FEATURE ROW ===== */
.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.two-col-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-shell {
    max-width: 720px;
    margin: 0 auto;
}

.info-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.contact-stack {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feat-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feat-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s;
}

.feat-img:hover img {
    transform: scale(1.03);
}

.feat-img::after {
    display: none;
}

.feat-img .overlay-stat {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    z-index: 2;
}

.overlay-stat .big-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--emerald);
    line-height: 1;
}

.overlay-stat .label {
    font-size: 0.72rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-list {
    list-style: none;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: #4a5568;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 22px;
    height: 22px;
    background: var(--emerald);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--charcoal);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.92rem;
}

.btn-primary:hover {
    background: var(--emerald);
    transform: translateY(-2px);
    box-shadow: var(--shadow-emerald);
}

/* ===== CARD GRID ===== */
.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.g-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.g-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.g-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.g-card:hover::before {
    transform: scaleX(1);
}

.g-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.g-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.g-card p {
    color: var(--warm-gray);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* Dark cards */
.section-dark .g-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.section-dark .g-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.section-dark .g-card h3 {
    color: #fff;
}

.section-dark .g-card p {
    color: rgba(255, 255, 255, 0.5);
}

.section-dark .g-card::before {
    background: linear-gradient(90deg, var(--emerald-light), var(--accent));
}

/* ===== COURSE CARDS ===== */
.course-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.course-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    transform: translateY(-6px);
}

.course-card .c-img {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.course-card .c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.course-card:hover .c-img img {
    transform: scale(1.06);
}

.course-card .c-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;
}

.course-card .c-body {
    padding: 2rem;
}

.course-card .c-body h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 0.6rem;
}

.course-card .c-body p {
    color: var(--warm-gray);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(5, 150, 105, 0.08);
    color: var(--emerald);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    height: 280px;
    transition: all 0.4s;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-pill {
    padding: 0.5rem 1.3rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.82rem;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.filter-pill.active,
.filter-pill:hover {
    border-color: var(--emerald);
    background: var(--emerald);
    color: #fff;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.95);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    object-fit: contain;
}

.lb-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.lb-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-prev {
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--charcoal);
    margin-bottom: 0.45rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}

.form-input.error {
    border-color: var(--accent);
}

.error-msg {
    color: var(--accent);
    font-size: 0.78rem;
    margin-top: 0.25rem;
    display: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    color: #fff;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    box-shadow: var(--shadow-emerald);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.25);
}

/* ===== CTA ===== */
.cta-section {
    position: relative;
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, var(--emerald-dark), var(--emerald), var(--emerald-light));
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-inner h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--emerald-dark);
    padding: 1rem 2.2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* ===== STEPS (Timeline) ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    z-index: 0;
    opacity: 0.3;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-emerald);
}

.step-item h4 {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.step-item p {
    color: var(--warm-gray);
    font-size: 0.85rem;
}

/* ===== PAGE HEADER ===== */
.pg-header {
    padding: 10rem 1.5rem 5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pg-header .hero-mesh,
.pg-header .hero-dots {
    position: absolute;
    inset: 0;
}

.pg-header::after {
    display: none;
}

.pg-header .sec-badge {
    background: rgba(52, 211, 153, 0.12);
    color: var(--emerald-light);
    justify-content: center;
}

.pg-header .sec-badge .dot {
    background: var(--emerald-light);
}

.pg-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
}

.pg-header p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.55);
    padding: 5rem 1.5rem 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light), var(--accent), var(--emerald));
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    max-width: 1240px;
    margin: 0 auto 3rem;
}

.footer h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.footer p,
.footer li {
    font-size: 0.88rem;
    line-height: 1.7;
}

.footer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.88rem;
}

.footer a:hover {
    color: var(--emerald-light);
}

.footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ft-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.ft-brand .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
}

.ft-brand span {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    max-width: 1240px;
    margin: 0 auto;
}

/* ===== SKILL BAR ===== */
.skill-bar {
    height: 6px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    border-radius: var(--radius-full);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== STAT ROW ===== */
.stat-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.stat-item {
    text-align: center;
}

.stat-item .s-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--emerald);
    display: block;
}

.stat-item .s-label {
    font-size: 0.75rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ===== FEATURE LIST (dark) ===== */
.feature-list-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.feature-list-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(6px);
}

.feature-list-card .fl-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-list-card .fl-text strong {
    color: #fff;
    font-weight: 700;
    display: block;
    font-size: 0.92rem;
}

.feature-list-card .fl-text span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

/* ===== TIMELINE (Admission) ===== */
.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 1.5rem;
    border-left: 2px solid var(--border);
}

.timeline-item:last-child {
    border-left-color: transparent;
}

.timeline-dot {
    position: absolute;
    left: -0.55rem;
    top: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--emerald);
    border-radius: 50%;
    border: 3px solid rgba(5, 150, 105, 0.2);
}

/* ===== ANIMATIONS ===== */
@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes reveal-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.d1 {
    transition-delay: 0.1s;
}

.d2 {
    transition-delay: 0.2s;
}

.d3 {
    transition-delay: 0.3s;
}

.d4 {
    transition-delay: 0.4s;
}

.d5 {
    transition-delay: 0.5s;
}

.d6 {
    transition-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-links {
        gap: 0;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
    }

    .nav-cta {
        margin-left: 0.5rem;
        padding: 0.6rem 1.1rem !important;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

    .hero-visual {
        display: none;
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .card-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-card {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 0.85rem 0;
    }

    .nav-inner {
        gap: 0.75rem;
    }

    .logo {
        gap: 0.65rem;
        min-width: 0;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-sub {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }

    .mob-nav {
        width: min(88vw, 380px);
        padding: 5.5rem 1.25rem 1.5rem;
    }

    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-counters {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.9rem;
        width: 100%;
    }

    .hero-copy {
        max-width: 100%;
    }

    .ft-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 4rem 1.25rem;
    }

    .section-tight {
        padding: 2.5rem 1.25rem;
    }

    .hero-content {
        padding-top: 7.5rem;
        padding-bottom: 4.5rem;
    }

    .hero-desc {
        max-width: none;
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.75rem;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        min-width: 0;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-row {
        gap: 2rem;
    }

    .stat-row-left {
        justify-content: center;
    }

    .pg-header {
        padding: 8.5rem 1rem 4rem;
    }

    .pg-header p {
        font-size: 1rem;
    }

    .g-card,
    .course-card .c-body {
        padding: 1.5rem;
    }

    .feature-panel {
        padding: 1.5rem;
    }

    .feature-panel-md {
        padding: 1.35rem;
    }

    .media-card {
        padding: 0;
    }

    .media-card-body {
        padding: 1.25rem;
    }

    .feature-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .feature-actions a {
        width: 100%;
        justify-content: center;
    }

    .gallery-item {
        height: 240px;
    }

    .feature-list-card {
        align-items: flex-start;
        padding: 1rem 1.1rem;
    }

    .form-grid-2,
    .info-stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-stack {
        margin-top: 1.5rem;
    }

    .info-card {
        padding: 1.1rem;
    }

    .info-card-copy {
        overflow-wrap: anywhere;
    }

    .map-frame iframe {
        height: 320px;
    }

    .lightbox {
        padding: 0.75rem;
    }

    .lb-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.35rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        gap: 0.6rem;
    }

    .hero-actions-home {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .hero-counters {
        gap: 0.6rem;
        align-items: start;
    }

    .hero-counters-home {
        max-width: 100%;
        margin-top: 1rem;
        padding-top: 0.8rem;
    }

    .counter-item .counter-num {
        font-size: 1.9rem;
    }

    .btn-primary,
    .btn-white {
        width: 100%;
        justify-content: center;
    }

    .section,
    .cta-section,
    .footer {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .section-tight {
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 10.5vw, 2.65rem);
        line-height: 1.02;
        letter-spacing: -0.04em;
        margin-bottom: 0.7rem;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 0.34rem 0.8rem;
        margin-bottom: 0.6rem;
    }

    .hero-desc {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 0.9rem;
    }

    .hero-actions-home .btn-emerald,
    .hero-actions-home .btn-outline {
        min-width: 0;
        width: 100%;
        padding: 0.88rem 0.95rem;
        font-size: 0.84rem;
        line-height: 1.25;
    }

    .counter-item {
        min-width: 0;
    }

    .counter-item .counter-label {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
        line-height: 1.3;
    }

    .hero-counter-card {
        text-align: left;
    }

    .logo-sub {
        display: none;
    }

    .pg-header {
        padding-top: 7.5rem;
    }

    .mob-nav {
        width: 100%;
        max-width: none;
        right: -100%;
        padding-left: 1.35rem;
        padding-right: 1.35rem;
    }

    .gallery-item {
        height: 220px;
    }

    .navbar {
        padding: 0.7rem 0;
    }

    .logo {
        gap: 0.5rem;
        max-width: calc(100% - 48px);
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 0.98rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-top: 4.7rem;
        padding-bottom: 2.4rem;
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
    }

    .hero-counters {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }

    .stat-row,
    .stat-row-left {
        gap: 1.2rem;
    }

    .info-card {
        flex-direction: column;
    }

    .info-card-icon {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .media-card-img,
    .media-card-img-sm,
    .media-card-img-lg {
        height: 210px;
    }

    .sec-title-sm {
        font-size: 1.55rem;
    }

    .map-frame iframe {
        height: 260px;
    }

    .feature-actions a,
    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 72vh;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 1.15rem;
    }

    .feature-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions-home {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-counters-home {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .section,
    .cta-section,
    .footer,
    .section-tight {
        padding-left: 1.15rem;
        padding-right: 1.15rem;
    }

    .counter-item .counter-num {
        font-size: 1.6rem;
    }

    .counter-item .counter-label {
        font-size: 0.54rem;
    }
}