/* -------------------------------------
   CSS VARIABLES & DESIGN SYSTEM
------------------------------------- */
:root {
    --bg-primary: #FFFFFF;
    --bg-secondary: #FCFAF5;
    
    --color-primary: #C9A227; /* Premium Gold */
    --color-primary-dark: #B68A35; /* Secondary Gold */
    
    --text-primary: #111111; /* Black */
    --text-secondary: #333333; /* Dark Charcoal */
    --text-light: #666666;
    
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(17, 17, 17, 0.12);
    --shadow-gold: 0 8px 24px rgba(201, 162, 39, 0.2);
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* -------------------------------------
   RESET & BASE STYLES
------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-family: var(--font-serif);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

p { margin-bottom: var(--spacing-sm); }
a { text-decoration: none; color: inherit; transition: var(--transition-normal); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.mt-auto { margin-top: auto; }

/* -------------------------------------
   BUTTONS
------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 162, 39, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

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

.btn-outline-gold:hover {
    background-color: var(--color-primary);
    color: var(--bg-primary);
}

.btn-white {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.btn-white:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* -------------------------------------
   LAYOUT & SECTIONS
------------------------------------- */
section {
    padding: var(--spacing-xs);
}

.section-bg-alt {
    background-color: var(--bg-secondary);
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.gold-line {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: var(--spacing-sm) auto var(--spacing-md);
    border-radius: 2px;
}

.gold-line.left {
    margin-left: 0;
}

/* -------------------------------------
   HEADER & NAVIGATION
------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition-normal);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    z-index: 1001;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.logo span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 600;
}

.desktop-nav ul {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    left: 0;
    transition: var(--transition-normal);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-primary);
    padding-top: 100px;
    transition: var(--transition-slow);
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-family: var(--font-serif);
}

/* -------------------------------------
   HERO SECTION
------------------------------------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px; /* Offset for header */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.doctor-name {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.main-headline {
    margin-bottom: var(--spacing-md);
}

.supporting-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 600px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
   
    position: relative;
   
}

/* Abstract design inside placeholder */
.image-placeholder::before {
    display: none;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 90%;
    background: var(--bg-primary);
    border-radius: 50% 50% 0 0;
    box-shadow: inset 0 20px 40px rgba(0,0,0,0.03);
}

.floating-badge {
    position: absolute;
    background: var(--bg-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(201, 162, 39, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.badge-icon {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.badge-1 {
    top: 57%;
    right: -5%;
    animation-delay: 0s;
}
.badge-2 { bottom: 15%; left: -10%; animation-delay: 2s; }


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* -------------------------------------
   EXPERTISE SECTION
------------------------------------- */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.expertise-card {
    background: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.expertise-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.2);
}

.expertise-card:hover::after {
    transform: scaleX(1);
}

.card-icon {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* -------------------------------------
   TREATMENT SECTIONS (Split Layout)
------------------------------------- */
.treatment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.reverse .treatment-container {
    direction: rtl;
}

.reverse .treatment-content,
.reverse .treatment-visual {
    direction: ltr;
}

.treatment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.treatment-visual {
    height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.abstract-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.root-canal-visual {
    background: radial-gradient(circle at center, #F4EEDF 0%, var(--bg-secondary) 100%);
}
.root-canal-visual::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 150px; height: 250px;

    border-radius: 40px;
}

.crowns-visual {
    background: linear-gradient(45deg, var(--bg-secondary) 0%, #F4EEDF 100%);
}




.gum-visual {
    background: radial-gradient(circle at top right, #F4EEDF 0%, var(--bg-secondary) 100%);
}



/* -------------------------------------
   PRICING TABLES & CARDS
------------------------------------- */
.pricing-table-wrapper {
    background: var(--bg-primary);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
    overflow-x: auto;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table th {
    text-align: left;
    padding: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--color-primary);
}

.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 500;
}

.price-highlight {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.includes-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.include-card {
    background: var(--bg-primary);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.include-check {
    color: var(--color-primary);
    background: rgba(201, 162, 39, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Crown Pricing Grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
}

.price-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg) var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    transition: var(--transition-normal);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.price-card h3 {
    margin-bottom: 1rem;
}

.price-amount {
    margin-top: auto;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.price-amount span {
    display: block;
    font-size: 1.8rem;
    color: var(--color-primary);
    font-family: var(--font-serif);
    margin-top: 0.5rem;
}

.popular-badge, .premium-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-badge {
    background: var(--color-primary);
}

/* Cleaning Cards */
.cleaning-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.large-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 162, 39, 0.1);
    display: flex;
    flex-direction: column;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1rem;
}

.card-header .price {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--color-primary);
    font-weight: 700;
}

.highlighted-treatment {
    background: var(--bg-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.highlighted-treatment .treatment-price {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    color: var(--text-primary);
    font-weight: 700;
}

/* -------------------------------------
   PAY LATER BANNER
------------------------------------- */
.pay-later-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: var(--spacing-lg) 0;
    color: var(--bg-primary);
}

.pay-later-banner h2 {
    color: var(--bg-primary);
}

.pay-later-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.pay-later-content {
    flex: 1;
    min-width: 300px;
}

/* -------------------------------------
   WHY AMC
------------------------------------- */
.why-amc-intro {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.trust-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: var(--shadow-sm);
}

.trust-number {
    font-size: 3.5rem;
    font-family: var(--font-serif);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-icon {
    color: #c9a227;
    font-size: 2.5rem;
    margin-bottom: 0rem;
}

.trust-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* -------------------------------------
   FAQ
------------------------------------- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition-normal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    padding: 0 1.5rem;
    background: var(--bg-secondary);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* arbitrary max-height for animation */
    padding: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* -------------------------------------
   FINAL CTA
------------------------------------- */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.cta-headline {
    margin-bottom: 1.5rem;
}

.cta-supporting {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.prominent-phone {
    font-size: 1.2rem;
    font-weight: 500;
}

.prominent-phone .phone-number {
    display: block;
    font-size: 2.5rem;
    font-family: var(--font-serif);
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* -------------------------------------
   FOOTER
------------------------------------- */
.footer {
    background-color: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
}

.footer-grid {
    align-items: center;
    display: grid;
   
}

.footer-brand h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-phone {
    margin-top: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.footer-phone a {
    color: var(--color-primary);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

/* -------------------------------------
   FLOATING ACTIONS
------------------------------------- */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.floating-btn svg {
    width: 24px;
    height: 24px;
}

.floating-book {
    background-color: #fff;
    color: var(--bg-primary);
    display: none;
}

.floating-book:hover {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.floating-call {
    display: none;
    background-color: #fff;
    color: var(--bg-primary);
}

.floating-call:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.1);
}

/* -------------------------------------
   ANIMATIONS & UTILITIES
------------------------------------- */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-delay {
    opacity: 0;
    transition: opacity 1s ease-out 0.4s;
}

.fade-in-delay.visible {
    opacity: 1;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* -------------------------------------
   RESPONSIVE DESIGN (Media Queries)
------------------------------------- */
@media (max-width: 1024px) {
    .hero-container,
    .treatment-container {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        height: 400px;
        order: -1; /* image on top on tablet */
    }
    
    .treatment-visual {
        order: -1;
        height: 350px;
    }
    
    .trust-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-cta,
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .floating-badge {
        padding: 0.5rem 1rem;
    }
    .badge-icon { font-size: 1.2rem; }
    .badge-text { font-size: 0.8rem; }
    
    .cleaning-cards {
        grid-template-columns: 1fr;
    }
    
    .highlighted-treatment {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .pricing-table-wrapper {
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .trust-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .pay-later-container {
        text-align: center;
        justify-content: center;
    }
}
.footer-bottom p {
    color: #fff;
}

.floating-social{
    position:fixed;
    right:25px;
    bottom:90px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.social-btn{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1d9d23;
    font-size:22px;
    text-decoration:none;
    box-shadow:0 8px 20px rgba(0,0,0,.18);
    transition:.35s;
}

.social-btn:hover{
    transform:translateY(-5px) scale(1.08);
}

.book{
    background:#c8a046;
}

.call{
    background:#111;
}



.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.linkedin{
    background:#0A66C2;
}

.youtube{
    background:#FF0000;
}

.email{
    background:#555;
}

/* Mobile */

@media(max-width:768px){

.floating-social{
    right:15px;
    bottom:15px;
}

.social-btn{
    width:48px;
    height:48px;
    font-size:18px;
}

}

.footer-social{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    margin:0 0 30px;
}

.footer-social a{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1.5px solid #c8a046;
    border-radius:50%;
    color:#c8a046;
    text-decoration:none;
    font-size:20px;
    transition:all .3s ease;
}

.footer-social a:hover{
    background:#c8a046;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 8px 20px rgba(200,160,70,.35);
}

/* Mobile Sticky Bottom Footer */
.mobile-bottom-bar{
    position:fixed !important;
    left:0;
    bottom:0;
    width:100%;
    height:75px;
    background:#1d1b1b;
    display:flex !important;
    justify-content:space-around;
    align-items:center;
    z-index:99999999 !important;
}


.mobile-bottom-bar .bottom-item{
    flex:1;
    text-align:center;
    text-decoration:none;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    font-family:Arial,sans-serif;
    font-size:14px;
    transition:.3s;
}

.mobile-bottom-bar .bottom-item i{
    font-size:24px;
    margin-bottom:6px;
}

.mobile-bottom-bar .bottom-item span{
    line-height:1.15;
    font-size:13px;
    font-weight:500;
}

.mobile-bottom-bar .bottom-item:hover{
    background:#2a2a2a;
}

.mobile-bottom-bar .whatsapp i{
    color:#25D366;
}

/* Show only on mobile */
@media screen and (max-width:767px){
    .mobile-bottom-bar{
        display:flex !important;
    }
}

@media screen and (min-width:768px){
    .mobile-bottom-bar{
        display:none !important;
    }
}

/* Prevent content from hiding behind footer */


@media(max-width:767px){
    .floating-social{
        display:none;
    }
}

.booking-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999999;
    padding:20px;
}

.booking-popup.active{
    display:flex;
}

.booking-box{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:15px;
    padding:30px 20px;
    position:relative;
    overflow-y:auto;
    max-height:90vh;
}

.booking-box h2{
    text-align:center;
    color:#c8a046;
    font-size:34px;
    margin-bottom:25px;
    font-family:'Playfair Display',serif;
}

.booking-box input,
.booking-box select,
.booking-box textarea{
    width:100%;
    height:52px;
    border:1px solid #ddd;
    margin-bottom:15px;
    padding:12px;
    font-size:16px;
    outline:none;
}

.booking-box textarea{
    height:140px;
    resize:none;
}

.submit-btn{
    width:100%;
    height:52px;
    background:#c8a046;
    color:#fff;
    border:none;
    cursor:pointer;
    font-size:18px;
    font-weight:600;
}

.close-popup{
    position:absolute;
    right:15px;
    top:15px;
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#c8a046;
    color:#fff;
    cursor:pointer;
    font-size:18px;
}

@media(min-width:768px){
    .booking-box{
        max-width:550px;
    }
}

.rct-section{
    padding:70px 20px;
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.rct-section .container{
    max-width:1200px;
    margin:auto;
}

.rct-section h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.rct-section p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:18px;
}

.table-responsive{
    width:100%;
    overflow:hidden;
}

.table-responsive table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.rct-section table th,
.rct-section table td{
    border:1px solid #d9d9d9;
    padding:18px;
    text-align:center;
    font-size:17px;
}

.rct-section table th{
    background:#f8f8f8;
    color:#111;
    font-weight:700;
}

.rct-section table tbody tr:nth-child(even){
    background:#fafafa;
}

.note{
    text-align:center;
    font-style:italic;
    margin-top:10px;
    color:#222;
}

.includes{
    margin-top:40px;
}

.includes h3{
    font-size:28px;
    margin-bottom:20px;
    color:#111;
}

.includes ul{
    list-style:none;
    padding:0;
    margin:0;
}

.includes li{
    position:relative;
    padding-left:28px;
    margin-bottom:14px;
    font-size:18px;
    color:#444;
}

.includes li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#b8860b;
    font-weight:bold;
}

/* Tablet */
@media(max-width:992px){

.rct-section{
    padding:60px 20px;
}

.rct-section h2{
    font-size:34px;
}

.rct-section p{
    font-size:17px;
}

.includes h3{
    font-size:24px;
}

}

/* Mobile */
@media(max-width:768px){

.rct-section{
    padding:50px 15px;
}

.rct-section h2{
    font-size:28px;
}

.rct-section p{
    font-size:16px;
    line-height:1.7;
}

.rct-section table th,
.rct-section table td{
    padding:14px;
    font-size:15px;
}

.includes h3{
    font-size:22px;
}

.includes li{
    font-size:16px;
}

.note{
    font-size:15px;
}

}

.crowns-section{
    padding:80px 20px;
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.crowns-section .container{
    max-width:1200px;
    margin:auto;
}

.crowns-section h2{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:25px;
}

.crowns-section p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:35px;
}

.table-responsive{
    overflow-x:auto;
}

.crowns-section table{
    width:100%;
    border-collapse:collapse;
    min-width:750px;
}

.crowns-section th,
.crowns-section td{
    border:1px solid #ddd;
    padding:18px;
    text-align:center;
    vertical-align:middle;
}

.crowns-section th{
    background:#f8f8f8;
    font-size:18px;
    font-weight:700;
}

.crowns-section td{
    font-size:16px;
    color:#444;
}

.crowns-section tbody tr:nth-child(even){
    background:#fafafa;
}

.benefits{
    margin-top:50px;
}

.benefits h3{
    font-size:30px;
    margin-bottom:20px;
    color:#111;
}

.benefits ul{
    list-style:none;
    padding:0;
    margin:0;
}

.benefits li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
    font-size:17px;
    color:#444;
    line-height:1.6;
}

.benefits li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:#c79c31;
    font-weight:bold;
}

/* Tablet */

@media (max-width:991px){

.crowns-section{
    padding:60px 20px;
}

.crowns-section h2{
    font-size:34px;
}

.crowns-section p{
    font-size:17px;
}

.benefits h3{
    font-size:26px;
}

}

/* Mobile */

@media (max-width:768px){

.crowns-section{
    padding:50px 15px;
}

.crowns-section h2{
    font-size:28px;
    line-height:1.3;
}

.crowns-section p{
    font-size:16px;
    line-height:1.7;
}

.crowns-section th,
.crowns-section td{
    padding:14px;
    font-size:15px;
}

.benefits h3{
    font-size:22px;
}

.benefits li{
    font-size:16px;
}

}

.gum-section{
    padding:80px 20px;
    background:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.gum-section .container{
    max-width:1200px;
    margin:auto;
}

.gum-section h2{
    font-size:42px;
    color:#111;
    margin-bottom:25px;
    font-weight:700;
}

.gum-section p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:18px;
}

.table-responsive{
    overflow-x:auto;
    margin:40px 0;
}

.gum-section table{
    width:100%;
    border-collapse:collapse;
    min-width:700px;
}

.gum-section th,
.gum-section td{
    border:1px solid #ddd;
    padding:18px;
    text-align:center;
    vertical-align:middle;
}

.gum-section th{
    background:#f8f8f8;
    font-size:18px;
    font-weight:700;
}

.gum-section td{
    font-size:16px;
    color:#444;
}

.gum-section tbody tr:nth-child(even){
    background:#fafafa;
}

.highlight-box{
    margin:40px 0;
    background:#fff8e8;
    border-left:5px solid #d4af37;
    padding:22px;
    border-radius:8px;
    font-size:18px;
    line-height:1.7;
    color:#333;
}

.highlight-box .price{
    display:block;
    margin-top:10px;
    font-size:24px;
    color:#b8860b;
    font-weight:700;
}

.benefits{
    margin-top:50px;
}

.benefits h3{
    font-size:30px;
    margin-bottom:20px;
    color:#111;
}

.benefits ul{
    list-style:none;
    padding:0;
}

.benefits li{
    position:relative;
    padding-left:30px;
    margin-bottom:15px;
    font-size:17px;
    line-height:1.6;
    color:#444;
}

.benefits li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#c79c31;
    font-weight:bold;
}

.payment-note{
    margin-top:40px;
    background:#f7f7f7;
    padding:20px;
    border-radius:8px;
    font-size:17px;
    color:#444;
    border:1px solid #e5e5e5;
}

/* Tablet */

@media (max-width:991px){

.gum-section{
    padding:60px 20px;
}

.gum-section h2{
    font-size:34px;
}

.gum-section p{
    font-size:17px;
}

.benefits h3{
    font-size:26px;
}

}

/* Mobile */

@media (max-width:768px){

.gum-section{
    padding:50px 15px;
}

.gum-section h2{
    font-size:28px;
    line-height:1.3;
}

.gum-section p{
    font-size:16px;
    line-height:1.7;
}

.gum-section th,
.gum-section td{
    padding:14px;
    font-size:15px;
}

.highlight-box{
    font-size:16px;
    padding:18px;
}

.highlight-box .price{
    font-size:22px;
}

.benefits h3{
    font-size:22px;
}

.benefits li{
    font-size:16px;
}

.payment-note{
    font-size:15px;
}

}
.whatsapp-btn{
    display:inline-block;
    padding:14px 30px;
    background:#c9a227;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.whatsapp-btn:hover{
    background:#1EBE5D;
    transform:translateY(-2px);
}

.rct-section{
    padding:60px 15px;
    background:#fff;
    font-family:Arial,Helvetica,sans-serif;
}

.rct-section .container{
    max-width:900px;
    margin:auto;
}

.rct-section h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:20px;
}

.rct-section p{
    font-size:17px;
    line-height:1.7;
    margin-bottom:15px;
    color:#333;
}

.price-table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
    margin:25px 0;
}

.price-table th,
.price-table td{
    border:1px solid #dcdcdc;
    padding:14px;
    text-align:center;
    font-size:16px;
}

.price-table th{
    background:#f8f8f8;
    font-weight:700;
}

.table-note{
    text-align:center;
    font-style:italic;
    font-weight:600;
}

.rct-section h3{
    margin-top:35px;
    margin-bottom:15px;
    font-size:24px;
}

.treatment-list{
    padding-left:20px;
}

.treatment-list li{
    margin-bottom:10px;
    line-height:1.6;
}

@media(max-width:768px){

.rct-section{
    padding:40px 12px;
}

.rct-section h2{
    font-size:28px;
}

.rct-section p{
    font-size:14px;
}

.price-table th,
.price-table td{
    padding:6px 4px;
    font-size:11px;
}

.rct-section h3{
    font-size:18px;
}

.treatment-list li{
    font-size:13px;
}

.table-note{
    font-size:12px;
}

}

.feature-card i{
    font-size:40px;
    color:#C89A2B;
    margin-bottom:18px;
    display:block;
}

.feature-card h4{
    margin-top:15px;
    font-size:18px;
    color:#222;
}

@media (max-width:768px){

.table-responsive table{
    width:100%;
    table-layout:fixed;
}

.table-responsive th,
.table-responsive td{
    padding:5px 3px;
    font-size:10px;
    line-height:1.25;
    word-break:break-word;
}

.table-responsive th:nth-child(1),
.table-responsive td:nth-child(1){
    width:25%;
}

.table-responsive th:nth-child(2),
.table-responsive td:nth-child(2){
    width:50%;
}

.table-responsive th:nth-child(3),
.table-responsive td:nth-child(3){
    width:25%;
}

}

.price-table{
    width:100%;
    margin:30px 0;
}

.price-table table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.price-table th,
.price-table td{
    border:1px solid #d9d9d9;
    text-align:center;
    vertical-align:middle;
    padding:14px 10px;
    word-break:break-word;
    overflow-wrap:break-word;
}

.price-table th{
    background:#f8f8f8;
    font-size:18px;
    font-weight:700;
}

.price-table td{
    font-size:16px;
    line-height:1.5;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1){
    width:25%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
    width:50%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3){
    width:25%;
}

@media (max-width:768px){

.price-table table{
    table-layout:fixed;
}

.price-table th{
    font-size:10px;
    padding:6px 2px;
}

.price-table td{
    font-size:9px;
    padding:6px 2px;
    line-height:1.25;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1){
    width:25%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
    width:50%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3){
    width:25%;
}

}

.price-table{
    width:100%;
    margin:35px 0;
}

.price-table table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

.price-table th,
.price-table td{
    border:1px solid #d8d8d8;
    text-align:center;
    vertical-align:middle;
    padding:14px 10px;
    word-break:break-word;
    overflow-wrap:break-word;
    white-space:normal;
}

.price-table th{
    background:#f8f8f8;
    font-size:18px;
    font-weight:700;
}

.price-table td{
    font-size:16px;
    line-height:1.5;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1){
    width:25%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
    width:50%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3){
    width:25%;
}

@media (max-width:768px){

                
    .whatsapp-btn {
    display: none;
    padding: 14px 30px;
    background: #c9a227;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.price-table{
    margin:25px 0;
}

.price-table table{
    table-layout:fixed;
}

.price-table th{
    font-size:10px;
    padding:6px 3px;
}

.price-table td{
    font-size:9px;
    padding:6px 3px;
    line-height:1.2;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1){
    width:25%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
    width:50%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3){
    width:25%;
}

}

.tooth-extraction{
    padding:70px 20px;
    background:#fff;
    font-family:Arial,Helvetica,sans-serif;
}

.tooth-extraction .container{
    max-width:1200px;
    margin:auto;
}

.tooth-extraction h2{
    font-size:42px;
    margin-bottom:20px;
    color:#111;
}

.tooth-extraction h3{
    margin:35px 0 15px;
    font-size:28px;
    color:#111;
}

.tooth-extraction p{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

.extraction-box{
    margin-top:35px;
}

.price-table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
    margin:25px 0;
}

.price-table th,
.price-table td{
    border:1px solid #d8d8d8;
    padding:14px 8px;
    text-align:center;
    vertical-align:middle;
    word-break:break-word;
    overflow-wrap:anywhere;
}

.price-table th{
    background:#f8f8f8;
    font-size:17px;
}

.price-table td{
    font-size:16px;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1){
    width:40%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
    width:30%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3){
    width:30%;
}

.note{
    text-align:center;
    font-style:italic;
    font-weight:600;
}

.payment-box{
    margin-top:40px;
    background:#f8f8f8;
    border-left:4px solid #c79c2d;
    padding:20px;
    border-radius:6px;
}

@media(max-width:768px){

.tooth-extraction{
    padding:45px 12px;
}

.tooth-extraction h2{
    font-size:28px;
}

.tooth-extraction h3{
    font-size:22px;
}

.tooth-extraction p{
    font-size:14px;
    line-height:1.6;
}

.price-table{
    table-layout:fixed;
}

.price-table th{
    font-size:10px;
    padding:6px 2px;
}

.price-table td{
    font-size:9px;
    padding:6px 2px;
    line-height:1.25;
}

.price-table th:nth-child(1),
.price-table td:nth-child(1){
    width:40%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2){
    width:30%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3){
    width:30%;
}

.note{
    font-size:12px;
}

.payment-box{
    font-size:13px;
}

}

.footer-grid{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:20px;
}

.footer-payment{
    display:block;
    width:150px;
    max-width:100%;
    margin:0 auto;
}
.footer-grid{
    display:grid;
   
    align-items:center;
}

.footer-payment{
    justify-self:center;
}

.footer-copy{
    justify-self:center;
}

.footer-social{
    justify-self:end;
}

.image-placeholder h3 {
    padding: 10px 10px;
    text-align: center;
}

/* Mobile Only - Center All Text */
@media (max-width: 767px) {

    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    li,
    a{
        text-align:center !important;
    }

    .container,
    .hero-content,
    .treatment-content,
    .section-header,
    .expertise-card,
    .trust-card,
    .faq-answer,
    .final-cta,
    .footer,
    .rct-section,
    .crowns-section,
    .gum-section,
    .tooth-extraction{
        text-align:center !important;
    }

    /* Center buttons */
    .hero-actions,
    .cta-actions{
        justify-content:center !important;
    }

    /* Center underline */
    .gold-line,
    .gold-line.left{
        margin:15px auto 25px !important;
    }

    /* Center lists */
    .includes ul,
    .benefits ul{
        padding:0 !important;
    }

    .includes li,
    .benefits li{
        padding-left:0 !important;
        text-align:center !important;
    }

    .includes li::before,
    .benefits li::before{
        display:none;
    }

}