@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

/* ==========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    /* Color Palette */
    --primary: hsl(215, 98%, 25%);         /* #013580 - Deep Blue */
    --primary-light: hsl(215, 80%, 35%);
    --primary-ultra-light: hsl(215, 100%, 96%);
    --accent: hsl(215, 78%, 50%);          /* #1c6ee1 - Bright Blue */
    --accent-light: hsl(215, 90%, 62%);
    --accent-ultra-light: hsl(215, 100%, 94%);
    --whatsapp: hsl(142, 70%, 45%);        /* #25D366 - WhatsApp Green */
    --whatsapp-hover: hsl(142, 70%, 38%);
    --bg-light: hsl(210, 40%, 99%);
    --bg-medical: hsl(210, 30%, 96%);
    --card-bg: hsl(0, 0%, 100%);
    
    /* Text Colors */
    --text-dark: hsl(217, 19%, 15%);
    --text-medium: hsl(217, 12%, 42%);
    --text-light: hsl(0, 0%, 100%);
    
    /* Layout Constants */
    --border: hsl(217, 15%, 92%);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(1, 53, 128, 0.04);
    --shadow-md: 0 12px 30px -10px rgba(1, 53, 128, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(1, 53, 128, 0.12);
    --glass-shadow: 0 8px 32px 0 rgba(1, 53, 128, 0.05);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.3;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--text-light);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Badges & Section Headers */
.section-tag {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin-top: 15px;
    border-radius: 2px;
}

.section-title.center::after {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

.section-desc {
    color: var(--text-medium);
    max-width: 650px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    padding: 8px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

/* Hamburger menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 920px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--card-bg);
        box-shadow: -10px 0 30px rgba(1, 53, 128, 0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1050;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
}

/* ==========================================================================
   HERO / BANNER COMPONENT
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 700px;
    background-color: var(--primary);
    overflow: hidden;
    margin-top: 80px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 53, 128, 0.85) 0%, rgba(1, 53, 128, 0.5) 50%, rgba(1, 53, 128, 0.2) 100%);
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: var(--text-light);
}

.slide-content h2 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--text-light);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider {
        height: 550px;
    }
    
    .slide-content h2 {
        font-size: 2.3rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

/* Internal Pages Banner */
.page-banner {
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-light);
    margin-top: 80px;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 53, 128, 0.85) 0%, rgba(1, 53, 128, 0.7) 100%);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.breadcrumbs {
    font-size: 0.95rem;
    opacity: 0.85;
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs span {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .page-banner {
        height: 220px;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   HOMEPAGE SPECIFIC SECTIONS
   ========================================================================== */

/* Grid layout for columns */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About Us Section Home */
.about-img-container {
    position: relative;
}

.about-img-container img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-img-container::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-top: 5px solid var(--accent);
    border-left: 5px solid var(--accent);
    z-index: -1;
    border-radius: 4px;
}

.trajectory-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--accent);
    color: var(--text-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.trajectory-badge .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.trajectory-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .trajectory-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
        display: inline-block;
    }
}

.about-content .years-lead {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* CTA Mid section Banner */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 70px 0;
    text-align: center;
}

.cta-banner-content h2 {
    color: var(--text-light);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

/* ==========================================================================
   SPECIALTIES SECTIONS
   ========================================================================== */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.specialty-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.specialty-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-ultra-light);
}

.specialty-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-ultra-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon {
    background-color: var(--accent-ultra-light);
    transform: scale(1.05);
}

.specialty-icon img {
    width: 32px;
    height: 32px;
}

.specialty-card h3 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: var(--primary);
}

.specialty-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.specialty-treatments {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
}

.specialty-treatments-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.specialty-treatments-list {
    margin-bottom: 24px;
}

.specialty-treatments-list li {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

.specialty-treatments-list li::before {
    content: '•';
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.specialty-card .card-cta {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: auto;
}

.specialty-card .card-cta::after {
    content: '→';
    transition: var(--transition);
}

.specialty-card:hover .card-cta {
    color: var(--primary);
}

.specialty-card:hover .card-cta::after {
    transform: translateX(4px);
}

/* ==========================================================================
   TEAM SECTIONS
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.doctor-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-ultra-light);
}

.doctor-img {
    position: relative;
    background-color: var(--bg-medical);
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.doctor-card:hover .doctor-img img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.doctor-info h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.doctor-info .specialty-tag {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.doctor-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.doctor-info .btn {
    width: 100%;
    margin-top: auto;
}

/* Detailed doctor biography layouts on the curriculum page */
.doctor-detail-section {
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
}

.doctor-detail-section:last-child {
    border-bottom: none;
}

.doctor-detail-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.doctor-sidebar {
    text-align: center;
}

.doctor-sidebar-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-bottom: 30px;
    background-color: var(--bg-medical);
    aspect-ratio: 1/1;
}

.doctor-sidebar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-bio-content h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.doctor-bio-content .specialty-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 30px;
}

.doctor-bio-content p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .doctor-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctor-sidebar {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   CONTACT PAGE & SMART WHATSAPP FORM
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 60px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.contact-info-panel {
    background-color: var(--primary-ultra-light);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid var(--border);
}

.contact-info-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-ultra-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--accent);
}

/* Smart WhatsApp Lead Module */
.smart-form-container {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 45px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.smart-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.smart-form-container p {
    color: var(--text-medium);
    margin-bottom: 35px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 52px;
    padding: 12px 18px;
    border: 1px solid var(--border);
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--card-bg);
    box-shadow: 0 0 0 3px var(--accent-ultra-light);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

.smart-form-container .btn {
    width: 100%;
    height: 52px;
}

@media (max-width: 480px) {
    .smart-form-container {
        padding: 30px 20px;
    }
}

/* Google Map Container */
.map-section {
    padding: 0;
    height: 450px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (SHOCKWAVE EFFECT)
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
    display: block;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp);
    z-index: -1;
    animation: shockwave 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
    background-color: var(--whatsapp-hover);
}

@keyframes shockwave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 70px 0 30px 0;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 24px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--text-light);
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.footer-contact li svg {
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 480px) {
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}
