/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Colors */
    --color-primary: #063B3B;
    --color-secondary: #C58A2B;
    --color-background: #FFF8F1;
    --color-text: #183434;
    --color-white: #FFFFFF;
    --color-border: #EAE5DD;
    --color-transparent-bg: rgba(6, 59, 59, 0.05);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Border Radius */
    --radius-card: 20px;
    --radius-btn: 50px;
    --radius-img: 24px;
    --radius-input: 12px;

    /* Shadows */
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);

    /* Transitions */
    --transition-smooth: 0.3s ease-in-out;
    --transition-fast: 0.2s ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-4 {
    margin-top: 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.script-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--color-secondary);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-btn);
    transition: all var(--transition-smooth);
    gap: 0.5rem;
}

.btn:active {
    transform: scale(0.98);
}

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

.btn-primary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    box-shadow: var(--shadow-premium);
}

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

.btn-secondary:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-premium);
}

.btn-outline {
    background-color: transparent;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 248, 241, 0.95);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    padding: 1.25rem 0;
}

.header.scrolled {
    padding: 0.75rem 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

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

.logo img {
    height: 80px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 248, 241, 0.95) 0%, rgba(255, 248, 241, 0.7) 40%, rgba(255, 248, 241, 0) 70%);
    z-index: 2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 540px;
}

.hero-content .subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-content .script-text {
    margin-bottom: 2.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.booking-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-card);
    width: 100%;
}

.booking-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-input);
    font-family: var(--font-body);
    font-size: 0.9375rem;
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
    outline: none;
}

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

.form-note {
    font-size: 0.75rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 0;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-text h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.5rem;
    margin-bottom: 0.125rem;
}

.stat-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-img);
    width: 100%;
    box-shadow: var(--shadow-premium);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 0;
    margin-top: 2.5rem;
}

.feature-item {
    text-align: center;
    border-right: 1px solid var(--color-border);
    padding: 0 1rem;
}

.feature-item:nth-child(3n),
.feature-item:last-child {
    border-right: none;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--color-primary);
    transition: transform var(--transition-smooth);
    font-size: 2.5rem;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px);
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-item p {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.service-badge {
    position: absolute;
    bottom: -20px;
    right: 24px;
    width: 50px;
    height: 50px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
}

.service-content {
    padding: 2.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.service-content p {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 0;
    flex: 1;
    line-height: 1.5;
}

/* ==========================================================================
   Facility Gallery Section
   ========================================================================== */
.facility {
    padding: 4rem 0;
    background-color: var(--color-background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.gallery-item {
    min-width: 180px;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-img);
    margin-bottom: 1rem;
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item p {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
}

.gallery-btn-wrapper {
    margin-top: 1rem;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.process {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.timeline-container {
    position: relative;
    margin-top: 4rem;
}

.timeline-line {
    position: absolute;
    top: 28px;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: var(--color-border);
    border: 1px dashed var(--color-secondary);
    z-index: 1;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

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

.step-icon-outer {
    width: 56px;
    height: 56px;
    background-color: var(--color-white);
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    background: var(--color-white);
}

.step-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    max-width: 100%;
    max-height: 100%;
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.timeline-step p {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.4;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    padding: 4rem 0;
    background-color: var(--color-background);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: url('../images/paw-pattern.svg');
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: url('../images/paw-pattern.svg');
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex: 1;
}

.review-card {
    background-color: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.stars {
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 2rem;
    flex: 1;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer .name {
    font-weight: 600;
    color: var(--color-primary);
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background-color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

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

/* ==========================================================================
   Bottom Section (FAQ + Final CTA)
   ========================================================================== */
.bottom-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.bottom-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: flex-start;
}

/* FAQ Accordion */
.faqs {
    position: relative;
    z-index: 2;
}

.accordion {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    border: none;
    border-radius: 50px;
    background-color: var(--color-background);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: transparent;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-text);
    text-align: left;
    transition: background-color var(--transition-fast);
}

.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.accordion-header .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--color-background);
}

.accordion-content p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: #555;
    font-size: 0.9375rem;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding-top: 0;
    margin-top: 4.3rem;
    order: -1;
}

.cta-content {
    position: relative;
    z-index: 2;
    padding: 0;
    text-align: left;
}

.cta-label {
    margin-bottom: 0.5rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--color-primary);
}

.limited-slots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding-top: 5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 300px;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: background-color var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-secondary);
}

.footer-col h4 {
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

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

.contact-info li {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    line-height: 1.5;
}

.contact-info svg {
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform var(--transition-fast);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ==========================================================================
   Lightbox
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-img);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform var(--transition-smooth);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--color-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--color-secondary);
}

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    width: 90%;
    max-width: 450px;
    position: relative;
    transform: translateY(30px);
    transition: transform var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text);
    z-index: 10;
    line-height: 1;
    transition: color var(--transition-fast);
}

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