/* Pacific Dental Lounge - Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --gold: #C9A96E;
    --gold-light: #D4B87A;
    --gold-dark: #B8965A;
    --dark: #1A1A1A;
    --darker: #0D0D0D;
    --charcoal: #2A2A2A;
    --white: #FFFFFF;
    --off-white: #F8F6F3;
    --cream: #F5F0EB;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --text-muted: #999999;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; }

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 40px; height: 40px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.logo-icon::before {
    content: '';
    width: 16px; height: 16px;
    border: 2px solid var(--gold);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: absolute;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--dark);
    letter-spacing: 1px;
}

.logo-text span { font-weight: 600; }

.nav { display: flex; align-items: center; gap: 40px; }

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold); }

.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--gold);
    transition: left 0.4s;
    z-index: 0;
}

.btn:hover::before { left: 0; }
.btn span { position: relative; z-index: 1; }

.btn-gold { background: var(--gold); }
.btn-gold::before { background: var(--dark); }

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
}

.btn-outline::before { background: var(--white); }
.btn-outline:hover span { color: var(--dark); }

.btn-sm { padding: 10px 24px; font-size: 11px; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--dark);
    transition: all 0.3s;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-nav.active { display: flex; }
.mobile-nav .nav-link { font-size: 18px; }
.mobile-nav .btn { margin-top: 20px; }

.close-menu {
    position: absolute;
    top: 30px; right: 40px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--dark);
}

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

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #E8E4DF 0%, #D5CFC8 50%, #C8C2BA 100%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1920&q=80') center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-subtitle {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Section Base */
.section { padding: 100px 40px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
}

.section-title em { font-style: italic; color: var(--gold); }

.section-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 700px;
}

/* Intro Section */
.intro-section { background: var(--off-white); padding: 120px 40px; }
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image { position: relative; overflow: hidden; }
.intro-image img {
    width: 100%; height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.intro-image:hover img { transform: scale(1.03); }

.intro-content { padding-right: 40px; }

/* Philosophy Section */
.philosophy-section { background: var(--dark); color: var(--white); padding: 0; }
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.philosophy-image { position: relative; overflow: hidden; }
.philosophy-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.philosophy-content .section-title { color: var(--white); font-size: 36px; }
.philosophy-content .section-text { color: rgba(255,255,255,0.7); }

/* Treatments Section */
.treatments-section { background: var(--darker); color: var(--white); padding: 100px 40px; }
.treatments-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.treatments-header .section-title { color: var(--white); }
.treatments-header .section-text { color: rgba(255,255,255,0.6); margin: 0 auto; }

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.05);
    max-width: 1200px;
    margin: 0 auto;
}

.treatment-card {
    background: var(--darker);
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.4s;
}

.treatment-card:hover::before { opacity: 0.05; }
.treatment-card:hover { transform: translateY(-5px); }

.treatment-icon {
    width: 80px; height: 80px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.treatment-icon svg {
    width: 100%; height: 100%;
    stroke: var(--gold);
    stroke-width: 1;
    fill: none;
}

.treatment-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.treatment-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.treatment-link {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.treatment-link:hover { gap: 12px; }

/* Emergency Section */
.emergency-section { background: var(--white); padding: 100px 40px; }
.emergency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.emergency-content { padding-right: 40px; }

.emergency-list {
    list-style: none;
    margin-top: 32px;
}

.emergency-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.emergency-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.emergency-image { position: relative; }
.emergency-image img { width: 100%; height: 500px; object-fit: cover; }

/* Team Gallery */
.team-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.team-gallery img { width: 100%; height: 500px; object-fit: cover; display: block; }

/* Premium Section */
.premium-section { background: var(--off-white); padding: 120px 40px; }
.premium-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.premium-item { position: relative; padding-left: 40px; }

.premium-item::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 24px; height: 1px;
    background: var(--gold);
}

.premium-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.premium-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Cosmetic Section */
.cosmetic-section { padding: 100px 40px; background: var(--white); }
.cosmetic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.cosmetic-images { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cosmetic-images img { width: 100%; height: 350px; object-fit: cover; }
.cosmetic-images img:first-child { grid-column: 1 / -1; height: 400px; }

/* DSD Section */
.dsd-section { background: var(--off-white); padding: 100px 40px; }
.dsd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

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

/* Media Section */
.media-section {
    background: var(--dark);
    color: var(--white);
    padding: 120px 40px;
    text-align: center;
}

.media-section .section-title { color: var(--white); }
.media-section .section-text { color: rgba(255,255,255,0.6); margin: 0 auto 60px; }

.media-image { max-width: 900px; margin: 0 auto; }
.media-image img { width: 100%; height: 500px; object-fit: cover; }

/* Contact CTA */
.contact-cta { background: var(--gold); text-align: center; }
.contact-cta .section-label { color: var(--dark); }
.contact-cta .section-title { color: var(--white); font-size: clamp(32px, 5vw, 56px); }
.contact-cta .section-text { color: rgba(255,255,255,0.8); margin: 0 auto 40px; max-width: 600px; }

/* Footer */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 80px 40px 40px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-title {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }

.footer-social { display: flex; gap: 20px; }

.footer-social a {
    width: 40px; height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ========================
   PAGE HEADER (Inner Pages)
   ======================== */
.page-header {
    padding: 180px 40px 80px;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://images.unsplash.com/photo-1629909615184-74f495363b67?w=1920&q=80') center/cover;
    opacity: 0.15;
}

.page-header-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.page-header .page-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.page-header .page-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header .page-title em { font-style: italic; color: var(--gold); }
.page-header .page-desc { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ========================
   ABOUT PAGE
   ======================== */
.about-intro { background: var(--white); padding: 100px 40px; }
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

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

.values-section { background: var(--off-white); padding: 100px 40px; }
.values-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s;
    border-bottom: 2px solid transparent;
}

.value-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); }

.value-card .value-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark);
}

.value-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.team-section { background: var(--white); padding: 100px 40px; }
.team-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.team-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}

.team-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.team-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-card .role {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.team-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ========================
   TREATMENTS PAGE
   ======================== */
.treatments-hero { background: var(--darker); padding: 100px 40px; }
.treatments-hero-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.treatments-hero-header .section-title { color: var(--white); }
.treatments-hero-header .section-text { color: rgba(255,255,255,0.6); margin: 0 auto; }

.treatment-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 100px 40px;
}

.treatment-detail-grid.reverse { direction: rtl; }
.treatment-detail-grid.reverse > * { direction: ltr; }

.treatment-detail-image img { width: 100%; height: 500px; object-fit: cover; }

.treatment-detail-content .section-label { margin-bottom: 16px; }
.treatment-detail-content .section-title { margin-bottom: 20px; }
.treatment-detail-content .section-text { margin-bottom: 16px; }

.treatment-features { list-style: none; margin: 24px 0; }
.treatment-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: var(--text-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.treatment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

/* ========================
   CONTACT PAGE
   ======================== */
.contact-section { background: var(--white); padding: 100px 40px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-form { background: var(--off-white); padding: 60px; }

.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    transition: border-color 0.3s;
}

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

.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info { padding-top: 20px; }

.contact-info-item { margin-bottom: 40px; }
.contact-info-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-item a:hover { color: var(--gold); }

.locations-section { background: var(--off-white); padding: 100px 40px; }
.locations-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }

.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    padding: 50px;
    text-align: center;
    transition: all 0.4s;
}

.location-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); }

.location-card .location-icon {
    width: 60px; height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: var(--gold);
}

.location-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--dark);
}

.location-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.location-card .location-phone {
    margin-top: 16px;
    font-size: 14px;
    color: var(--gold);
    font-weight: 500;
}

/* ========================
   BOOKING PAGE
   ======================== */
.booking-section { background: var(--white); padding: 100px 40px; }
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.booking-info { padding-top: 20px; }
.booking-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark);
}

.booking-info p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

.booking-steps { margin-top: 40px; }
.booking-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.booking-step-number {
    width: 40px; height: 40px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
}

.booking-step-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.booking-step-content p { font-size: 14px; color: var(--text-light); }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }

    .intro-grid, .philosophy-grid, .emergency-grid,
    .cosmetic-grid, .dsd-grid, .about-intro-grid,
    .treatment-detail-grid, .contact-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-grid { min-height: auto; }
    .philosophy-image { height: 400px; }
    .treatments-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .locations-grid { grid-template-columns: 1fr; }

    .intro-content, .emergency-content { padding-right: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .treatment-detail-grid.reverse { direction: ltr; }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 20px; }
    .section, .intro-section, .treatments-section,
    .emergency-section, .premium-section, .cosmetic-section,
    .dsd-section, .media-section, .about-intro,
    .values-section, .team-section, .contact-section,
    .locations-section, .booking-section { padding: 60px 20px; }

    .treatments-grid { grid-template-columns: 1fr; }
    .team-gallery { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .cosmetic-images { grid-template-columns: 1fr; }
    .cosmetic-images img:first-child { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .hero-title { font-size: 36px; }
    .page-header { padding: 140px 20px 60px; }
    .contact-form { padding: 30px; }
    .location-card { padding: 30px; }
}
