/* ============================================================
   FILE: assets/css/style.css - Main Styles
   ============================================================ */

/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a7e8c;
    --secondary-color: #0a4b5c;
    --primary-dark: #0a2f3a;
    --accent-color: #2c9ca8;
    --accent-light: #b3dde3;
    --bg: #f5f8f9;
    --white: #ffffff;
    --dark: #1a2e3a;
    --gray: #5a7a85;
    --gray-light: #dce8ec;
    --shadow: 0 10px 40px rgba(10,126,140,0.10);
    --shadow-hover: 0 20px 60px rgba(10,126,140,0.18);
    --radius: 20px;
    --radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Khmer', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.7;
    opacity: 0;
    transition: opacity 0.6s ease;
    -webkit-font-smoothing: antialiased;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

/* ----- LOADING ----- */
#loading-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

#loading-panel.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid var(--gray-light);
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    margin-top: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* ----- HEADER ----- */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(10,126,140,0.08);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(10,126,140,0.35);
    flex-shrink: 0;
}

.logo-text h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.7rem;
    color: var(--gray);
    display: block;
    margin-top: -2px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(10,126,140,0.06);
}

.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(10,126,140,0.10);
    font-weight: 600;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
}

.nav-menu .btn-appointment {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 10px 24px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(10,126,140,0.30);
}

.nav-menu .btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10,126,140,0.40);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white !important;
}

.nav-menu .btn-appointment::after {
    display: none;
}

.nav-menu .btn-appointment i {
    margin-right: 8px;
}

.nav-menu .admin-link {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: var(--gray);
    font-size: 1.1rem;
}

.nav-menu .admin-link:hover {
    background: rgba(10,126,140,0.08);
    color: var(--primary-color);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(10,126,140,0.06);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 4px;
}

.lang-switcher a {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--gray);
}

.lang-switcher a.active {
    color: var(--primary-color);
    background: rgba(10,126,140,0.12);
}

.lang-switcher a:hover {
    background: rgba(10,126,140,0.08);
}

.lang-divider {
    color: var(--gray-light);
    font-weight: 300;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
}


.menu-toggle:hover {
    background: rgba(10,126,140,0.06);
}

/* ============================================================
   FULL WIDTH IMAGE SLIDER - Updated Styles
   ============================================================ */

.hero-section {
    padding: 0;
    margin: 10px 0 10px 0;
}

.hero-slider {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    /* background: #1a2e3a; */
}

.slides {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
    min-width: 100%;
    position: relative;
}

.slide-image-wrap.full-width {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.slide-image-wrap.full-width img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional overlay on images */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide:hover .slide-overlay {
    opacity: 1;
}

.slide-overlay-content {
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 600px;
}

.slide-overlay-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.btn-slide {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary-color, #0a7e8c);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10,126,140,0.3);
}

.btn-slide:hover {
    background: var(--secondary-color, #0a4b5c);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10,126,140,0.4);
    color: white;
}

/* Slider Controls - Bottom */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.slider-controls button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.8);
    color: var(--secondary-color, #0a4b5c);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.slider-controls button:hover {
    background: var(--primary-color, #0a7e8c);
    color: white;
    transform: scale(1.05);
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color, #0a7e8c);
    width: 32px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 992px) {

    .menu-toggle {
        display: block;
    }
    .slide-image-wrap.full-width {
        height: 400px;
    }
    
    .slide-overlay-content h2 {
        font-size: 2rem;
    }
    
    .slider-controls {
        padding: 10px 16px;
    }
}

@media (max-width: 600px) {
    .slide-image-wrap.full-width {
        height: 280px;
    }
    
    .slide-overlay-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-overlay-content p {
        font-size: 0.9rem;
    }
    
    .btn-slide {
        padding: 10px 24px;
        font-size: 0.85rem;
    }
    
    .slider-controls button {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* ----- SECTION HEADERS ----- */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    background: rgba(10,126,140,0.08);
    padding: 4px 18px;
    border-radius: 40px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.section-header h2 i {
    color: var(--primary-color);
}

.section-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 8px auto 0;
}

/* ----- SERVICES ----- */
.services-section {
    padding: 30px 0 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(10,126,140,0.06);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(10,126,140,0.12);
}

.service-card .icon-wrapper {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(10,126,140,0.08), rgba(10,126,140,0.02));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.05) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ----- ANNOUNCEMENTS ----- */
.announcements-section {
    padding: 20px 0 40px;
}

.announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.announcement-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(10,126,140,0.06);
    box-shadow: var(--shadow);
}

.announcement-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(10,126,140,0.12);
}

.announcement-card .image-wrap {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-light), #e8f4f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray);
    position: relative;
    overflow: hidden;
}

.announcement-card .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-card .image-wrap .image-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10,126,140,0.85);
    color: white;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
}

.announcement-card .body {
    padding: 24px;
}

.announcement-card .body .tag {
    display: inline-block;
    background: rgba(10,126,140,0.08);
    color: var(--primary-color);
    padding: 2px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.announcement-card .body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.announcement-card .body p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.announcement-card .body .date {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.announcement-card .body .date i {
    color: var(--primary-color);
}

/* ----- ABOUT SECTION ----- */
.about-section {
    padding: 30px 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,126,140,0.06);
}

.about-grid .about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-grid .about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-grid .about-image .big-icon {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10,126,140,0.08), rgba(10,126,140,0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    color: var(--primary-color);
    border: 4px solid rgba(10,126,140,0.06);
    transition: var(--transition);
}

.about-grid .about-image .big-icon:hover {
    transform: scale(1.02);
    border-color: rgba(10,126,140,0.12);
}

.about-grid .about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.about-grid .about-text h3 i {
    color: var(--primary-color);
}

.about-grid .about-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-grid .about-text .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
}

.about-grid .about-text .features li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.about-grid .about-text .features li i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* ----- PAGE HERO ----- */
.page-hero {
    background: var(--white);
    padding: 40px 50px;
    border-radius: var(--radius);
    margin: 20px 0 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10,126,140,0.06);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(10,126,140,0.04) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.page-hero h1 i {
    color: var(--primary-color);
}

.page-hero p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.page-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid rgba(10,126,140,0.06);
    box-shadow: var(--shadow);
    margin: 20px 0 30px;
}

.page-content h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin: 24px 0 12px;
}

.page-content h2 i {
    color: var(--primary-color);
}

.page-content ul {
    padding-left: 24px;
}

.page-content ul li {
    margin-bottom: 8px;
    color: var(--gray);
    line-height: 1.7;
}

.page-content ul li strong {
    color: var(--secondary-color);
}

/* ----- CONTACT ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid rgba(10,126,140,0.06);
    box-shadow: var(--shadow);
}

.contact-info .item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(10,126,140,0.06);
}

.contact-info .item:last-child {
    border-bottom: none;
}

.contact-info .item i {
    color: var(--primary-color);
    width: 24px;
    font-size: 1.1rem;
}

.map-container {
    margin-top: 20px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ----- FORMS ----- */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.form-group label .required {
    color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
    background: #fafcfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(10,126,140,0.08);
    background: white;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid #c3e6cb;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.success-message i {
    font-size: 1.2rem;
}

/* ----- FOOTER ----- */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 0;
    margin-top: 40px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-col h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-col h4 i {
    color: var(--accent-light);
    margin-right: 8px;
}

.footer-col p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: var(--accent-light);
    width: 20px;
}

.footer-address {
    margin-top: 12px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 0;
}

.footer-bottom p i {
    color: var(--accent-light);
}

/* Mobile menu fix - ensure nav menu works properly */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px 24px;
        border-bottom: 2px solid rgba(10, 126, 140, 0.08);
        gap: 2px;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav-menu.open {
        display: flex !important;
    }

    .nav-menu a {
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--radius-sm);
        text-align: left;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu .btn-appointment {
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .nav-menu .admin-link {
        width: 100%;
        border-radius: var(--radius-sm);
        padding: 12px 16px;
        justify-content: center;
    }

    .lang-switcher {
        justify-content: center;
        margin: 4px 0;
        padding: 8px 12px;
    }

    .lang-switcher a {
        padding: 4px 12px;
    }


    .slide {
        flex-direction: column;
        min-height: auto;
    }

    .slide-content {
        padding: 30px;
        text-align: center;
        order: 2;
    }

    .slide-content p {
        max-width: 100%;
    }

    .slide-actions {
        justify-content: center;
    }

    .slide-image-wrap {
        flex: none;
        width: 100%;
        height: 300px;
        order: 1;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        text-align: center;
    }

    .about-grid .about-text .features {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .about-grid .about-text .features li {
        justify-content: center;
    }

    .about-grid .about-image .big-icon {
        width: 180px;
        height: 180px;
        font-size: 4.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 30px;
    }

    .page-hero::before {
        width: 150px;
        height: 150px;
    }

    .page-content {
        padding: 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .slide-content h2 {
        font-size: 1.6rem;
    }

    .slide-content {
        padding: 20px;
    }

    .slide-image-wrap {
        height: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .service-card .icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .announcement-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col p {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .logo-text h1 {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.85rem;
    }

    .about-grid {
        padding: 20px;
    }

    .about-grid .about-image .big-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .page-hero {
        padding: 20px;
    }

    .page-content {
        padding: 16px;
    }

    .contact-info {
        padding: 20px;
    }

    .slider-controls button {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .dot.active {
        width: 24px;
    }

    .map-container {
        height: 180px;
    }
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}