:root {
  --luxury-gold: #a08c5b;
  --luxury-brown: #8B7B4A;
  --luxury-bg: #f8f5ef;
  --luxury-white: #fff;
  --luxury-accent: #B8860B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--luxury-brown);
    background: var(--luxury-bg);
    padding: 0;
}

/* Remove or override other font-family: 'Georgia', serif; settings */
.hero-text h1,
.luxury-hero-text h1,
.luxury-hero-subtitle,
.luxury-hero-tagline,
.section-header h2,
.section-header p,
.benefit-card h3,
.benefit-card p,
.process-step h3,
.process-step p,
.veneers-step-title,
.veneers-step-desc,
.doctor-info h3,
.doctor-info p,
.doctor-credentials,
.testimonial-card,
.final-cta,
.cta-white,
.btn-primary,
.btn-secondary,
.luxury-hero-btn {
  font-family: 'Georgia', serif !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Logo Styles - Image Support */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo img {
    height: 90px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.logo-text {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4AF37;
}

.cta-btn {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fdfbf7 0%, #f7f3e9 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8B4513, #B8860B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: left;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .luxury-hero-btn {
    background: var(--luxury-gold);
    color: var(--luxury-white);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover, .luxury-hero-btn:hover {
    background: var(--luxury-brown);
    color: var(--luxury-white);
}
.btn-secondary {
    background: transparent;
    color: var(--luxury-gold);
    padding: 16px 32px;
    border: 2px solid var(--luxury-gold);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.btn-secondary:hover {
    background: var(--luxury-gold);
    color: var(--luxury-white);
}

.hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139,69,19,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: linear-gradient(135deg, #fff, #fdfbf7);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(212,175,55,0.1);
    animation: fadeInUp 0.6s ease-out forwards;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212,175,55,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    text-align: center;
}

/* Process Section */
.process {
    background: var(--luxury-bg);
    padding: 70px 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
    align-items: start;
    margin-top: 3rem;
}
.process-step {
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-align: center;
    padding: 0 10px;
}
.process-step .step-number {
    display: none;
}
.process-step .process-icon {
    font-size: 2.8rem;
    color: var(--luxury-gold);
    margin-bottom: 1.2rem;
    display: block;
}
.process-step h3 {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    color: #a08c5b;
    margin-bottom: 1rem;
    font-weight: 600;
}
.process-step p {
    color: #555;
    font-size: 1.08rem;
    line-height: 1.6;
    font-family: 'Georgia', serif;
}
.process-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: inline-block;
    margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Before-After Slider Polished Styles */
.slider-container12 {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
}
.slider12 {
  position: relative;
  width: 100%;
  height: 320px;
  min-height: 180px;
  user-select: none;
}
.slider12 img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.before12 {
  z-index: 1;
}
.after12 {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.2s cubic-bezier(.4,2,.6,1);
}
.slider-handle12 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.396);
  cursor: ew-resize;
  z-index: 3;
  transform: translateX(-50%);
  transition: left 0.2s cubic-bezier(.4,2,.6,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-handle12 i {
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  text-shadow: 0 2px 8px rgba(160,140,91,0.20);
  pointer-events: none;
}
.slider-handle12::after {
  content: '';
  display: block;
  width: 4px;
  height: 48px;
  background: rgba(160, 140, 91, 0.20);
  border-radius: 2px;
  margin: auto;
}
@media (max-width: 700px) {
  .slider12 {
    height: 180px;
  }
}

@media (min-width: 901px) {
  .slider-container12 {
    flex: 1 1 0;
    max-width: 33.33%;
    min-width: 0;
  }
  .slider12 {
    height: 220px;
  }
}

/* Before/After Gallery */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdfbf7, #ffffff);
}

.gallery .section-header h2 {
    color: #a08c5b;
}

/* Image Comparison Styles */
.grid-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .grid-container {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.img-comp-container {
    position: relative;
    width: 300px;
    height: 200px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.img-comp-img {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.img-comp-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 40px;
    height: 40px;
    background-color: #B8860B;
    opacity: 0.7;
    border-radius: 50%;
}

@media (max-width: 480px) {
    .img-comp-container {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
    .img-comp-slider {
        width: 35px;
        height: 35px;
    }
    .grid-container {
        gap: 15px;
    }
}

/* ff Section */
.doctor-section {
    padding: 80px 0;
    background: #fff;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.doctor-image {
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.doctor-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--luxury-gold);
    color: var(--luxury-white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.doctor-info h3 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.doctor-credentials {
    color: #D4AF37;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.doctor-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.credentials-list {
    list-style: none;
    margin-bottom: 2rem;
}

.credentials-list li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #fff, #fdfbf7);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-left: 4px solid #D4AF37;
    position: relative;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid #D4AF37;
}

.testimonial-author-info h5 {
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #8B4513;
}

.stars {
    color: #D4AF37;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--luxury-gold);
    color: var(--luxury-white);
    text-align: center;
}

.final-cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--luxury-white);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--luxury-white);
}

.final-cta .cta-white {
    background: var(--luxury-white);
    color: var(--luxury-gold);
    border: none;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 40px;
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(160,140,91,0.10);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    margin-top: 1.5rem;
}
.final-cta .cta-white:hover {
    background: var(--luxury-brown);
    color: var(--luxury-white);
    box-shadow: 0 8px 32px rgba(160,140,91,0.18);
}
.final-cta .cta-white i {
    font-size: 1.2em;
    margin-right: 8px;
}

/* General Footer Styles */
footer.desktop-footer {
    background: var(--luxury-brown);
    color: var(--luxury-white);
    padding: 2rem 0;
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 1rem;
}

/* Hide mobile footer by default */
.mobile-fixed-footer {
    display: none;
}

/* Responsive Settings */
@media (max-width: 767px) {
    footer.desktop-footer {
        display: none; /* Hide desktop footer on mobile */
    }

    .mobile-fixed-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--luxury-brown);
        color: var(--luxury-white);
        z-index: 9999;
    }

    .mobile-fixed-footer .container {
        display: flex;
        width: 100%;
        padding: 0;
    }

    .footer-btn {
        width: 50%;
        text-align: center;
        padding: 5px;
        border-right: 1px solid var(--luxury-white);
    }

    .footer-btn:last-child {
        border-right: none;
    }

    .footer-btn button,
    .footer-btn a {
        background: none;
        border: none;
        color: var(--luxury-white);
        font-weight: 500;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 10px 0;
        cursor: pointer;
    }

    .footer-btn a img {
        margin-right: 8px;
    }

    .footer-btn a span {
        border-bottom: 2px solid var(--luxury-white);
    }
}


/* === Mobile Footer Styles === */
@media only screen and (max-width: 767px) {
    .mobile-fixed-footer {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        background-color: var(--luxury-brown);
        color: var(--luxury-white);
        z-index: 9999;
    }
    .mobile-fixed-footer .container {
        display: flex;
        width: 100%;
        padding: 0;
    }
    .footer-btn {
        width: 50%;
        text-align: center;
        border-right: 2px solid var(--luxury-white);
    }
    .footer-btn:last-child {
        border-right: none;
    }
    .cta-white {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        color: var(--luxury-white);
        font-weight: 800;
        text-decoration: none;
        padding: 14px 0;
        font-size: 16px;
        background: none;
        border-bottom: none;
    }
    .cta-white i,
    .cta-white img {
        margin-right: 8px;
    }
    .cta-white span {
        display: inline-block;
        color: var(--luxury-white);
    }
    .mobile-fixed-footer .cta-white,
    .mobile-fixed-footer .cta-white span {
        color: var(--luxury-white) !important;
        font-size: 16px !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-weight: 800 !important;
    }
    .hide-on-mobile {
        display: none !important;
    }
    .cta-white {
        padding: 14px 0;
        font-size: 16px;
        max-width: 300px;
    }
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card:nth-child(1) { animation-delay: 0s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.4s; }
.benefit-card:nth-child(4) { animation-delay: 0.6s; }

/* MOBILE RESPONSIVENESS */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .doctor-content {
        gap: 3rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1001;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        padding: 15px;
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1002;
        background: none;
        border: none;
        margin-left: 10px;
    }
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 4px 0;
        border-radius: 2px;
        display: block;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Logo */
    .logo img {
        height: 65px;
        max-width: 220px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-image-container {
        height: 300px;
    }
    
    /* Sections */
    .benefits,
    .process,
    .gallery,
    .doctor-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .process-steps,
    .testimonial-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    /* Doctor Section */
    .doctor-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .doctor-image {
        order: -1;
    }
    
    .doctor-image img {
        height: 300px;
    }
    
    .doctor-info h3 {
        font-size: 1.8rem;
    }
    
    /* Testimonials */
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    /* CTA */
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    /* Image Comparison */
    .img-comp-container {
        width: 100%;
        max-width: 350px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    /* Header */
    nav {
        padding: 0.8rem 0;
    }
    
    .logo img {
        height: 55px;
        max-width: 180px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    /* Hero */
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-image-container {
        height: 250px;
    }
    
    /* Sections */
    .benefits,
    .process,
    .gallery,
    .doctor-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.3rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Process */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
    
    /* Gallery */
    .gallery-item img {
        height: 200px;
    }
    
    .gallery-overlay {
        padding: 1rem;
    }
    
    /* Doctor */
    .doctor-image img {
        height: 250px;
    }
    
    .doctor-info h3 {
        font-size: 1.5rem;
    }
    
    .doctor-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    /* CTA */
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .cta-white {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Image Comparison */
    .img-comp-container {
        width: 100%;
        max-width: 300px;
        height: 180px;
    }
    
    .img-comp-slider {
        width: 35px;
        height: 35px;
    }
    
    /* Grid Container */
    .grid-container {
        gap: 15px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .benefit-card,
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .cta-white {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .img-comp-container {
        height: 160px;
    }
}

/* Doctors Section */
.doctors-section {
    padding: 80px 0;
    background: #fff;
}
.doctors-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.doctor-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    max-width: 300px;
    width: 100%;
}
.doctor-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #D4AF37;
}
.doctor-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #8B4513;
}
.doctor-card p {
    color: #555;
    font-size: 1rem;
}
@media (max-width: 700px) {
    .doctors-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}

.luxury-hero, #home, .hero {
  background: #f7f3e9 !important;
  padding: 0 0 8px 0;
}
@media (max-width: 900px) {
  .luxury-hero, #home, .hero {
    padding: 0 0 4px 0;
  }
}
.luxury-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}
.luxury-hero-text {
    flex: 1 1 400px;
    max-width: 540px;
}
.luxury-hero-text h1 {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--luxury-brown);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: 'Georgia', serif;
}
.luxury-hero-subtitle {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #7a6a3a;
    margin-bottom: 1.2rem;
    font-family: 'Georgia', serif;
}
.luxury-hero-tagline {
    font-size: 1.3rem;
    color: #a08c5b;
    font-style: italic;
    margin-bottom: 2.2rem;
    font-family: 'Georgia', serif;
}
.luxury-hero-btn {
    background: var(--luxury-gold);
    color: var(--luxury-white);
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 4px 24px rgba(160,140,91,0.08);
    display: inline-block;
}
.luxury-hero-btn:hover {
    background: var(--luxury-brown);
}
.luxury-hero-image {
    flex: 1 1 350px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.luxury-hero-image img {
  display: block;
  max-height: 900px;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  margin-top: 10px;
}
@media (max-width: 900px) {
  .luxury-hero-image img {
    max-height: 520px;
    width: 100%;
    height: auto;
    margin-top: 10px;
  }
}

/* Modern Before-After Comparison Slider */
.img-compare-container {
  position: relative;
  width: 340px;
  max-width: 100%;
  height: 220px;
  margin: 1.5rem auto 2.5rem auto;
  background: var(--luxury-white, #fff);
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(160,140,91,0.10);
  overflow: hidden;
}
.img-compare-before,
.img-compare-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.img-compare-after-wrapper {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  border-right: 3px solid var(--luxury-gold, #D4AF37);
  transition: width 0.3s cubic-bezier(.4,2,.6,1);
  z-index: 2;
}
.img-compare-after {
  position: absolute;
  top: 0; left: 0;
}
.img-compare-container input[type=range] {
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;
  width: 100%;
  z-index: 3;
  accent-color: var(--luxury-gold, #D4AF37);
  background: transparent;
  height: 4px;
  border-radius: 2px;
}
.img-compare-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border: 3px solid var(--luxury-white, #fff);
  box-shadow: 0 2px 8px rgba(160,140,91,0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.img-compare-container input[type=range]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37, #B8860B);
  border: 3px solid var(--luxury-white, #fff);
  box-shadow: 0 2px 8px rgba(160,140,91,0.18);
  cursor: pointer;
  transition: background 0.2s;
}
.img-compare-container input[type=range]:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--luxury-gold, #D4AF37);
}
@media (max-width: 480px) {
  .img-compare-container {
    height: 150px;
  }
}

.veneers-process-structure {
  background: var(--luxury-bg, #f8f5ef);
  padding: 70px 0 40px 0;
}
.veneers-process-structure .section-header h2 {
  color: var(--luxury-gold, #a08c5b);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 1px;
}
.veneers-steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  align-items: stretch;
}
.veneers-step {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 10px;
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  text-align: center;
  position: relative;
  border-top: none;
  margin-bottom: 1.5rem;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.veneers-step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--luxury-gold, #a08c5b);
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 1.2rem auto;
  box-shadow: none;
}
.veneers-step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #a08c5b;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;

}
.veneers-step-desc {
  color: #555;
  font-size: 1.08rem;
  line-height: 1.6;
  font-family: 'Georgia', serif;
}
@media (max-width: 900px) {
  .veneers-steps {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 2rem;
  }
  .veneers-step {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    min-height: unset;
    display: block;
  }
}

.process-steps, .veneers-steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.process-step, .veneers-step {
  max-width: 320px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  margin-bottom: 1.5rem;
}
.process-step-number, .veneers-step-number {
  margin-bottom: 1.2rem;
}
.process-step-number img, .veneers-step-number img, .process-icon img {
  display: block;
  margin: 0 auto 1.2rem auto;
  max-width: 48px;
  height: 48px;
}
.logo img {
  max-width: 160px;
  height: auto;
}
@media (max-width: 900px) {
  .process-steps, .veneers-steps {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    margin-top: 2rem;
  }
  .process-step, .veneers-step {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    min-height: unset;
    display: block;
  }
}