@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Crimson+Pro:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --primary:    #355EFC;
    --primary-dk: #1a3fd6;
    --primary-lt: #e8edff;
    --secondary:  #E93C05;
    --dark:       #011A41;
    --dark-2:     #0d2560;
    --tertiary:   #4a5568;
    --light:      #DFE4FD;
    --white:      #ffffff;
    --off-white:  #f7f8ff;
    --border:     #e2e8f0;
    --shadow:     0 4px 24px rgba(1,26,65,.10);
    --shadow-lg:  0 12px 48px rgba(1,26,65,.16);
    --radius:     12px;
    --radius-lg:  20px;
    --font-sans:  'Plus Jakarta Sans', sans-serif;
    --font-serif: 'Crimson Pro', Georgia, serif;
    --transition: .3s cubic-bezier(.4,0,.2,1);

    --topbar-h:   35px;
    --navbar-h:   80px;
    --header-h: calc(var(--topbar-h) + var(--navbar-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scrollbar-gutter: stable;   
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.top-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: var(--topbar-h);
    z-index: 1000000 !important;
    background: var(--dark);
    color: rgba(255,255,255,.75);
    font-size: .78rem;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar a { color: rgba(255,255,255,.75); }
.top-bar a:hover { color: var(--white); }
.top-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}
.top-bar-left { font-weight: 600; color: var(--white); letter-spacing: .02em; }
.top-bar-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar-right span { display: flex; align-items: center; gap: 5px; }
.top-bar-right i { color: var(--primary); font-size: .82rem; }

.navbar-wrap {
    position: fixed !important;
    top: var(--topbar-h) !important;  
    left: 0 !important;
    width: 100% !important;
    height: var(--navbar-h);
    z-index: 999999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--tertiary);
    background: var(--white);
    padding-top: var(--header-h);
    -webkit-text-size-adjust: 100%;
}

body.menu-open {
    overflow: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dk); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-sans); font-weight: 700; color: var(--dark); line-height: 1.3; }

.section-title {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--dark);
}
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .75rem;
}
.section-subtitle::before {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .65rem 1.6rem;
    font-family: var(--font-sans);
    font-size: .875rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dk); border-color: var(--primary-dk); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(53,94,252,.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-2); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--off-white); color: var(--primary-dk); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-sm { padding: .4rem 1rem; font-size: .8rem; }
.btn-lg { padding: .85rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0;
    text-decoration: none;
    z-index: 2;
}
.navbar-brand img { height: 65px; width: auto; }
.navbar-brand span {
    font-size: .7rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 160px;
}

.navbar-menu { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-item { position: relative; }
.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: .48rem .8rem;
    font-size: .845rem;
    font-weight: 600;
    color: var(--dark);
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-lt); }
.nav-link > i.fa-chevron-down { font-size: .65rem; transition: var(--transition); }
.nav-item:hover > .nav-link > i.fa-chevron-down { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-item {
    display: block;
    padding: .55rem 1rem;
    font-size: .84rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 8px;
    transition: var(--transition);
}
.dropdown-item:hover, .dropdown-item.active { background: var(--primary-lt); color: var(--primary); padding-left: 1.25rem; }

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
}
.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

a {
    color: #0066cc; 
}

a:hover {
    text-decoration: none;
    color: #004499; 
}

.navbar-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navbar-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, #1a3fd6 100%);
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
}
.page-hero h1 {
    font-size: clamp(1.6rem, 5vw, 3rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: .75rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    list-style: none;
}
.breadcrumb-item a { color: rgba(255,255,255,.75); }
.breadcrumb-item a:hover { color: var(--white); }
.breadcrumb-item + .breadcrumb-item::before { content: '/'; color: rgba(255,255,255,.4); }
.breadcrumb-item.active { color: rgba(255,255,255,.9); }

.hero-carousel { 
    position: relative; 
    overflow: hidden; 
    height: 580px; 
    width: 100%;
}

.hero-slide {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    display: none;
    align-items: center;
    overflow: hidden;
}

.hero-slide.active {
    display: flex; 
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(1,26,65,.88) 0%, rgba(1,26,65,.5) 60%, rgba(1,26,65,.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 6rem 1.5rem 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    height: auto; 
    min-height: 100%; 
    overflow: visible;
}

.hero-content .tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 1.25rem;
    max-width: 100%;
}
.hero-content h1 {
    font-size: clamp(1.7rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 800;
    line-height: 1.15;
    max-width: 640px;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content p {
    color: rgba(255,255,255,.85);
    font-size: clamp(.9rem, 2vw, 1.05rem);
    max-width: 500px;
    margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.carousel-controls {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.carousel-btn:hover { background: var(--primary); border-color: var(--primary); }
.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    -webkit-tap-highlight-color: transparent;
}
.carousel-dot.active { background: var(--white); width: 24px; border-radius: 4px; }

.stats-bar { background: var(--dark); padding: 2rem 0; }
.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    aspect-ratio: 16 / 9; 
    background-color: #f0f0f0; 
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.stat-item { background: var(--dark); padding: 1.75rem 1rem; text-align: center; }
.stat-item i { font-size: 1.75rem; color: var(--primary); margin-bottom: .65rem; display: block; }
.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.stat-label { color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 500; margin-top: .4rem; display: block; }

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.container { 
    max-width: 1280px; 
    margin: 0 auto; 
    padding-left: 1.25rem; 
    padding-right: 1.25rem;
    width: 100%; 
}
.container-sm { max-width: 800px; }
.text-center { text-align: center; }
.mb-2 { margin-bottom: .5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-images { position: relative; height: 480px; }
.about-img-main {
    position: absolute;
    top: 0; right: 0;
    width: 80%; height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-img-secondary {
    position: absolute;
    bottom: 0; left: 0;
    width: 55%; height: 240px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}
.about-badge {
    position: absolute;
    top: 1.5rem; left: 1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}
.about-badge .num { font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
.about-badge .label { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.about-text p { margin-bottom: 1rem; }
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.5rem;
}
.about-feature { display: flex; align-items: center; gap: 10px; font-size: .875rem; font-weight: 600; color: var(--dark); }
.about-feature i { color: var(--primary); font-size: 1rem; flex-shrink: 0; }

.features-bg { background: var(--off-white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-lt); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: var(--primary-lt);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--primary); color: var(--white); }
.feature-card h4 { font-size: 1.02rem; margin-bottom: .5rem; color: var(--dark); }
.feature-card p { font-size: .875rem; }

.person-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.person-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}
.person-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-lt); }
.person-photo { position: relative; height: 240px; overflow: hidden; background: var(--off-white); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.person-card:hover .person-photo img { transform: scale(1.05); }
.person-photo-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--primary-lt); color: var(--primary); font-size: 3.5rem;
}
.person-info { padding: 1.25rem 1rem; }
.person-info h4 { font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.person-position { font-size: .78rem; color: var(--primary); font-weight: 600; margin-bottom: .4rem; display: block; }
.person-phone { font-size: .78rem; color: var(--tertiary); display: flex; align-items: center; justify-content: center; gap: 5px; flex-wrap: wrap; }
.person-phone i { color: var(--primary); }

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.event-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-thumb { height: 210px; overflow: hidden; position: relative; background: var(--off-white); }
.event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.event-card:hover .event-thumb img { transform: scale(1.06); }
.event-date-badge {
    position: absolute; top: 1rem; left: 1rem;
    background: var(--primary); color: var(--white);
    padding: 5px 11px; border-radius: 8px;
    font-size: .73rem; font-weight: 700;
    display: flex; align-items: center; gap: 5px;
}
.event-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.event-body h3 { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; line-height: 1.4; }
.event-body p { font-size: .875rem; flex: 1; }
.event-meta { display: flex; align-items: center; gap: .5rem; font-size: .76rem; color: var(--tertiary); margin-bottom: .75rem; flex-wrap: wrap; }
.event-meta i { color: var(--primary); }
.event-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .5rem;
}

.event-slider { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin: 2rem 0; }
.event-slider-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.event-slider-item { min-width: 100%; }
.event-slider-item img { width: 100%; height: clamp(220px, 45vw, 460px); object-fit: cover; }
.slider-prev, .slider-next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: var(--dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 5;
    -webkit-tap-highlight-color: transparent;
}
.slider-prev { left: .75rem; }
.slider-next { right: .75rem; }
.slider-prev:hover, .slider-next:hover { background: var(--primary); color: var(--white); }
.slider-counter {
    position: absolute; bottom: 1rem; right: 1rem;
    background: rgba(0,0,0,.6); color: var(--white);
    padding: 4px 12px; border-radius: 100px; font-size: .78rem; font-weight: 600;
}

.event-buttons-container {
    padding: 1rem 1.75rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border-top: 1px solid var(--border);
}

@media (max-width: 576px) {
    .event-buttons-container {
        flex-direction: column;
    }
    
    .event-buttons-container .btn {
        width: 100%; 
        justify-content: center;
        display: flex;
    }
}

.share-buttons {
    display: flex; gap: .65rem; align-items: center; flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    background: var(--off-white); border-radius: var(--radius); margin: 2rem 0;
}
.share-label { font-size: .85rem; font-weight: 700; color: var(--dark); }
.share-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 8px;
    font-size: .78rem; font-weight: 700; color: var(--white);
    transition: var(--transition); text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.share-btn:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,.2); }
.share-facebook  { background: #1877F2; }
.share-twitter   { background: #000000; }
.share-whatsapp  { background: #25D366; }
.share-messenger { background: #0084FF; }

.gallery-cats { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-cat-btn {
    padding: .42rem 1.1rem; border-radius: 100px;
    font-size: .83rem; font-weight: 600;
    background: var(--white); border: 2px solid var(--border); color: var(--dark);
    cursor: pointer; transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    text-decoration: none; display: inline-block;
}
.gallery-cat-btn.active, .gallery-cat-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gallery-item {
    position: relative; border-radius: var(--radius);
    overflow: hidden; aspect-ratio: 1;
    cursor: pointer; background: var(--off-white);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: rgba(1,26,65,.7);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 1.75rem; color: var(--white); }

.lightbox {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: var(--transition);
    padding: 1rem;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15); border: none; border-radius: 50%;
    color: var(--white); font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); z-index: 2;
    -webkit-tap-highlight-color: transparent;
}
.lightbox-close:hover { background: var(--secondary); }
.lightbox-prev, .lightbox-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15); border: none; border-radius: 50%;
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}
.lightbox-prev { left: .75rem; }
.lightbox-next { right: .75rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }
.lightbox-caption {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.8); font-size: .82rem; text-align: center;
    max-width: 90%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.services-list { display: flex; flex-direction: column; gap: 1.5rem; }
.service-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: var(--transition);
}
.service-item:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.service-item h3 { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; color: var(--dark); margin-bottom: 1rem; flex-wrap: wrap; }
.service-item h3 i { color: var(--primary); font-size: 1.25rem; flex-shrink: 0; }
.service-sub-items { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: .75rem; }
.service-sub { display: flex; gap: 10px; font-size: .875rem; }
.service-sub i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.service-sub strong { color: var(--dark); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: .84rem; font-weight: 600; color: var(--dark); }
.form-control {
    padding: .7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: .9rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(53,94,252,.12); }
.form-control::placeholder { color: #aab; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a5568' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-card {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.1rem;
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: var(--primary-lt); }
.contact-icon {
    width: 46px; height: 46px; border-radius: 11px;
    background: var(--primary-lt);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem; color: var(--primary); flex-shrink: 0;
}
.contact-info-card h5 { font-size: .82rem; color: var(--tertiary); font-weight: 600; margin-bottom: .25rem; }
.contact-info-card p { font-size: .88rem; color: var(--dark); font-weight: 500; word-break: break-word; }
.social-links { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1.5rem; }
.social-link {
    width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; transition: var(--transition);
    border: 1.5px solid var(--border); color: var(--tertiary);
    -webkit-tap-highlight-color: transparent;
}
.social-link:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark-2) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(1.4rem, 3vw, 2.2rem); position: relative; }
.cta-section p { color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; padding: 0 1rem; }
.cta-section .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; padding: 0 1rem; }

.footer { background: var(--dark); padding: 4rem 0 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
    gap: 2.5rem;
    max-width: 1280px; margin: 0 auto;
    padding: 0 1.25rem 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-col h5 {
    color: var(--white); font-size: .87rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 1.1rem; padding-bottom: .55rem;
    border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a {
    color: rgba(255,255,255,.6); font-size: .86rem;
    display: flex; align-items: center; gap: 8px;
    transition: var(--transition);
}
.footer-links a::before { content: '›'; color: var(--primary); font-size: 1rem; flex-shrink: 0; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,.6); font-size: .86rem; margin-bottom: .7rem;
}
.footer-contact-item i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-social { display: flex; gap: .55rem; flex-wrap: wrap; margin-top: 1.1rem; }
.footer-social a {
    width: 38px; height: 38px; border-radius: 8px;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: .88rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.1);
    -webkit-tap-highlight-color: transparent;
}
.footer-social a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); transform: translateY(-2px); }
.footer-newsletter .form-control {
    background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15);
    color: var(--white); border-radius: 8px 0 0 8px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter .form-control:focus { border-color: var(--primary); box-shadow: none; }
.footer-newsletter .input-group { display: flex; }
.footer-newsletter .btn { border-radius: 0 8px 8px 0; padding: .7rem 1rem; font-size: .8rem; flex-shrink: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem;
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: rgba(255,255,255,.5); font-size: .78rem; }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--primary); }

.alert {
    padding: .9rem 1.1rem; border-radius: var(--radius);
    font-size: .88rem; font-weight: 500;
    display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.25rem;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

.badge {
    display: inline-flex; align-items: center; gap: 3px;
    padding: 3px 10px; border-radius: 100px;
    font-size: .7rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    white-space: nowrap;
}
.badge-primary { background: var(--primary-lt); color: var(--primary); }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger  { background: #fee2e2; color: #991b1b; }

.empty-state { text-align: center; padding: 3.5rem 1.25rem; color: var(--tertiary); }
.empty-state i { font-size: 2.8rem; color: var(--border); margin-bottom: 1rem; display: block; }
.empty-state h3 { color: var(--dark); margin-bottom: .5rem; }

.pagination { display: flex; gap: .4rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.page-btn {
    min-width: 40px; height: 40px; border-radius: 8px;
    border: 1.5px solid var(--border); background: var(--white); color: var(--dark);
    font-size: .875rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); text-decoration: none; padding: 0 .75rem;
    -webkit-tap-highlight-color: transparent;
}
.page-btn:hover, .page-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.back-top {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white); border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 1rem; box-shadow: 0 4px 16px rgba(53,94,252,.4);
    opacity: 0; transform: translateY(20px); transition: var(--transition);
    z-index: 900; -webkit-tap-highlight-color: transparent;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--primary-dk); transform: translateY(-3px); }

.text-primary { color: var(--primary) !important; }
.text-dark    { color: var(--dark) !important; }
.text-muted   { color: var(--tertiary) !important; }
.bg-primary   { background: var(--primary) !important; }
.bg-light     { background: var(--off-white) !important; }
.bg-dark      { background: var(--dark) !important; }
.fw-bold      { font-weight: 700 !important; }
.fw-600       { font-weight: 600 !important; }
.d-flex       { display: flex; }
.align-center { align-items: center; }
.gap-1        { gap: .5rem; }
.gap-2        { gap: 1rem; }
.justify-between { justify-content: space-between; }
.w-100        { width: 100%; }
.rounded      { border-radius: var(--radius); }
.shadow       { box-shadow: var(--shadow); }
hr.fancy { border: none; height: 2px; background: linear-gradient(90deg, var(--primary-lt), var(--primary), var(--primary-lt)); border-radius: 2px; margin: 2rem 0; }

.mobile-brand-container {
    display: none; 
    width: 100%;
    padding: 5px 10px;
    box-sizing: border-box;
}

.mobile-brand-badge {
    background: #e0e4e8;
    color: #011a41;
    border-radius: 4px;
    padding: 6px 8px;
    font-size: 0.7rem; 
    font-weight: 700;
    text-align: center;
    width: 100%;
    display: block;
    box-sizing: border-box;
    white-space: normal; 
    word-break: break-word;
}

@media (max-width: 1200px) {
    .person-grid       { grid-template-columns: repeat(3, 1fr); }
    .gallery-grid      { grid-template-columns: repeat(3, 1fr); }
    .footer-grid       { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .features-grid     { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    :root {
        --topbar-h: 34px;
    }

    .navbar-toggle { display: flex; }
    .mobile-brand-container {
        display: block;
        width: 100%;
        padding: 3px 0;
        box-sizing: border-box;
        overflow: hidden;
    }

    .mobile-brand-badge {
        background: transparent;
        color: #131313;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.65rem; 
        font-weight: 600;
        border: none; 
        padding: 5px 8px;
        display: inline-block;
        white-space: nowrap;
        animation: marquee 15s linear infinite;
    }

    .mobile-menu-container {
        display: none;
        position: fixed;
        top: var(--header-h);  
        right: 10px; 
        left: auto;
        width: calc(100% - 20px); 
        max-width: 230px;
        max-height: calc(100vh - var(--header-h) - 10px);
        background: var(--white);
        border-radius: 20px;
        border: 1px solid var(--border);
        padding: 1.5rem; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 998;
    }
   
    .mobile-menu-container.open { 
        display: block !important; 
    }

    .nav-menu { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-item { width: 100%; border-bottom: 1px solid var(--border); }
    .nav-item:last-child { border-bottom: none; }
    .nav-link {
        padding: .75rem 1rem;
        width: 100%;
        font-size: .9rem;
        border-radius: 0;
        justify-content: space-between;
    }
    .nav-link > i.fa-chevron-down { display: block; }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--off-white) !important;
        border-radius: 0 !important;
        padding: .25rem .5rem .5rem 1rem !important;
        min-width: auto !important;
        display: none; 
    }
    .nav-item.open .dropdown-menu { display: block; }
    .nav-item:hover .dropdown-menu { display: none; } 
    .dropdown-item { padding: .55rem .75rem; border-radius: 6px; }
    .nav-link i.fa-chevron-down { transition: var(--transition); }
    .nav-item.open .nav-link i.fa-chevron-down { transform: rotate(180deg); }
    .nav-item:last-child .btn { margin: .75rem 1rem; display: inline-flex; }

    .nav-item.has-dropdown.open .dropdown-menu {
        display: block !important; 
        position: static !important;
        background: #f8f9fa !important; 
        padding-left: 20px !important;
        width: 100%;
    }
    .nav-item.has-dropdown.open .fa-chevron-down {
        transform: rotate(180deg) !important;
    }

    .about-grid         { grid-template-columns: 1fr; gap: 2rem; }
    .about-images       { height: 300px; }
    .about-img-main     { width: 75%; height: 260px; }
    .about-img-secondary { height: 180px; }
    .features-grid      { grid-template-columns: repeat(2, 1fr); }
    .contact-grid       { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid         { grid-template-columns: repeat(2, 1fr); }
    .events-grid        { grid-template-columns: repeat(2, 1fr); }
    .person-grid        { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid       { grid-template-columns: repeat(3, 1fr); }
    .service-sub-items  { grid-template-columns: 1fr; }
    .form-grid          { grid-template-columns: 1fr 1fr; }

    .hero-slide { min-height: 500px; }
    .hero-content { padding: 5rem 1.5rem 4rem; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-inner { justify-content: center; }
    .top-bar-right { gap: .75rem; }

    .hero-slide { min-height: 420px; }
    .hero-content { padding: 4rem 1.25rem 3.5rem; }
    .hero-content h1 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .hero-content p { font-size: .9rem; margin-bottom: 1.5rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; gap: .65rem; }
    .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
    .carousel-controls { bottom: 1rem; right: 1rem; }
    .carousel-btn { width: 38px; height: 38px; font-size: .85rem; }

    .page-hero { padding: 4rem 0 2.5rem; }
    .page-hero h1 { font-size: clamp(1.4rem, 5vw, 2.2rem); }

    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
    .stat-item { padding: 1.5rem 1rem; }
    .stat-number { font-size: 1.85rem; }

    .features-grid    { grid-template-columns: 1fr; gap: 1rem; }
    .events-grid      { grid-template-columns: 1fr; }
    .person-grid      { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .gallery-grid     { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .service-sub-items{ grid-template-columns: 1fr; }
    .form-grid        { grid-template-columns: 1fr; }
    .about-features   { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .contact-grid     { grid-template-columns: 1fr; gap: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }

    .section { padding: 2.75rem 0; }
    .section-sm { padding: 1.75rem 0; }
    .form-card { padding: 1.5rem; }

    .share-buttons { padding: 1rem; flex-direction: column; align-items: flex-start; }
    .share-btn { font-size: .76rem; padding: 7px 12px; }

    .cta-section { padding: 3rem 0; }
    .cta-section .btn-group { flex-direction: column; align-items: center; gap: .75rem; }
    .cta-section .btn-group .btn { width: 100%; max-width: 300px; }

    .about-images { height: 260px; }
    .about-img-main { position: relative; width: 100%; height: 260px; top: auto; right: auto; }
    .about-img-secondary { display: none; }
    .about-badge { display: none; }

    .service-item { padding: 1.25rem; }
    .service-item h3 { font-size: 1rem; }

    .gallery-cats { gap: .45rem; }
    .gallery-cat-btn { padding: .38rem .9rem; font-size: .8rem; }
}

.responsive-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .responsive-2col { grid-template-columns: 1fr !important; }
}

.responsive-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .responsive-3col { grid-template-columns: 1fr !important; }
}

@media (max-width: 576px) {
    :root {
        --topbar-h: 30px;   
    }

    .container { 
        padding-left: 1rem; 
        padding-right: 1rem; 
    }

    .navbar-inner { height: 67px; padding: 0 1rem; }
    .navbar-brand img { height: 62px; }
    .navbar-brand span { display: none; } 
    .navbar-wrap { height: 67px; }
    :root { --navbar-h: 67px; }

    .top-bar { padding: 6px 0; font-size: .72rem; }
    .top-bar-right { gap: .6rem; }

    .hero-slide { min-height: 360px; }
    .hero-content { padding: 3rem 1rem 3rem; }
    .hero-content .tag { font-size: .67rem; padding: 4px 10px; }
    .hero-content h1 { font-size: clamp(1.35rem, 6vw, 1.8rem); margin-bottom: 1rem; }
    .hero-content p { font-size: .85rem; margin-bottom: 1.25rem; }
    .hero-btns .btn { max-width: 100%; }
    .carousel-controls { display: none; } 

    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 1.25rem .75rem; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: .75rem; }
    .stat-item i { font-size: 1.4rem; }

    .person-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .person-photo { height: 190px; }
    .person-info { padding: .85rem .75rem; }
    .person-info h4 { font-size: .85rem; }
    .person-position { font-size: .72rem; }

    .events-grid { grid-template-columns: 1fr; }
    .event-thumb { height: 200px; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .5rem; }

    .features-grid { grid-template-columns: 1fr; gap: .85rem; }
    .feature-card { padding: 1.5rem; }

    .form-grid { grid-template-columns: 1fr; gap: .85rem; }
    .form-card { padding: 1.25rem; }

    .footer { padding: 2.5rem 0 0; }
    .footer-grid { padding: 0 1rem 2rem; gap: 1.5rem; }
    .footer-newsletter .input-group { flex-direction: column; }
    .footer-newsletter .form-control { border-radius: 8px; }
    .footer-newsletter .btn { border-radius: 8px; margin-top: .5rem; width: 100%; }

    .section { padding: 2.25rem 0; }

    .about-grid { gap: 1.5rem; }
    .about-features { grid-template-columns: 1fr; gap: .4rem; }
    .about-feature { font-size: .82rem; }

    .contact-info-card { padding: .9rem; }
    .contact-icon { width: 40px; height: 40px; font-size: .95rem; }
    .contact-info-card h5 { font-size: .78rem; }
    .contact-info-card p { font-size: .84rem; }

    .cta-section { padding: 2.5rem 0; }
    .cta-section p { padding: 0 .5rem; }

    .lightbox-prev { left: .4rem; }
    .lightbox-next { right: .4rem; }
    .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1rem; }

    .page-btn { min-width: 36px; height: 36px; font-size: .82rem; }

    .back-top { bottom: 1rem; right: 1rem; width: 40px; height: 40px; font-size: .9rem; }

    .share-buttons { gap: .5rem; }

    .page-hero { padding: 3rem 0 2rem; }
    .page-hero h1 { font-size: clamp(1.25rem, 6vw, 1.8rem); }
    .breadcrumb { font-size: .76rem; }
}

@media (max-width: 400px) {
    .navbar-inner { padding: 0 .75rem; }
    .container { 
        padding-left: 0.75rem; 
        padding-right: 0.75rem; 
    }
    .person-grid { grid-template-columns: 1fr 1fr; gap: .6rem; }
    .person-photo { height: 160px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-number { font-size: 1.4rem; }
    .hero-slide { min-height: 320px; }
    .hero-content h1 { font-size: 1.2rem; }
    .features-grid { gap: .65rem; }
    .feature-card { padding: 1.25rem; }
    .feature-icon { width: 46px; height: 46px; font-size: 1.1rem; }
    .events-grid { gap: 1rem; }
    .event-footer { flex-direction: column; gap: .5rem; }
    .section { padding: 2rem 0; }
    .footer-grid { padding: 0 .75rem 1.5rem; }
    .page-hero { padding: 2.5rem 0 1.75rem; }
    .page-hero-inner { padding: 0 .75rem; }
    .form-card { padding: 1rem; border-radius: var(--radius); }
    .service-item { padding: 1rem; }
    .cta-section { padding: 2rem 0; }
    .cta-section .btn-group .btn { max-width: 100%; }
    .share-btn { padding: 6px 10px; font-size: .72rem; }
}

@media (hover: none) and (pointer: coarse) {
    .btn:hover { transform: none; box-shadow: none; }
    .feature-card:hover { transform: none; box-shadow: none; }
    .person-card:hover { transform: none; box-shadow: none; }
    .event-card:hover { transform: none; box-shadow: none; }
    .service-item:hover { transform: none; box-shadow: none; }
    .contact-info-card:hover { box-shadow: none; }
    .gallery-item:hover img { transform: none; }
    .gallery-item:hover .gallery-overlay { opacity: 1; } 
    .footer-social a:hover { transform: none; }
    .social-link:hover { transform: none; }
}

@media print {
    .top-bar, .navbar-wrap, .back-top, .cta-section, .footer { display: none; }
    body { color: #000; background: #fff; }
    .page-hero { background: var(--dark); print-color-adjust: exact; }
}

@keyframes marquee {
    0%   { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}