:root {
    --gold: #D7A67B;
    --navy: #00162d;
    --white: #ffffff;
    --gold-light: rgba(215, 166, 123, 0.1);
    --gold-border: rgba(215, 166, 123, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated background pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 50%, var(--gold) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Floating CTA Buttons */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-btn svg {
    width: 26px;
    height: 26px;
}

.floating-whatsapp {
    background: #25D366;
}

.floating-whatsapp svg {
    fill: white;
}

.floating-whatsapp:hover {
    background: #1fb855;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.floating-text {
    background: var(--gold);
}

.floating-text svg {
    stroke: var(--navy);
    fill: none;
    stroke-width: 2;
}

.floating-text:hover {
    background: #c4956b;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(215, 166, 123, 0.4);
}

.floating-call {
    background: var(--white);
}

.floating-call svg {
    stroke: var(--navy);
    fill: none;
    stroke-width: 2;
}

.floating-call:hover {
    background: #f0f0f0;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.3);
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header with Logo */
.header {
    width: 100%;
    text-align: center;
    padding: 20px 0 40px;
    animation: fadeIn 1s ease-out;
}

.logo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Decorative lines */
.deco-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    margin: 0 auto 25px;
    animation: fadeInDown 1s ease-out;
}

.logo-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease-out;
}

.clinic-name {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
}

.clinic-name span {
    color: var(--gold);
    font-weight: 600;
}

.tagline {
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 300;
}

/* Now Open Badge */
.now-open {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--navy);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
    box-shadow: 0 10px 40px rgba(215, 166, 123, 0.3);
}

.now-open::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--navy);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Location Badge */
.location-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(215, 166, 123, 0.1);
    border: 1px solid var(--gold-border);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s both;
    flex-wrap: wrap;
    justify-content: center;
}

.location-badge:hover {
    background: rgba(215, 166, 123, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.location-badge svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.location-badge span {
    font-size: 0.95rem;
}

.directions-hint {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Map Container */
.map-container {
    width: 100%;
    max-width: 600px;
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    animation: fadeInUp 1s ease-out 0.45s both;
}

.map-container iframe {
    display: block;
}

/* About Section */
.about-section {
    max-width: 800px;
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

.about-text strong {
    color: var(--white);
    font-weight: 500;
}

/* Services Section */
.services-section {
    width: 100%;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.services-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
}

.service-item {
    text-align: center;
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    background: var(--gold-light);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-item:hover {
    border-color: var(--gold);
    background: rgba(215, 166, 123, 0.12);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image for services */
.service-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, rgba(0, 22, 45, 0.8) 100%);
    border-bottom: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px 20px;
}

.service-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    line-height: 1.6;
}

/* Coming Soon */
.coming-soon {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.coming-soon h2 {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 10px;
}

.coming-soon p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

/* Book Appointment Section */
.booking-section {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.booking-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.booking-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    fill: white;
}

.btn-text {
    background: var(--gold);
    color: var(--navy);
}

.btn-text:hover {
    background: #c4956b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(215, 166, 123, 0.3);
}

.btn-text svg {
    stroke: var(--navy);
    fill: none;
    stroke-width: 2;
}

.btn-call {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gold-border);
}

.btn-call:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-call svg {
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.booking-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-style: italic;
}

/* Alex Section */
.alex-section {
    width: 100%;
    max-width: 900px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.alex-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    background: var(--gold-light);
    border: 1px solid var(--gold-border);
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
}

.alex-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gold-border);
}

.alex-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alex-info {
    text-align: left;
}

.alex-name {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 5px;
}

.alex-title {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.alex-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 15px;
}

.alex-bio strong {
    color: var(--white);
    font-weight: 500;
}

.alex-bradford {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gold-border);
}

.alex-bradford a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.alex-bradford a:hover {
    color: #e8bb93;
    text-decoration: underline;
}

/* Contact Section */
.contact {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.05rem;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 40px auto;
    opacity: 0.5;
}

/* Footer */
.footer {
    margin-top: 60px;
    text-align: center;
    animation: fadeInUp 1s ease-out 1.1s both;
    padding-bottom: 20px;
}

.footer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from { 
        opacity: 0; 
        transform: translateY(-30px);
    }
    to { 
        opacity: 1; 
        transform: translateY(0);
    }
}

/* Responsive - Tablet */
@media (max-width: 900px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .alex-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 30px;
    }

    .alex-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .alex-info {
        text-align: center;
    }

    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-cta {
        bottom: 20px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
    .container {
        padding: 30px 15px;
    }

    .header {
        padding: 15px 0 30px;
    }

    .logo-container {
        width: 110px;
        height: 110px;
    }

    .clinic-name {
        font-size: 1.8rem;
        letter-spacing: 0.08em;
    }

    .tagline {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }

    .now-open {
        padding: 12px 25px;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .location-badge {
        padding: 10px 18px;
        gap: 8px;
    }

    .location-badge span {
        font-size: 0.85rem;
    }

    .directions-hint {
        font-size: 0.75rem;
    }

    .map-container {
        margin-bottom: 40px;
    }

    .section-title,
    .services-title,
    .contact-title,
    .booking-title {
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .services {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-image {
        height: 160px;
    }

    .service-content {
        padding: 20px 15px;
    }

    .alex-content {
        padding: 25px 20px;
    }

    .alex-image {
        max-width: 200px;
    }

    .alex-name {
        font-size: 1.4rem;
    }

    .alex-bio {
        font-size: 0.9rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }

    .contact-item svg {
        width: 24px;
        height: 24px;
    }

    .divider {
        margin: 30px auto;
    }

    .footer {
        margin-top: 40px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .floating-cta {
        bottom: 15px;
        right: 12px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
    }

    .floating-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .clinic-name {
        font-size: 1.5rem;
    }

    .now-open {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 8px;
    }

    .now-open::before {
        width: 8px;
        height: 8px;
    }

    .location-badge {
        padding: 8px 15px;
    }

    .floating-btn {
        width: 44px;
        height: 44px;
    }

    .floating-btn svg {
        width: 18px;
        height: 18px;
    }
}
