/* Gold Coast Variety Thai Massage - Purple Luxury Spa Design */

:root {
    /* Clean Purple Accent Palette (Zen Fusion inspired) */
    --purple-primary: #8b5cf6;
    --purple-hover: #7c3aed;
    --purple-light: #ede9fe;
    --white: #ffffff;
    --cream: #fafaf9;
    --light-grey: #f5f5f4;
    --grey: #e7e5e4;
    --text-dark: #292524;
    --text-grey: #57534e;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max: 1200px;
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(139, 58, 184, 0.15);
    --shadow-lg: 0 10px 40px rgba(139, 58, 184, 0.25);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 300;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

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

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

section {
    padding: var(--section-padding);
}

/* Navigation */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--purple-primary), #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000000, var(--purple-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--purple-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

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

.nav-ctas {
    display: flex;
    align-items: center;
}

.btn-nav-group {
    display: flex;
    align-items: center;
    background: var(--purple-primary);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.25);
}

.btn-nav-main {
    color: var(--white);
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-nav-main:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.btn-nav-icon {
    padding: 0.7rem 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.btn-nav-icon:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-nav-icon svg {
    stroke: var(--white);
}

.btn-nav-icon-phone svg {
    stroke: none;
    fill: #22c55e;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    color: var(--white);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
    font-weight: 500;
}

.hero-highlight {
    font-weight: 400;
    font-size: 2.8rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-style: italic;
    opacity: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-hours {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 1;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* About Section */
.about-section {
    background: var(--white);
    padding: var(--section-padding);
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

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

.about-text p strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: 8px;
}

.about-feature .feature-icon {
    font-size: 1.2rem;
}

.feature-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--purple-primary);
    flex-shrink: 0;
}

.detail-icon-svg {
    width: 28px;
    height: 28px;
    color: var(--purple-primary);
    flex-shrink: 0;
}

.about-feature span:last-child {
    font-weight: 500;
    color: var(--text-dark);
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background: var(--purple-hover);
    border-color: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--vibrant-purple);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

/* Features Section */
.features {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

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

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-grey);
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    flex-shrink: 0;
}

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

.service-content h3 {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light-grey);
}

.service-duration {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.service-price {
    color: var(--purple-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Location Section */
.location {
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.location-info h3 {
    margin-bottom: 1.5rem;
}

.location-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.location-features {
    list-style: none;
    margin: 2rem 0;
}

.location-features li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.location-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.location-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-hover));
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

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

.footer-section h3 {
    color: var(--purple-light);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    display: block;
}

.footer-section a:hover {
    color: var(--purple-light);
}

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

/* Mobile Bottom CTA Bar */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 1rem;
}

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

.mobile-cta-buttons a {
    flex: 1;
    text-align: center;
    padding: 1rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.mobile-cta .btn-call {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
}

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

/* Responsive Design */
/* Trust Bar */
.trust-bar {
    background: var(--cream);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--grey);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-grey);
    font-size: 1.1rem;
}

/* Feature Cards with Images */
.feature-card {
    text-align: center;
    padding: 0;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background: var(--cream);
    padding: var(--section-padding);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.pricing-card.featured {
    border: 2px solid var(--purple-primary);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--purple-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-list {
    list-style: none;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-grey);
    font-size: 0.95rem;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list li span:last-child {
    font-weight: 600;
    color: var(--purple-primary);
}

/* Location Details */
.location-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.location-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.location-detail strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.location-detail p {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-detail a {
    color: var(--purple-primary);
    font-weight: 500;
}

/* Booking Section */
.booking-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.booking-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 200px;
}

.booking-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.booking-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.booking-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Light Booking Section */
.booking-section {
    background: var(--cream);
    padding: var(--section-padding);
    text-align: center;
}

.booking-card-light {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    min-width: 250px;
    box-shadow: var(--shadow);
}

.booking-card-light h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.booking-card-light p {
    color: var(--text-grey);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.booking-note-light {
    color: var(--text-grey);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.booking-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    max-width: 500px;
    text-align: left;
}

.booking-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.booking-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--purple-primary);
    font-weight: bold;
}

.reviews-snippet {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow);
}

.reviews-snippet p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.location-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.location-intro strong,
.location-info p strong {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero h1 {
        font-size: 4rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 280px;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .about-feature {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        width: 100%;
    }
    
    .btn-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* Contact Card Modal */
.contact-card {
    position: fixed;
    top: 90px;
    right: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    width: 320px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: slideDown 0.3s ease;
}

.contact-card.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    animation: slideUp 0.3s ease;
}

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

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

.contact-card-content {
    padding: 1.5rem;
    position: relative;
}

.contact-card-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-grey);
    transition: color 0.3s ease;
}

.contact-card-close:hover {
    color: var(--purple-primary);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.contact-card-item {
    margin-bottom: 1.2rem;
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-grey);
    margin-bottom: 0.4rem;
}

.contact-card-value {
    font-size: 1rem;
    color: var(--purple-primary);
    font-weight: 500;
}

.contact-card-value:hover {
    color: var(--purple-hover);
}

.contact-card-directions {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    background: var(--purple-primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

.contact-card-directions:hover {
    background: var(--purple-hover);
}

.btn-nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.7rem 0.8rem;
}

/* Parking Card Modal */
.parking-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    width: 350px;
    max-width: 90%;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.parking-card.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.parking-card-content {
    padding: 2rem;
    text-align: center;
}

.parking-card-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-grey);
    transition: color 0.3s ease;
}

.parking-card-close:hover {
    color: var(--purple-primary);
}

.parking-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.parking-info {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.parking-code-box {
    background: var(--purple-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.parking-code-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-grey);
    margin-bottom: 0.75rem;
}

.parking-call-btn {
    display: inline-block;
    background: var(--purple-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.parking-call-btn:hover {
    background: var(--purple-hover);
}

.parking-note {
    font-size: 0.85rem;
    color: var(--text-grey);
    font-style: italic;
}

.about-feature-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-feature-clickable:hover {
    color: var(--purple-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-card {
        right: 1rem;
        left: 1rem;
        width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .contact-card {
        top: 80px;
        right: 0.5rem;
        left: 0.5rem;
    }
}

/* Our Other Clinics Section */
.clinics-strip {
    margin-top: 0;
    padding: 60px 0;
    background: #fafafa;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.clinics-strip h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 12px;
    text-align: center;
}

.clinics-strip > .container > p {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px auto;
    font-size: 0.95rem;
    line-height: 1.6;
}

.clinics-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 500px;
}

.clinics-list li {
    margin-bottom: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.clinics-list li:last-child {
    margin-bottom: 0;
}

.clinics-list li strong {
    font-weight: 600;
    color: var(--text-primary);
}

.clinics-list a {
    color: var(--purple-primary);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.clinics-list a:hover {
    color: var(--purple-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .clinics-strip {
        padding: 40px 0;
    }
    
    .clinics-strip h3 {
        font-size: 1.5rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #fafafa;
}

.reviews-section h2 {
    text-align: center;
    margin-bottom: 12px;
}

.reviews-section .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-stars {
    color: #f5c518;
    font-size: 1.2rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

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

@media (max-width: 640px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
