/* De Elite Mindcare - Main Stylesheet */
/* =================================== */

/* CSS Custom Properties (Theme Configuration) */
:root {
    --primary-color: #008080;
    --primary-dark: #006666;
    --primary-light: #4db8b8;
    --accent-color: #b8860b;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8fafa;
    --white: #ffffff;
    --shadow: rgba(0, 128, 128, 0.1);
    --border-radius: 10px;
    --header-height: 120px;
    /* Default header height */
}

.booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Reset and Base Styles */
/* ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Header & Navigation */
/* =================== */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    transition: padding 0.3s ease;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Call Button Styles */
.call-btn {
    background: #d37925;
    /* WhatsApp green for visibility */
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(37, 211, 102, 0.3);
}

.call-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.call-btn i {
    font-size: 1rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.1;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.book-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
    font-size: 0.9rem;
}

.book-btn:hover {
    background: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Main Content */
/* ============= */
.main-content {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section scroll offset for fixed header - HEADER OFFSET FIX */
/* ========================================================== */
.section {
    display: none;
    padding: 2rem 0;
    scroll-margin-top: calc(var(--header-height) + 20px);
    /* Ensures proper spacing when scrolling to sections */
}

.section.active {
    display: block;
}

/* Alternative approach - add padding to section headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* Specific fixes for each section if needed */
#home {
    scroll-margin-top: var(--header-height);
}

#about,
#team,
#contact {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

/* Hero Section */
/* ============= */
.hero {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color));
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    /* Updated padding for better spacing */
    margin-bottom: 0;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Buttons */
/* ======== */
.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Features Grid */
/* ============== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Mental Health Topics Section */
/* ============================= */
.mental-health-topics {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--bg-light), var(--white));
}

.topics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.topics-header {
    text-align: center;
    margin-bottom: 2rem;
}

.topics-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.topics-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.auto-scroll-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px var(--shadow);
}

.topics-carousel {
    display: flex;
    width: 700%;
    animation: autoScroll 21s infinite;
}

.topics-carousel:hover {
    animation-play-state: paused;
}

@keyframes autoScroll {

    0%,
    14.285% {
        transform: translateX(0%);
    }

    14.286%,
    28.571% {
        transform: translateX(-14.285%);
    }

    28.572%,
    42.857% {
        transform: translateX(-28.57%);
    }

    42.858%,
    57.143% {
        transform: translateX(-42.855%);
    }

    57.144%,
    71.429% {
        transform: translateX(-57.14%);
    }

    71.43%,
    85.715% {
        transform: translateX(-71.425%);
    }

    85.716%,
    100% {
        transform: translateX(-85.71%);
    }
}

.topic-card {
    width: 14.285%;
    flex-shrink: 0;
    background: var(--white);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
}

.topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.topic-content {
    flex: 1;
    z-index: 2;
}

.topic-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.topic-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.topic-points {
    list-style: none;
    padding: 0;
}

.topic-points li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.9rem;
    line-height: 1.4;
}

.topic-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1rem;
}

.topic-visual {
    flex: 0 0 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.topic-visual i {
    font-size: 3rem;
    color: var(--white);
    z-index: 2;
}

.topic-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 30px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.indicator.active {
    background: var(--primary-color);
}

.indicator.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    animation: indicatorProgress 3s ease-in-out;
}

@keyframes indicatorProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.carousel-control {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 128, 128, 0.8);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-control:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

/* Team Section */
/* ============= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100%;
    height: 280px;
    object-fit: scale-down;
    object-position: center top;
}

.member-info {
    padding: 1.5rem;
}

.member-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-description {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.9rem;
}

.member-qualifications {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

/* Booking Status & Actions */
/* ========================= */

/* Updated Booking Status - Now Clickable */
.booking-status {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.booking-status.online {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.booking-status.phone {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

/* Hover effects for clickable status */
.booking-status.phone:hover {
    background: #f0c674;
    color: #6b5404;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 198, 116, 0.4);
    border-color: #e6b800;
}

.booking-status.online:hover {
    background: #c3e6cb;
    color: #0f4f23;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(195, 230, 203, 0.4);
    border-color: #a8d4b0;
}

/* Active state for better feedback */
.booking-status:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


.btn-call {
    background: #17a2b8;
    color: var(--white);
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-online {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-call:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-online:hover {
    background: #9a7209;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

/* Modal Styles */
/* ============= */
.team-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 0;
    border-radius: var(--border-radius);
    width: 95%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-direction: column;
    text-align: center;
}

.modal-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-basic-info h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.modal-basic-info p {
    margin: 0.2rem 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.modal-body {
    padding: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.info-card h4 {
    color: var(--primary-color);
    margin: 0 0 0.8rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    padding: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.4;
    font-size: 0.85rem;
}

.info-card li::before {
    content: '▸';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-close {
    position: fixed;
    top: 15px;
    right: 15px;
    background: rgba(0, 128, 128, 0.9);
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.modal-close:active {
    transform: scale(0.95);
}

/* Contact Section */
/* ================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.hours-table th,
.hours-table td {
    padding: 0.6rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.hours-table th {
    background: var(--primary-color);
    color: var(--white);
}

.hours-table tbody tr:nth-child(even) {
    background-color: rgba(0, 128, 128, 0.05);
}

.hours-table tbody tr:hover {
    background-color: rgba(0, 128, 128, 0.1);
}

/* Achievement Badge */
/* ================== */
.achievement {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.achievement img {
    max-width: 280px;
    height: auto;
}

/* Section Headers */
/* ================ */
.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Floating Book Button */
/* ==================== */
.floating-book-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(184, 134, 11, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
    font-size: 0.9rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Design - Mobile First */
/* ================================= */

/* Better spacing for mobile - HEADER OFFSET FIX */
@media (max-width: 767px) {
    .section {
        scroll-margin-top: calc(var(--header-height) + 10px);
    }

    #about,
    #team,
    #contact {
        scroll-margin-top: calc(var(--header-height) + 10px);
    }

    .booking-actions {
        flex-direction: column;
    }

    .psychiatrist-card {
        width: 100%;
        margin: 0 auto;
    }

    .booking-actions .btn-call,
    .booking-actions .btn-whatsapp,
    .booking-actions .btn-online {
        width: 100%;
        margin: 0.2rem 0;
        text-align: center;
    }

    .header-actions {
        gap: 5px;
    }

    .call-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }


    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    .header-actions {
        gap: 5px;
    }

    .call-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }



    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

}


/* Tablet (768px and up) */
@media (min-width: 768px) {
    :root {
        --header-height: 140px;
    }

    .psychiatrist-card {
        width: 80%;
        max-width: 800px;
        margin: 0 auto;
    }

    .header {
        padding: 2.5rem 0;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .logo-text h1 {
        font-size: 2rem;
    }

    .logo-text p {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .topic-card {
        flex-direction: row;
        text-align: left;
        padding: 2.5rem;
    }

    .topic-visual {
        flex: 0 0 150px;
        height: 150px;
        margin-top: 0;
        margin-left: 1rem;
    }

    .topic-visual i {
        font-size: 4rem;
    }

    .topic-title {
        font-size: 1.8rem;
    }

    .topic-points li {
        font-size: 1rem;
    }

    .contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
    }

    .modal-header {
        flex-direction: row;
        text-align: left;
        padding: 2rem;
    }

    .modal-photo {
        width: 120px;
        height: 120px;
    }

    .modal-basic-info h2 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .floating-book-btn {
        bottom: 30px;
        right: 30px;
        padding: 1rem 1.5rem;
    }

    .booking-actions {
        flex-direction: row;
        gap: 0.5rem;
    }

    .booking-actions .btn-call,
    .booking-actions .btn-whatsapp,
    .booking-actions .btn-online {
        flex: 1;
    }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
    :root {
        --header-height: 160px;
    }

    .header {
        padding: 3rem 0;
    }

    .logo-text h1 {
        font-size: 2.2rem;
    }

    .logo-text p {
        font-size: 0.9rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .feature-card:hover {
        transform: translateY(-25px);
    }

    .team-member:hover {
        transform: translateY(-15px);
    }

    .topic-card {
        padding: 3rem;
    }

    .topic-visual {
        flex: 0 0 200px;
        height: 200px;
    }

    .topic-visual i {
        font-size: 5rem;
    }

    .topic-title {
        font-size: 2rem;
    }

    .topic-points li {
        font-size: 1.1rem;
    }

    .topics-header h2 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Mobile menu styles */
@media (max-width: 767px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a {
        padding: 0.8rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu .book-btn {
        margin: 1rem 2rem;
        display: inline-block;
        text-align: center;
    }
}

/* Print styles */
@media print {

    .header,
    .floating-book-btn,
    .carousel-control,
    .mobile-menu-btn {
        display: none !important;
    }

    .main-content {
        margin-top: 0 !important;
    }

    .section {
        display: block !important;
        page-break-inside: avoid;
    }
}