/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #549474;
    --primary-dark: #3d6d56;
    --primary-light: #6fb892;
    --primary-lighter: #8fc9a8;
    --primary-lightest: #b4dcc7;
    --text-dark: #2c3e2d;
    --text-light: #5a6b5c;
    --bg-light: #f5f9f7;
    --bg-white: #ffffff;
    --border-color: #e0ebe4;
    --shadow: rgba(84, 148, 116, 0.1);
    --shadow-hover: rgba(84, 148, 116, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    padding: 0 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    white-space: nowrap;
    line-height: 1.3;
    margin: 0;
    display: inline-block;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 1rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

/* Menu normal nunca aparece - sempre usamos menu hamburguesa */

.nav-menu::-webkit-scrollbar {
    display: none;
}

.nav-menu li {
    flex-shrink: 0;
}

/* Menu Hamburguesa - Novo Design Moderno */
.nav-menu.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    padding: 140px 0 2rem 0;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    list-style: none;
    will-change: transform;
    backface-visibility: hidden;
}

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

/* Header do Menu */
.nav-menu.mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    z-index: 1;
    border-radius: 0 0 30px 0;
}

.nav-menu.mobile-menu::after {
    content: 'Drip IV Portugal';
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
    letter-spacing: -0.5px;
}

.nav-menu.mobile-menu > li {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
}

.nav-menu.mobile-menu > li:first-child {
    padding-top: 0;
}

.nav-menu.mobile-menu > li:last-child {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

/* Links do Menu - Novo Design */
.nav-menu.mobile-menu .nav-link {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    pointer-events: auto;
    cursor: pointer;
    margin: 0.25rem 1rem;
    border-radius: 12px;
    background: transparent;
    will-change: transform, background;
}

.nav-menu.mobile-menu .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 60%;
    background: var(--primary-color);
    border-radius: 0 4px 4px 0;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.nav-menu.mobile-menu .nav-link::after {
    content: '→';
    position: absolute;
    right: 2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-menu.mobile-menu .nav-link:hover,
.nav-menu.mobile-menu .nav-link:active {
    color: var(--primary-color);
    background: linear-gradient(90deg, rgba(84, 148, 116, 0.08) 0%, rgba(84, 148, 116, 0.03) 100%);
    transform: translateX(8px);
    padding-left: 2.5rem;
}

.nav-menu.mobile-menu .nav-link:hover::before,
.nav-menu.mobile-menu .nav-link:active::before {
    transform: translateY(-50%) scaleX(1);
}

.nav-menu.mobile-menu .nav-link:hover::after,
.nav-menu.mobile-menu .nav-link:active::after {
    opacity: 1;
    transform: translateX(0);
}

/* Botão Login no Menu */
.nav-menu.mobile-menu .btn-login {
    width: calc(100% - 2rem);
    margin: 1.5rem 1rem 0;
    text-align: center;
    padding: 1.1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(84, 148, 116, 0.4);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu.mobile-menu .btn-login::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-menu.mobile-menu .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 148, 116, 0.5);
}

.nav-menu.mobile-menu .btn-login:hover::before {
    width: 300px;
    height: 300px;
}

.nav-menu.mobile-menu .btn-login:active {
    transform: translateY(0);
}

/* Divider antes do botão login */
.nav-menu.mobile-menu > li:last-of-type:not(:has(.btn-login)) {
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Responsive */
@media (min-width: 768px) {
    .nav-menu.mobile-menu {
        max-width: 450px;
        padding-top: 160px;
    }
    
    .nav-menu.mobile-menu::after {
        font-size: 1.6rem;
        top: 2.5rem;
    }
    
    .nav-menu.mobile-menu::before {
        height: 160px;
    }
    
    .nav-menu.mobile-menu .nav-link {
        font-size: 1.15rem;
        padding: 1.4rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-menu.mobile-menu {
        max-width: 480px;
    }
}

/* Smooth scroll for mobile menu - Novo Design */
.nav-menu.mobile-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(84, 148, 116, 0.3) transparent;
}

.nav-menu.mobile-menu::-webkit-scrollbar {
    width: 5px;
}

.nav-menu.mobile-menu::-webkit-scrollbar-track {
    background: transparent;
}

.nav-menu.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(84, 148, 116, 0.3);
    border-radius: 10px;
    transition: background 0.2s ease;
}

.nav-menu.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(84, 148, 116, 0.5);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
    display: block;
    padding: 0.25rem 0;
}

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

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

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

.btn-login {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.btn-login:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-login::after {
    display: none;
}

/* Botão Login no header (sempre visível) */
.btn-login-header {
    display: inline-flex !important;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-decoration: none;
}

/* User Menu */
.user-menu {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 25px;
    font-size: 0.9rem;
}

.user-name {
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}

.btn-logout {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.btn-logout:hover {
    background: rgba(220, 53, 69, 0.1);
    transform: scale(1.1);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 10px 8px;
    z-index: 1002;
    position: relative;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(84, 148, 116, 0.1);
}

.menu-toggle-label {
    position: absolute;
    bottom: -20px;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.25s ease;
    white-space: nowrap;
    pointer-events: none;
}

.menu-toggle:hover .menu-toggle-label {
    opacity: 1;
}

.menu-toggle:hover {
    background: rgba(84, 148, 116, 0.15);
    transform: scale(1.05);
}

.menu-toggle:active {
    transform: scale(0.95);
    background: rgba(84, 148, 116, 0.2);
}

/* Admin Link */
.admin-link {
    background: var(--primary-dark);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    position: relative;
    gap: 0.5rem;
}

.admin-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.admin-link:active {
    transform: scale(0.95);
}

/* Language Selector */
.language-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
    position: relative;
}

.language-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.language-btn:active {
    transform: scale(0.95);
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    display: block;
    will-change: transform, opacity;
    position: relative;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background: var(--primary-color);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-color);
}

/* Menu Overlay - Novo Design */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Overlay sempre disponível para todos os dispositivos */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 0;
    margin-top: -1px;
}

.disclaimer-banner p {
    color: #856404;
    font-size: 0.9rem;
    margin: 0;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Treatments Section */
.treatments-section {
    background: var(--bg-light);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.treatment-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.treatment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.treatment-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.treatment-content .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.treatment-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.treatment-subtitle {
    color: var(--primary-dark);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.treatment-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.treatment-ingredients {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.treatment-ingredients strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.treatment-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    line-height: 1.6;
}

.treatment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.treatment-duration,
.treatment-price {
    font-weight: 600;
    color: var(--text-dark);
}

.treatment-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 640px) {
    .treatment-image {
        height: 200px;
    }
    
    .treatment-content {
        padding: 1.5rem;
    }
    
    .treatment-card h3 {
        font-size: 1.3rem;
    }
    
    .treatment-subtitle {
        font-size: 0.85rem;
    }
    
    .treatment-description {
        font-size: 0.95rem;
    }
}

/* Process Section */
.process-section {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Group Requests Section */
.group-section {
    background: var(--bg-light);
}

.group-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.group-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.group-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.group-benefits {
    list-style: none;
}

.group-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.group-form,
.giftcard-form,
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
}

.group-form h3,
.giftcard-form h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-summary {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin: 0;
}

.form-group textarea {
    resize: vertical;
}

/* About Section */
.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-feature {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.feature-icon-large {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.about-feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--text-light);
}

/* Coverage Section */
.coverage-section {
    background: var(--bg-light);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coverage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.coverage-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coverage-card p {
    color: var(--text-light);
}

/* Offers Section */
.offers-section {
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.offer-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offer-card p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.offer-card .btn {
    background: white;
    color: var(--primary-color);
}

.offer-card .btn:hover {
    background: var(--bg-light);
}

/* Memberships Section */
.memberships-section {
    background: var(--bg-light);
}

.memberships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.membership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.membership-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
}

.membership-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.membership-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.membership-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.membership-details {
    flex-grow: 1;
}

.membership-validity {
    text-align: center;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.membership-validity strong {
    font-weight: 600;
}

.membership-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.membership-features li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.membership-features li:last-child {
    border-bottom: none;
}

.membership-included {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.membership-included strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.included-list {
    display: inline;
}

.included-item {
    color: var(--text-dark);
    font-weight: 500;
}

.membership-card .btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Gift Cards Section */
.giftcards-section {
    background: white;
}

.giftcards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.giftcards-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
}

.giftcards-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.giftcards-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.giftcard-benefits {
    list-style: none;
}

.giftcard-benefits li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* FAQs Section */
.faqs-section {
    background: var(--bg-light);
}

.faqs-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
}

.contact-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.modal-footer {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

.modal-footer a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .logo h1 {
        font-size: 1.3rem;
    }
}

@media (max-width: 968px) {
    .nav-wrapper {
        gap: 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .group-content,
    .about-content,
    .giftcards-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .membership-card.featured {
        transform: scale(1);
    }

    .membership-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .membership-card {
        padding: 2rem;
    }
    
    .membership-price {
        font-size: 2rem;
    }
    
    .membership-description {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }

    .treatments-grid,
    .process-steps,
    .coverage-grid,
    .offers-grid,
    .memberships-grid {
        grid-template-columns: 1fr;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

