:root {
    --color-bg: #fdfdfc;
    --color-text: #1a1a1a;
    --color-gold: #b39b7d;
    --color-gold-light: #d6c5af;
    --color-dark: #2a2a2a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Mobile: Content First */
.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem 2rem 2rem;
    order: 1;
    /* By default content is 1, image is 2 for mobile */
}

.image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    order: 2;
}

.content-inner {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    animation: fadeUp 1s ease-out;
}

.supra-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.sub-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    border-left: 2px solid var(--color-gold);
    padding-left: 1rem;
}

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

.contact-link {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.contact-link:hover {
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-link svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.address-text {
    line-height: 1.5;
}

/* Image styling - Cool Frame */
.image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 4/5;
    animation: fadeIn 1.2s ease-out;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-gold);
    z-index: 0;
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.image-frame:hover::before {
    transform: translate(10px, 10px);
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    filter: contrast(105%);
}

/* Desktop Layout */
@media (min-width: 992px) {
    .container {
        flex-direction: row-reverse;
        /* Content on right, Image on left */
        min-height: 100vh;
    }

    .content-wrapper {
        padding: 2rem;
        order: unset;
    }

    .image-wrapper {
        padding: 2rem;
        order: unset;
    }

    .content-inner {
        margin: 0;
        margin-left: 1rem;
    }

    .main-title {
        font-size: 3.5rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}