/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-primary: #0f2d59;         /* Dark Navy Blue */
    --color-primary-rgb: 15, 45, 89;
    --color-primary-light: #1d4b8f;
    --color-primary-dark: #07172e;
    --color-accent: #f59e0b;          /* Gold */
    --color-accent-light: #fef3c7;
    --color-bg-light: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-text-dark: #0f172a;
    --color-text-muted: #475569;
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 20px 25px -5px rgba(15, 45, 89, 0.08), 0 8px 10px -6px rgba(15, 45, 89, 0.08);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px; /* Leave space for mobile sticky bar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

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

/* ==========================================================================
   LAYOUT CONTAINERS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top-bar {
    background-color: var(--color-primary-dark);
    color: white;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-top-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-top-contacts a, .header-top-contacts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-fast);
}

.header-top-contacts a:hover {
    color: var(--color-accent);
}

.header-top-socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-top-social-link {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.header-top-social-link:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.header-top-social-link svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .header-top-bar .container {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .header-top-contacts {
        justify-content: center;
        gap: 10px;
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
    list-style: none;
}

.nav-link {
    font-weight: 500;
    color: var(--color-primary);
    font-size: 0.95rem;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 99;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    background-color: white;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-areas: 
        "text image"
        "actions image";
    gap: 20px 40px;
    align-items: center;
}

.hero-text-column {
    grid-area: text;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.hero-title span {
    display: block;
}

.specialist-badge {
    align-self: flex-start;
    border-left: 3px solid var(--color-primary);
    background-color: rgba(15, 45, 89, 0.03);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-sm);
    max-width: 380px;
}

.specialist-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary-light);
    font-size: 1.1rem;
    line-height: 1.35;
}

.hero-meta {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    padding-top: 15px;
    max-width: 300px;
}

.hero-actions-row {
    grid-area: actions;
    display: flex;
    gap: 16px;
    margin-top: 10px;
    z-index: 2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 6px;
    transition: var(--transition-normal);
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border: none;
}

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

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

.btn-secondary:hover {
    background-color: var(--color-bg-alt);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.hero-image-column {
    grid-area: image;
    position: relative;
    height: 100%;
    align-self: end;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

/* ==========================================================================
   REVIEWS & SOCIAL PROOF
   ========================================================================== */
.reviews-strip {
    background-color: var(--color-bg-alt);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stars-container {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.reviews-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.reviews-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   "HOW I CAN HELP" SECTION
   ========================================================================== */
.help-section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 650px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(15, 45, 89, 0.3);
}

.service-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon-box {
    width: 54px;
    height: 54px;
    background-color: var(--color-bg-alt);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-box svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   STICKY BOTTOM NAV (MOBILE)
   ========================================================================== */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: white;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

.sticky-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.sticky-action svg {
    width: 18px;
    height: 18px;
}

.sticky-center-btn {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: white;
}

.sticky-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sticky-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: white;
}

/* ==========================================================================
   BOOKING SYSTEM (DYNAMIC FLOW)
   ========================================================================== */
.booking-section {
    padding: 60px 0;
}

.booking-card {
    background-color: white;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.booking-header {
    background-color: var(--color-primary);
    color: white;
    padding: 30px;
    text-align: center;
}

.booking-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.booking-body {
    padding: 35px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(15, 45, 89, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.service-selector-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.service-option {
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition-fast);
}

.service-option:hover {
    background-color: var(--color-bg-light);
    border-color: var(--color-primary-light);
}

.service-option.selected {
    background-color: rgba(15, 45, 89, 0.05);
    border-color: var(--color-primary);
    font-weight: 600;
}

.service-option input[type="radio"] {
    display: none;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.step-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    transition: var(--transition-fast);
}

.step-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

.booking-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

/* ==========================================================================
   ADMIN PAGES (DASHBOARD & LOGIN)
   ========================================================================== */
.admin-page {
    background-color: var(--color-bg-alt);
    min-height: calc(100vh - 130px);
    padding: 40px 0;
}

.login-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    margin: 60px auto;
    padding: 40px;
}

.login-title {
    font-size: 1.75rem;
    margin-bottom: 24px;
    text-align: center;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1.5px solid var(--color-border);
    padding-bottom: 1px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.dashboard-card {
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 30px;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table th, .table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
}

.table th {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-pending {
    background-color: #fef3c7;
    color: #d97706;
}

.badge-approved, .badge-paid {
    background-color: #d1fae5;
    color: #059669;
}

.badge-cancelled, .badge-failed {
    background-color: #fee2e2;
    color: #dc2626;
}

.action-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: var(--transition-fast);
}

.action-approve {
    background-color: #059669;
    color: white;
}

.action-approve:hover {
    background-color: #047857;
}

.action-cancel {
    background-color: #dc2626;
    color: white;
}

.action-cancel:hover {
    background-color: #b91c1c;
}

.action-delete {
    background-color: var(--color-bg-alt);
    color: var(--color-text-muted);
}

.action-delete:hover {
    background-color: var(--color-border);
    color: var(--color-text-dark);
}

.alert {
    padding: 14px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        padding-top: 25px;
    }
    .hero-grid {
        grid-template-columns: 1.0fr 1.0fr;
        grid-template-areas: 
            "text image"
            "actions actions";
        gap: 15px 10px;
        align-items: end;
    }
    .hero-text-column {
        gap: 15px;
        z-index: 2;
    }
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.15;
    }
    .specialist-badge {
        padding: 12px 14px;
        border-left-width: 3px;
        margin-top: 5px;
    }
    .specialist-text {
        font-size: 0.95rem;
        line-height: 1.35;
    }
    .hero-meta {
        font-size: 0.95rem;
        padding-top: 10px;
        border-top: 1px solid var(--color-border);
        max-width: 180px;
    }
    .hero-image-column {
        height: 100%;
        max-height: 380px;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
        z-index: 1;
        margin-right: -20px;
    }
    .hero-image {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
        display: block;
        pointer-events: none;
    }
    .hero-actions-row {
        display: flex;
        flex-direction: row;
        gap: 12px;
        margin-top: 15px;
        width: 100%;
        z-index: 2;
    }
    .hero-actions-row .btn {
        flex: 1;
        width: auto;
        font-size: 0.9rem;
        padding: 12px 6px;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }
    .nav-menu {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 0.95fr 1.05fr;
        gap: 10px 8px;
    }
    .hero-title {
        font-size: 1.65rem;
    }
    .specialist-badge {
        padding: 10px 12px;
        border-left-width: 2.5px;
    }
    .specialist-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    .hero-meta {
        font-size: 0.82rem;
        padding-top: 8px;
        max-width: 155px;
    }
    .hero-image-column {
        max-height: 310px;
    }
    .hero-image {
        transform: none;
    }
    .hero-actions-row {
        gap: 10px;
        margin-top: 10px;
    }
    .hero-actions-row .btn {
        font-size: 0.8rem;
        padding: 12px 4px;
    }
    .service-card {
        padding: 16px;
    }
}

/* Desktop Bottom sticky bar should be hidden */
@media (min-width: 769px) {
    .sticky-bottom-bar {
        display: none;
    }
    body {
        padding-bottom: 0;
    }
}

/* ==========================================================================
   THERAPEUTIC PROCESS TIMELINE
   ========================================================================== */
.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--color-border);
}

.process-step {
    position: relative;
    padding-left: 20px;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -33px;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    border: 2px solid white;
    transition: var(--transition-fast);
}

.process-step:hover::before {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

.process-step-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.process-step p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   ABOUT ME PAGE STYLES
   ========================================================================== */
.about-page-wrapper {
    background-color: var(--color-bg-light);
}

.about-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.about-content-section {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.about-image-column {
    position: sticky;
    top: 90px;
}

.about-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-bg-alt);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.about-image:hover {
    transform: scale(1.03);
}

.about-socials {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
    text-align: center;
}

.socials-title {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.socials-list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-alt);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube:hover {
    background-color: #ff0000;
}

.about-text-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bio-intro-badge {
    align-self: flex-start;
    background-color: var(--color-accent-light);
    color: #b45309;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 20px;
}

.bio-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

.bio-paragraph.highlight {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-primary);
    border-left: 3px solid var(--color-accent);
    padding-left: 16px;
    line-height: 1.6;
}

.bio-quote-box {
    background-color: rgba(15, 45, 89, 0.03);
    border-left: 4px solid var(--color-primary);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 10px 0;
}

.quote-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 600;
    color: var(--color-primary-light);
    line-height: 1.5;
}

.about-cta-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.cta-card {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 90%, rgba(245, 158, 11, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-actions .btn {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.95rem;
}

.cta-actions .btn-secondary {
    background-color: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive Overrides for About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-column {
        position: static;
    }
    
    .about-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
}

/* Footer Social Icons Styling */
.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer-social-link.facebook:hover {
    background-color: #1877f2;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer-social-link.youtube:hover {
    background-color: #ff0000;
}

.footer-social-link.tiktok:hover {
    background-color: #010101;
}

/* ==========================================================================
   HOMEPAGE FAQ & CONTACT STYLES
   ========================================================================== */
.contact-info-section {
    padding: 60px 0;
    background-color: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 45, 89, 0.2);
}

.contact-card-icon {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--color-accent);
}

.contact-card-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

.contact-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-section {
    padding: 70px 0;
    background-color: white;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-bg-light);
    transition: var(--transition-normal);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question-btn:hover {
    color: var(--color-primary-light);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--color-accent);
    transition: transform var(--transition-normal);
    user-select: none;
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 24px;
}

.faq-answer-panel p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 18px;
}

