/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

video {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Top Bar */
.top-bar {
    background: #002A66;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 1000;
}

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

.address-link {
    color: #fff;
    transition: color 0.3s;
    position: relative;
}

.address-link:hover {
    color: #4a90e2;
}

.top-bar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-consultation {
    background: #fff;
    color: #002A66;
    padding: 6px 14px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.btn-consultation:hover {
    background: #f0f0f0;
    color: #002A66;
}

.phone-link {
    background: #fff;
    color: #002A66;
    padding: 6px 14px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.phone-link:hover {
    background: #f0f0f0;
    color: #002A66;
}

/* Header */
.header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

/* All-On-4 page header - keep nav links black */
body:has(.all-on-4-hero) .header .main-nav a {
    color: #1a1a1a;
}

body:has(.all-on-4-hero) .header .dropdown a {
    color: #1a1a1a;
}

body:has(.all-on-4-hero) .header .mega-menu-item a {
    color: #1a1a1a;
}

/* When scrolled on All-On-4 page */
.header.all-on-4-scrolled {
    background: rgba(0, 42, 102, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header.all-on-4-scrolled .main-nav a {
    color: #1a1a1a;
}

.header.all-on-4-scrolled .dropdown a {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .header {
        top: 60px;
    }
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(0, 42, 102, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease, top 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 12px 0;
}

.logo img {
    height: 90px;
    width: auto;
    transition: height 0.3s;
    border-radius: 0;
    box-shadow: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-nav a {
    color: #1a1a1a;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s;
    position: relative;
    font-size: 14px;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a i {
    font-size: 12px;
    transition: transform 0.3s;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.header.scrolled .main-nav a {
    color: #1a1a1a;
}

.main-nav a:hover {
    color: #002A66;
}

.header.scrolled .main-nav a:hover {
    color: #002A66;
}

.main-nav a.active {
    color: #002A66;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.header.scrolled .main-nav a.active {
    color: #002A66;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
    border-radius: 4px;
    margin-top: 5px;
    display: flex;
    flex-direction: column;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.dropdown-item {
    transition: all 0.3s ease;
    width: 100%;
}

.dropdown-item:hover {
    letter-spacing: 0.50px;
    transition: all 0.3s ease;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.dropdown-item:hover a {
    font-weight: 500 !important;
    color: #002A66 !important;
    transition: color 0.3s ease;
}

/* Mega Menu (Implants) */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 300px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-radius: 4px;
    margin-top: 5px;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.mega-menu-item {
    padding: 0;
    margin: 0;
    width: 100%;
}

.mega-menu-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px 10px 10px;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mega-menu-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.mega-menu-icon svg {
    width: 30px;
    height: 30px;
    fill: #002A66;
    transition: fill 0.3s ease;
}

.mega-menu-text {
    transition: color 0.3s ease;
}

.mega-menu-item:hover .mega-menu-icon svg {
    fill: #4a90e2;
}

.mega-menu-item:hover .mega-menu-text {
    color: #002A66;
}

.mega-menu-item:hover a {
    transform: scale(1.03);
    transform-origin: left center;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone-icon {
    font-size: 20px;
    color: #fff;
    transition: color 0.3s;
}

.phone-icon:hover {
    color: #357abd;
}

.btn-book {
    background: #fff;
    color: #002A66;
    padding: 9px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-book:hover {
    background: #f0f0f0;
    color: #002A66;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: all 0.3s;
    border-radius: 2px;
}

.header.scrolled .mobile-menu-toggle .hamburger {
    background: #1a1a1a;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo img {
    height: 60px;
    width: auto;
    border-radius: 0;
    box-shadow: none;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #1a1a1a;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.mobile-menu-close:hover {
    color: #002A66;
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
}

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

.mobile-nav > ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(0, 42, 102, 0.1);
    color: #002A66;
}

.mobile-nav a i {
    font-size: 14px;
    transition: transform 0.3s;
}

.mobile-has-dropdown.active > a i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 42, 102, 0.05);
}

.mobile-has-dropdown.active .mobile-dropdown {
    max-height: 500px;
}

.mobile-dropdown li {
    border-bottom: none;
}

.mobile-dropdown a {
    padding-left: 40px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-footer .btn-primary,
.mobile-menu-footer .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}

/* Hero Section */
.hero {
    color: #fff;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeInDown 1s ease-out;
    margin-top: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animated-slow {
    animation: fadeIn 1.5s ease-out;
}

.hero-content h1.animated-slow {
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.3s both;
}

.hero-content h2.animated-slow {
    opacity: 0;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

.hero-stats.animated-slow {
    opacity: 0;
    animation: zoomIn 1s ease-out 0.7s both;
}

.hero-cta {
    opacity: 0;
    animation: fadeIn 1s ease-out 0.9s both;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    border-radius: 0;
    box-shadow: none;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.gradient-txt {
    background: linear-gradient(90deg, #4a90e2 0%, #002A66 50%, #4a90e2 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 700;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.typewriter-text {
    position: relative;
}

.typewriter-text::after {
    content: '|';
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
    color: #002A66;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 50px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 50px 0;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.4);
    padding: 30px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: transparent;
    padding: 0 30px;
    flex: 1;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 75%;
    background: #002A66;
    opacity: 0.6;
}

.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-icon svg path {
    fill: #002A66;
}

.stat-txt {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
}

.btn-primary:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

.btn-secondary {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #002A66;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
}

.btn-secondary:hover {
    background: #003d99;
    border-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

/* Restore Confidence Section */
.restore-confidence {
    padding: 80px 0;
    background: #fff;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-text {
    position: relative;
}

.content-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.5px;
    padding: 0;
}

.content-text h2 .blue-text {
    color: #4a90e2;
}

.image-placeholder {
    float: right;
    margin: 0 0 20px 30px;
    width: 45%;
    max-width: 500px;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    text-align: left;
    padding: 0;
}

.content-text::after {
    content: "";
    display: table;
    clear: both;
}

.links-section {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    clear: both;
    padding: 0;
}

.link-box {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
    border: none;
    line-height: 1.4;
}

.link-box:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

/* Google Reviews Section */
.google-reviews {
    padding: 60px 0;
    background: #e8f0f8;
}

.google-reviews .google-rating-header {
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
}

.google-reviews .google-rating-header strong {
    font-weight: 600;
}

.reviews-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.reviews-slides {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: fit-content;
}

.review-slide {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    box-sizing: border-box;
    width: 280px;
}

.review-item {
    background: #e8f4f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reviewer-avatar-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.google-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.review-date {
    font-size: 14px;
    color: #666;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.review-stars .star {
    color: #FFB800;
    font-size: 18px;
    line-height: 1;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
    flex-grow: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.read-more {
    background: none;
    border: none;
    color: #4a90e2;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more:hover {
    color: #357abd;
}

.reviews-prev,
.reviews-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reviews-prev {
    left: 10px;
}

.reviews-next {
    right: 10px;
}

.reviews-prev:hover,
.reviews-next:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.google-rating {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.google-rating strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* As Seen On & Video Carousel Section */
.as-seen-on-video {
    padding: 15px 0;
    background: #f8f9fa;
    text-align: center;
}

.as-seen-on-video h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.tv-logos {
    margin-bottom: 40px;
}

.tv-logos img {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.video-carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: fit-content;
}

.slide {
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    position: relative;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.play-button i {
    font-size: 28px;
    color: #667eea;
    margin-left: 4px;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    color: #666;
}

.carousel-prev {
    left: -60px;
}

.carousel-next {
    right: -60px;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.dot:hover {
    background: #999;
}

.dot.active {
    background: #4a90e2;
    width: 24px;
    border-radius: 5px;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 95%;
    max-width: 1600px;
    padding: 20px;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: #ccc;
}

.video-modal-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-modal-embed iframe,
.video-modal-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Why Birmingham Section */
.why-birmingham {
    padding: 60px 0 40px;
    background: #e8f0f8;
}

.why-birmingham-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.why-video-wrapper {
    flex: 0 0 45%;
}

.why-video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.why-video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.why-video-thumbnail .play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.why-video-thumbnail .play-button i {
    font-size: 28px;
    color: #667eea;
    margin-left: 4px;
}

.video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.overlay-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.overlay-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.overlay-contact {
    font-size: 14px;
    opacity: 0.9;
}

.why-text-content {
    flex: 1;
    text-align: left;
    padding-top: 10px;
}

.why-text-content .features-list {
    margin: 30px 0 0 0;
    padding: 0;
    max-width: 100%;
    list-style: none;
}

.features-list-fullwidth {
    margin: 40px auto 0;
    padding: 0 20px;
    max-width: 1200px;
    list-style: none;
}

.why-text-content .features-list li,
.features-list-fullwidth li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
    padding-left: 22px;
    position: relative;
}

.why-text-content .features-list li::before,
.features-list-fullwidth li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #4a90e2;
}

.why-text-content .features-list li span,
.features-list-fullwidth li span {
    font-weight: 600;
}

.why-text-content .features-list li a,
.features-list-fullwidth li a {
    color: #4a90e2;
    text-decoration: none;
}

.why-text-content .features-list li a:hover,
.features-list-fullwidth li a:hover {
    text-decoration: underline;
}

.why-birmingham h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.2;
}

.why-birmingham h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 0;
    color: #333;
    line-height: 1.4;
    position: relative;
}

.why-birmingham h3::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, transparent);
    margin-top: 10px;
}


/* Responsive for Why Birmingham */
@media (max-width: 968px) {
    .why-birmingham-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-video-wrapper {
        flex: 1 1 100%;
    }
    
    .why-text-content {
        text-align: center;
    }
    
    .why-text-content .features-list {
        text-align: left;
    }
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

/* Before & After Carousel Section */
.before-after-section {
    padding: 40px 0;
    background: #e8f0f8;
}

.before-after-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.before-after-carousel .carousel-slides {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.before-after-carousel .slide {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    min-width: calc((100% - 40px) / 3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.before-after-carousel .slide img {
    width: 100%;
    height: auto;
    display: block;
}

.before-label,
.after-label {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.before-label {
    left: 15px;
}

.after-label {
    right: 15px;
}

.before-after-carousel .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.before-after-carousel .play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.before-after-carousel .play-button i {
    font-size: 20px;
    color: #4a90e2;
    margin-left: 3px;
}

.before-after-carousel .carousel-prev,
.before-after-carousel .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    color: #666;
}

.before-after-carousel .carousel-prev {
    left: -60px;
}

.before-after-carousel .carousel-next {
    right: -60px;
}

.before-after-carousel .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.before-after-carousel .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.before-after-carousel .dot.active {
    width: 24px;
    border-radius: 5px;
    background: #4a90e2;
}

/* You Pay Less Section */
.you-pay-less {
    padding: 40px 0;
    background: #e8f0f8;
}

.you-pay-less-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.you-pay-less-text {
    flex: 0 0 45%;
    text-align: left;
}

.you-pay-less h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.3;
}

.you-pay-less .accent-text {
    color: #4a90e2;
}

.you-pay-less p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.you-pay-less .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.you-pay-less .btn-primary {
    background: #002A66;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.you-pay-less .btn-primary:hover {
    background: #001a4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,42,102,0.3);
}

.you-pay-less .btn-secondary {
    background: transparent;
    color: #002A66;
    border: 2px solid #002A66;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.you-pay-less .btn-secondary:hover {
    background: #002A66;
    color: #fff;
}

.pricing-table-wrapper {
    flex: 1;
    text-align: center;
}

.pricing-table-desktop {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-table-mobile {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Special Offer Section */
.special-offer {
    padding: 60px 0;
    background: #e8f0f8;
    color: #fff;
    text-align: center;
    position: relative;
}

.special-offer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.special-offer-content {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: #002A66;
    padding: 50px 40px 40px;
    border-radius: 8px;
}

.special-ribbon {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #4169E1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 2;
}

.ribbon-star {
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

.special-offer h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    margin-top: 20px;
    color: #fff;
    line-height: 1.2;
}

.special-offer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #fff;
    padding: 0 10px;
}

.special-offer .highlight-text {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
}

.special-offer .last-day-of-month {
    font-weight: 600;
}

.special-offer .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.special-offer .btn-primary {
    background: #fff;
    color: #002A66;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.special-offer .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,255,255,0.3);
}

.special-offer .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.special-offer .btn-secondary:hover {
    background: #fff;
    color: #002A66;
}

@media (max-width: 968px) {
    .you-pay-less-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .you-pay-less-text {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .you-pay-less .cta-buttons {
        align-items: center;
    }
    
    .pricing-table-desktop {
        display: none;
    }
    
    .pricing-table-mobile {
        display: block;
    }
    
    .before-after-carousel .carousel-prev {
        left: 10px;
    }
    
    .before-after-carousel .carousel-next {
        right: 10px;
    }
}

/* Meet Doctor Section */
.meet-doctor {
    padding: 80px 0;
    background: #fff;
}

.doctor-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.doctor-text {
    order: 1;
}

.doctor-image {
    order: 2;
}

.doctor-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.doctor-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.doctor-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.doctor-divider {
    width: 60px;
    height: 2px;
    background: #4a90e2;
    margin-bottom: 25px;
}

.doctor-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.doctor-text a {
    color: #4a90e2;
    text-decoration: underline;
    font-family: 'Montserrat', sans-serif;
}

/* Dream Smile Section */
.dream-smile {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.dream-smile h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.2;
}

.dream-smile h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #4a90e2;
    line-height: 1.4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-icon {
    margin-bottom: 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.service-icon svg {
    width: 100px;
    height: 100px;
    display: block;
    fill: #1a1a1a;
}

.service-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    line-height: 1.3;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    flex-grow: 1;
}

.service-card .btn-link {
    display: inline-block;
    padding: 12px 24px;
    background: #f5f5f5;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
    align-self: flex-start;
    cursor: pointer;
}

.service-card .btn-link:hover {
    background: #e8e8e8;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* Life-Changing Results Section */
.life-changing-results {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.life-changing-results h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
    color: #1a1a1a;
}

.faq-section .faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #002A66;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.faq-section .faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .faq-item {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    min-height: auto;
    display: block;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq-section .faq-item summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-section .faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-section .faq-item summary::after {
    content: '▶';
    position: absolute;
    right: 0;
    top: 20px;
    color: #1a1a1a;
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-section .faq-item[open] summary::after {
    transform: rotate(90deg);
}

.faq-section .faq-item .faq-answer {
    padding: 0 0 25px 0;
}

.faq-section .faq-item .faq-answer p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.faq-section .faq-item .faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-section .faq-item .faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-section .faq-item .faq-answer li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
}

.faq-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: #002A66;
}

.faq-section .subtitle {
    text-align: center;
    margin-bottom: 50px;
}

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

.faq-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.4;
}

.watch-video {
    background: #002A66;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
}

.watch-video:hover {
    background: #003d99;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.accordion-icon {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: inline-block;
}

.accordion-item.active .accordion-icon {
    transform: rotate(90deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 30px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.accordion-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Consultation CTA Section */
.consultation-cta {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.consultation-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.consultation-cta h2 .accent-text {
    color: #4a90e2;
}

.consultation-cta p {
    font-size: 20px;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
}

.consultation-cta p .accent-underline {
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #4a90e2;
    text-underline-offset: 2px;
}

.consultation-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #e8f0f8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consultation-header {
    background: #002A66;
    color: #fff;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consultation-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.btn-book-now {
    background: #fff;
    color: #002A66;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: 2px solid #002A66;
}

.btn-book-now:hover {
    background: #002A66;
    color: #fff;
    border-color: #fff;
}

.consultation-body {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    align-items: stretch;
}

.hours-section {
    padding: 40px 30px;
    background: #e8f0f8;
}

.hours-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    padding: 12px 0;
    border-bottom: 1px solid #d0d0d0;
    width: 100%;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    font-weight: 600;
}

.hours-item span:last-child {
    font-weight: 400;
}

.map-section {
    height: 100%;
    min-height: 400px;
    width: 100%;
    background: #e8f0f8;
    position: relative;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Footer */
.footer {
    background: #fff;
    color: #1a1a1a;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section {
    text-align: center;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-section ul li a i {
    color: #002A66;
    width: 20px;
}

.footer-section a {
    color: #1a1a1a;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.footer-section a:hover {
    color: #4a90e2;
}

.footer-section .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #002A66;
    color: #002A66;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s;
}

.footer-section .btn-link:hover {
    background: #002A66;
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #002A66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #002A66;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #002A66;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    color: #1a1a1a;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: #1a1a1a;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #4a90e2;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #357abd;
    transform: translateY(-5px);
}

/* Special Offer Badge */
.special-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #002A66;
    border-radius: 8px;
    max-width: 320px;
    box-shadow: 0px 10px 30px -5px rgba(0,0,0,0.3);
    z-index: 10000;
    overflow: visible;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
    animation: fadeIn 1s ease-out 1.5s both;
    padding-top: 0;
}

.special-badge.hidden {
    display: none;
}

.badge-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255,255,255,0.2);
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.badge-close:hover {
    background: rgba(255,255,255,0.3);
    color: #fff;
}

.badge-header {
    background: #4169E1;
    color: #fff;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 6px 6px 0 0;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.badge-header::before {
    content: '★';
    font-size: 12px;
}

.badge-body {
    padding: 28px 20px;
    background: #002A66;
    border-radius: 8px;
    margin-top: 4px;
}

.badge-body p {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    letter-spacing: 0.3px;
}

.badge-main-text {
    font-size: 20px;
    color: #fff;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 12px;
}

.badge-sub-text {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .header {
        top: 60px;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .hero {
        padding: 120px 0 80px;
        min-height: 500px;
    }

    .as-seen-on-video .play-button {
        width: 60px;
        height: 60px;
    }

    .as-seen-on-video .play-button i {
        font-size: 21px;
    }

    .before-label,
    .after-label {
        font-size: 11px;
        padding: 5px 10px;
        top: 10px;
        letter-spacing: 0.3px;
        background: rgba(0,0,0,0.85);
    }

    .before-label {
        left: 10px;
    }

    .after-label {
        right: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .doctor-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 30px 20px;
        min-height: 180px;
    }

    .faq-item h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .watch-video {
        font-size: 14px;
        padding: 12px 24px;
    }

    .accordion-header {
        padding: 20px;
    }

    .accordion-header h4 {
        font-size: 18px;
    }

    .accordion-content {
        padding: 0 20px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 20px 20px 20px;
    }

    .reviews-prev {
        left: 10px;
    }

    .reviews-next {
        right: 10px;
    }

    .modal-content {
        margin: 20px;
        padding: 30px 20px;
    }

    /* Special Offer Section */
    .special-offer {
        padding: 40px 0;
    }

    .special-offer-content {
        width: 95%;
        padding: 40px 20px 30px;
    }

    .special-offer h3 {
        font-size: 32px;
        margin-bottom: 20px;
        margin-top: 15px;
    }

    .special-offer p {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0;
    }

    .special-offer .cta-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .special-offer .btn-primary,
    .special-offer .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Dream Smile Section */
    .dream-smile {
        padding: 60px 0;
    }

    .dream-smile h2 {
        font-size: 32px;
    }

    .dream-smile h3 {
        font-size: 18px;
        margin-bottom: 40px;
    }

    /* Meet Doctor Section */
    .meet-doctor {
        padding: 60px 0;
    }

    .doctor-text h2 {
        font-size: 36px;
    }

    .doctor-text h3 {
        font-size: 18px;
    }

    .doctor-text p {
        font-size: 15px;
    }

    /* You Pay Less Section */
    .you-pay-less {
        padding: 40px 0;
    }

    .you-pay-less h2 {
        font-size: 32px;
    }

    .you-pay-less p {
        font-size: 16px;
    }

    /* Why Birmingham Section */
    .why-birmingham {
        padding: 40px 0;
    }

    .why-birmingham h2 {
        font-size: 32px;
    }

    .why-birmingham h3 {
        font-size: 20px;
    }

    /* Special Badge */
    .special-badge {
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .badge-main-text {
        font-size: 18px;
    }

    .badge-sub-text {
        font-size: 14px;
    }

    /* Back to Top Button */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Photo Collage */
    .photo-collage-section {
        padding: 0;
    }

    /* Common Button Styles */
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Form Elements */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Container padding */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Additional mobile styles for very small screens */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    .special-offer h3 {
        font-size: 28px;
    }

    .special-offer-content {
        padding: 30px 15px 25px;
    }

    .special-ribbon {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .ribbon-star {
        font-size: 28px;
    }

    .contact-hero-heading h1 {
        font-size: 28px;
    }

    .life-changing-results {
        padding: 40px 0;
    }

    .life-changing-results .container {
        padding: 0 15px;
    }

    .life-changing-results h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .life-changing-results .results-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .results-grid {
        gap: 15px;
        margin-bottom: 30px;
    }

    .results-cta {
        gap: 12px;
    }

    .results-cta .btn-primary {
        max-width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }

    .dream-smile h2 {
        font-size: 28px;
    }

    .you-pay-less h2 {
        font-size: 28px;
    }

    .why-birmingham h2 {
        font-size: 28px;
    }

    .faq-grid {
        margin-bottom: 30px;
    }

    .faq-item {
        padding: 18px 0;
    }

    .faq-item h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .watch-video {
        font-size: 12px;
        padding: 8px 16px;
    }
}

/* Life-Changing Results Section */
.life-changing-results {
    background: #e8f0f8;
    padding: 80px 0;
}

.life-changing-results .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.life-changing-results h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 15px;
}

.life-changing-results .results-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.result-item {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.result-item img {
    width: 100%;
    height: auto;
    display: block;
}

.results-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.results-cta .btn-primary {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.results-image {
    max-width: 800px;
    margin: 40px auto 0;
}

.results-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .life-changing-results {
        padding: 60px 0;
    }

    .life-changing-results .container {
        padding: 0 20px;
    }

    .life-changing-results h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .life-changing-results .results-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
        margin-left: 0;
        margin-right: 0;
    }

    .result-item {
        margin: 0;
        width: 100%;
    }

    .results-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 0;
    }

    .results-cta .btn-primary {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }

    .consultation-cta h2 {
        font-size: 36px;
    }

    .consultation-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .consultation-header h2 {
        font-size: 24px;
    }

    .consultation-body {
        grid-template-columns: 1fr;
    }

    .hours-section {
        padding: 30px 20px;
    }

    .hours-section h3 {
        font-size: 20px;
        text-align: center;
    }

    .map-section {
        height: 300px;
        min-height: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Team Page Responsive */
    .team-page-header {
        padding: 80px 0 40px;
    }

    .team-page-header h1 {
        font-size: 36px;
    }

    .team-doctor-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-doctor-image {
        text-align: center;
    }

    .team-doctor-image img {
        max-width: 250px;
    }

    .team-doctor-text h2 {
        font-size: 28px;
    }

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

    .team-about-section p {
        font-size: 16px;
    }

    .team-staff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-member-card img {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .team-staff-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Team Page Styles */
.team-page-header {
    padding: 394px 0 263px;
    background: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2025/10/Team-hortizonal-16x9-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.team-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.team-page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.team-doctor-section {
    padding: 60px 0;
    background: #fff;
}

.team-doctor-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.team-doctor-image {
    text-align: center;
}

.team-doctor-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-doctor-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.team-doctor-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.team-doctor-text strong {
    font-weight: 600;
    color: #1a1a1a;
}

.doctor-qualifications {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e8f0f8;
}

.doctor-qualifications h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.doctor-qualifications li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.doctor-qualifications li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-size: 24px;
    line-height: 1;
}

.team-about-section {
    padding: 60px 0;
    background: #e8f0f8;
    text-align: center;
}

.team-about-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.2;
}

.team-about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

.team-staff-section {
    padding: 80px 0;
    background: #fff;
}

.team-staff-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
}

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

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

.team-member-card img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.team-member-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.team-member-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #666;
}

/* Photo Collage Section */
.photo-collage-section {
    padding: 0;
    background: #fff;
    width: 100%;
}

.photo-collage-section .container {
    max-width: 100%;
    padding: 0;
}

.photo-collage-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* Smile Gallery Page Styles */
.smile-gallery-header {
    padding: 197px 0 132px;
    background: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.smile-gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

.smile-gallery-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.smile-gallery-header .container {
    position: relative;
    z-index: 2;
}

.smile-gallery-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.smile-gallery-header .header-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.gallery-nav-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.gallery-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-nav-btn {
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.gallery-nav-btn:hover,
.gallery-nav-btn.active {
    color: #002A66;
    background: #e8f0f8;
    border-color: #002A66;
}

.before-after-gallery-section {
    padding: 80px 0;
    background: #fff;
}

.before-after-gallery-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gallery-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item .before-label,
.gallery-item .after-label {
    position: absolute;
    top: 15px;
    padding: 6px 14px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-item .before-label {
    left: 15px;
}

.gallery-item .after-label {
    right: 15px;
}

.gallery-item-last {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.video-case-studies-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.video-case-studies-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.video-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    aspect-ratio: 16 / 9;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
}

.video-placeholder i {
    font-size: 60px;
    color: #002A66;
    margin-bottom: 15px;
}

.video-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.video-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Responsive Styles for Smile Gallery */
@media (max-width: 768px) {
    .smile-gallery-header {
        padding: 90px 0 50px;
    }

    .smile-gallery-header h1 {
        font-size: 36px;
    }

    .smile-gallery-header .header-subtitle {
        font-size: 18px;
    }

    .gallery-nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gallery-nav-btn {
        width: 100%;
        max-width: 300px;
    }

    .before-after-gallery-section h2,
    .video-case-studies-section h2 {
        font-size: 28px;
    }

    .gallery-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item-last {
        max-width: 100%;
    }

    .video-cta {
        flex-direction: column;
        align-items: center;
    }

    .video-cta .btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .gallery-item .before-label,
    .gallery-item .after-label {
        font-size: 11px;
        padding: 5px 10px;
        top: 10px;
    }

    .gallery-item .before-label {
        left: 10px;
    }

    .gallery-item .after-label {
        right: 10px;
    }
}

/* Technology Page Styles */
.technology-header {
    padding: 197px 0 132px;
    background: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.technology-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

.technology-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.technology-header .container {
    position: relative;
    z-index: 2;
}

.technology-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.technology-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.technology-intro {
    padding: 60px 0;
    background: #fff;
}

.intro-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    position: relative;
}

.intro-image img,
.intro-image video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.intro-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.technology-tabs-section {
    padding: 60px 0;
    background: #e8f0f8;
}

.technology-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tech-tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.tech-tab-btn {
    padding: 15px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #002A66;
    background: #fff;
    border: 2px solid #002A66;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-align: center;
}

.tech-tab-btn:hover {
    color: #fff;
    background: #002A66;
    border-color: #002A66;
}

.tech-tab-btn.active {
    color: #fff;
    background: #002A66;
    border-color: #002A66;
}

.tech-tabs-content {
    position: relative;
    min-height: 400px;
}

.tech-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.tech-tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tech-image {
    position: sticky;
    top: 20px;
}

.tech-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tech-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.tech-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.tech-text ol,
.tech-text ul {
    margin: 20px 0;
    padding-left: 25px;
}

.tech-text li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.tech-text strong {
    color: #002A66;
    font-weight: 600;
}

/* Responsive Styles for Technology Page */
@media (max-width: 992px) {
    .tech-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tech-image {
        position: static;
    }
}

@media (max-width: 768px) {
    .technology-header {
        padding: 90px 0 50px;
    }

    .technology-header h1 {
        font-size: 36px;
    }

    .technology-header h2 {
        font-size: 20px;
    }

    .technology-intro {
        padding: 40px 20px;
    }

    .intro-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-text h3 {
        font-size: 28px;
    }

    .intro-text p {
        font-size: 16px;
    }

    .tech-tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-tabs-nav {
        grid-template-columns: 1fr;
    }

    .tech-content-wrapper {
        padding: 30px 20px;
    }

    .tech-text h3 {
        font-size: 28px;
    }

    .tech-text p,
    .tech-text li {
        font-size: 15px;
    }
}

/* Sedation Dentistry Page Styles */
.sedation-header {
    padding: 98px 0 66px;
    background: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.sedation-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    pointer-events: none;
    z-index: 1;
}

.sedation-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 1;
}

.sedation-header .container {
    position: relative;
    z-index: 2;
}

.sedation-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sedation-header-text .about-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sedation-header-text h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.sedation-header-text .location-subtitle {
    font-size: clamp(0.875rem, 0.7955rem + 0.3636vw, 1.25rem);
    letter-spacing: 1px;
    line-height: 100%;
    font-weight: 400;
}

.sedation-header-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.sedation-header-video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover;
}

.video-wrapper .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0, 42, 102, 0.9);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    margin: 0;
    pointer-events: auto;
    box-sizing: border-box;
}

.video-wrapper .play-button i {
    margin-left: 3px;
    pointer-events: none;
}

.video-wrapper .play-button:hover {
    background: rgba(0, 42, 102, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Navigation Buttons Section */
.sedation-nav-section {
    padding: 40px 0;
    background: #002A66;
}

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

.sedation-nav-btn {
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sedation-nav-btn:hover {
    background: #fff;
    color: #002A66;
}

/* Content Sections */
.sedation-content-section {
    padding: 60px 0;
}

.sedation-content-section:nth-child(even) {
    background: #f8f9fa;
}

.sedation-blue-section {
    background: #e8f0f8 !important;
}

.parent-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* When image is alignright, reverse the order so text appears on left */
.parent-wrapper:has(.alignright) {
    flex-direction: row-reverse;
}

.img-wrapper {
    flex: 0 0 auto;
}

.img-wrapper img.alignright {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img-wrapper img.alignleft {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Video thumbnail styles - not circular */
.img-wrapper .video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img-wrapper .video-thumbnail img.alignright,
.img-wrapper .video-thumbnail img.alignleft {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.img-wrapper .play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    z-index: 2;
    pointer-events: none;
}

.content-wrapper {
    flex: 1;
}

.content-wrapper h2.line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.content-wrapper ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-wrapper li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.content-wrapper strong {
    color: #002A66;
    font-weight: 600;
}

.btn-wrapper {
    margin-top: 25px;
}

.all-on-4-section .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #e8f0f8;
    color: #002A66;
    border: 2px solid #002A66;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.all-on-4-section .btn:hover {
    background: #002A66;
    color: #fff;
}

.snap-in-section .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    color: #002A66;
    border: 2px solid #002A66;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.snap-in-section .btn:hover {
    background: #002A66;
    color: #fff;
}

.single-multi-section .btn,
.single-multi-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #002A66;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.single-multi-section .btn:hover,
.single-multi-btn:hover {
    background: #fff;
    color: #002A66;
}

.single-multi-pricing-section .btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

/* Section 3 & 4 - Image above content */
.sedation-section-image {
    width: 800px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px;
    border-radius: 0;
    box-shadow: none;
}

/* Section 4 specific - image on left, not circular, no styling */
#section-4 .img-wrapper img.alignleft {
    width: 500px;
    height: auto;
    object-fit: contain;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
}

.sedation-types-list {
    list-style: none;
    padding-left: 0;
}

.sedation-types-list li {
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.sedation-types-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 24px;
    line-height: 1;
}

/* IV Sedation Icon */
.iv-sedation-icon {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: block;
}

/* Responsive Styles for Sedation Page */
@media (max-width: 992px) {
    .sedation-header-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sedation-nav-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .parent-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .img-wrapper img.alignright,
    .img-wrapper img.alignleft {
        margin: 0 auto 20px;
        width: 300px;
        height: 300px;
    }

    .iv-sedation-icon {
        width: 250px;
        height: 250px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .sedation-header {
        padding: 90px 0 50px;
    }

    .sedation-header-text h1 {
        font-size: 36px;
    }

    .sedation-nav-buttons {
        grid-template-columns: 1fr;
    }

    .content-wrapper h2.line-heading {
        font-size: 28px;
    }

    .content-wrapper p,
    .content-wrapper li {
        font-size: 15px;
    }

    .video-wrapper .play-button {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .sedation-section-image {
        margin-bottom: 20px;
    }
}

/* Dental Implants Page Styles */

/* Stat Number for Hero */
.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

/* FREE Consultation Section */
.free-consultation-section {
    padding: 80px 0;
    background: #fff;
}

.free-consultation-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.free-consultation-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

.free-consultation-section h2 .free-highlight {
    color: #002A66;
    font-weight: 700;
}

.consultation-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-value {
    flex: 0 0 auto;
}

.value-badge {
    background: #e8f0f8;
    color: #1a1a1a;
    padding: 40px 50px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    min-width: 200px;
    line-height: 1.2;
}

.consultation-benefits {
    flex: 1;
    text-align: left;
}

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

.consultation-benefits li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.consultation-benefits li .caret-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 4px;
}

.consultation-benefits li .caret-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.consultation-benefits li .benefit-text {
    flex: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

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

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #002A66;
    margin-bottom: 20px;
}

.benefit-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Dental Implant Options Section */
.dental-implant-options {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.dental-implant-options h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.sedation-options {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.sedation-options h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

/* All-On-4, Snap-In, Single/Multi Sections */
.all-on-4-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.snap-in-section {
    padding: 80px 0 0 0;
    background: #fff;
}

.single-multi-section {
    padding: 80px 0;
    background: #002A66;
}

.single-multi-section .parent-wrapper {
    margin-bottom: 80px;
}

.single-multi-section .container > .parent-wrapper:last-of-type {
    margin-bottom: 0;
    padding-bottom: 60px;
}

.all-on-4-section h2,
.snap-in-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.single-multi-section h2,
.single-multi-section h2.line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.single-multi-section h2.line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: #4a90e2;
}

.all-on-4-section h3,
.snap-in-section h3,
.single-multi-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #002A66;
    margin-top: 30px;
    margin-bottom: 15px;
}

.all-on-4-section p,
.snap-in-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.single-multi-section p,
.single-multi-section .content-wrapper p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 18px;
}

.single-multi-section .content-wrapper p:last-child {
    margin-bottom: 0;
}

.all-on-4-section a,
.snap-in-section a {
    color: #002A66;
    text-decoration: underline;
    font-weight: 600;
}

.single-multi-section a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.snap-in-pricing-section {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 0;
}

.snap-in-pricing-cards {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

.single-multi-pricing-section {
    background: #002A66;
    padding: 80px 0;
    margin-top: 0;
}

.single-multi-pricing-cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    gap: 40px;
}

.single-multi-pricing-section .pricing-card {
    margin-bottom: 0;
}

.single-multi-pricing-section .pricing-card h3 {
    margin-bottom: 15px;
    color: #002A66 !important;
}

.single-multi-pricing-section .pricing-card p {
    color: #1a1a1a !important;
}

.single-multi-pricing-section .option-label {
    color: #666 !important;
}

.single-multi-pricing-section .option-price {
    color: #002A66 !important;
}

.single-multi-pricing-section .option-price-old {
    color: #999 !important;
}

.single-multi-pricing-section .pricing-note {
    margin-top: 0;
    margin-bottom: 20px;
}

.single-multi-pricing-section .pricing-option {
    margin-bottom: 20px;
}

.pricing-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #002A66;
    margin-bottom: 15px;
    text-align: center;
}

.pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #002A66;
}

.pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #002A66;
    margin-bottom: 20px;
}

.pricing-options {
    margin: 20px 0;
}

.pricing-option {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

.option-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.snap-in-pricing-cards .pricing-option {
    gap: 5px;
}

.option-price {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #002A66;
}

.option-price-old {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #e74c3c;
    text-decoration: line-through;
    margin-right: 10px;
}

.all-on-4-cost-section .option-price-old {
    color: #e74c3c;
}

.pricing-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-top: 15px;
    font-weight: 500;
}

.single-multi-pricing-section .pricing-note {
    color: #4a90e2 !important;
    font-weight: 600;
}

.single-multi-pricing-section .pricing-note-small {
    color: #1a1a1a !important;
}

.pricing-note-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin-top: 8px;
}

.upgrade-badge {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -10px;
}

.upgrade-badge svg {
    display: inline-block;
    width: 60px;
    height: 60px;
}

.upgrade-card {
    position: relative;
}

.upgrade-card h3 {
    margin-top: 0;
}

.upgrade-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
    text-align: center;
}

.upgrade-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.upgrade-offer {
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 10px;
}

.all-on-4-cost-section .zirconia-info {
    margin-top: 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: #002A66;
    padding: 60px 40px;
    border-radius: 8px;
}

.all-on-4-cost-section .zirconia-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.all-on-4-cost-section .zirconia-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #4a90e2;
    margin-top: 15px;
}

.all-on-4-cost-section .zirconia-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.zirconia-info {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #002A66;
    padding: 60px 40px;
    border-radius: 8px;
}

.zirconia-image {
    flex: 0 0 400px;
}

.zirconia-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.zirconia-content {
    flex: 1;
}

.zirconia-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.zirconia-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

/* Select Option Section */
.select-option-section {
    padding: 0;
    background: #002A66;
    text-align: center;
}

.select-option-section .container {
    padding: 50px 20px;
}

.select-option-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
}

.option-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.option-tab {
    background: #fff;
    color: #1a1a1a;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-tab:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.option-tab.active {
    background: #fff;
    color: #002A66;
}

/* Meet Doctor Section */
.meet-doctor-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.meet-doctor-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.meet-doctor-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #666;
    margin-bottom: 30px;
}

.doctor-content {
    max-width: 900px;
    margin: 0 auto;
}

.doctor-text {
    text-align: left;
}

.doctor-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.doctor-text a {
    color: #002A66;
    text-decoration: underline;
    font-weight: 600;
}

/* Main Content Section */
.main-content-section {
    padding: 50px 0 60px;
    background: #fff;
}

.main-content-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.main-content-icon {
    flex: 0 0 120px;
    margin-top: 0;
}

.main-content-icon svg {
    width: 120px;
    height: 120px;
    display: block;
}

.main-content-text {
    flex: 1;
}

.main-content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.main-content-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.main-content-section p a,
.main-content-section p a.phone-link {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.main-content-section p a:hover,
.main-content-section p a.phone-link:hover {
    text-decoration: underline;
}

.main-content-section .cta-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.main-content-section .cta-buttons .btn-primary {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.main-content-section .cta-buttons .btn-primary:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

/* Video Options Section (Dental Implant Options & Sedation Options) */
.video-options-section {
    padding: 80px 0;
    background: #fff;
}

.video-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.video-option-item {
    text-align: center;
}

.video-option-item h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.video-option-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-option-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-option-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.video-option-thumbnail .play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.video-option-thumbnail .play-button i {
    font-size: 28px;
    color: #667eea;
    margin-left: 4px;
}

.video-option-thumbnail .video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.video-option-thumbnail .overlay-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.video-option-thumbnail .overlay-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.video-option-thumbnail .overlay-contact {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .video-options-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-option-item h2 {
        font-size: 28px;
    }
}

/* Financing Options Section */
.all-on-4-cost-section .financing-options-wrapper {
    margin-top: 80px;
    padding: 60px 40px;
    background: transparent;
    border-radius: 8px;
}

.all-on-4-cost-section .financing-options-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.all-on-4-cost-section .financing-options-wrapper p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.all-on-4-cost-section .financing-options-wrapper p:last-of-type {
    margin-bottom: 40px;
}

.financing-options-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.financing-options-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.financing-options-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.financing-options-section p:last-of-type {
    margin-bottom: 40px;
}

.financing-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.financing-logo-card {
    background: #e8f0f8;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.financing-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.financing-logo-card img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

/* Life-Changing Results Section */
.life-changing-results .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

/* Responsive Styles for Dental Implants Page */
@media (max-width: 768px) {
    .stat-number {
        font-size: 36px;
    }

    .consultation-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .consultation-value {
        width: 100%;
    }
    
    .value-badge {
        font-size: 36px;
        padding: 30px 40px;
        min-width: auto;
    }
    
    .value-badge .value-amount {
        font-size: 40px;
    }
    
    .value-badge .value-label {
        font-size: 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .snap-in-pricing-cards {
        grid-template-columns: 1fr;
    }

    .single-multi-pricing-cards {
        grid-template-columns: 1fr;
    }

    .financing-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zirconia-info {
        flex-direction: column;
        padding: 40px 20px;
    }

    .zirconia-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .select-option-section {
        padding: 0;
    }
    
    .select-option-section .container {
        padding: 30px 20px;
    }
    
    .select-option-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .option-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .option-tab {
        width: 100%;
    }
    
    .main-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .main-content-icon {
        flex: none;
        margin: 0 auto;
    }
    
    .main-content-icon svg {
        width: 120px;
        height: 120px;
    }
    
    .main-content-section .cta-buttons {
        flex-direction: column;
    }
    
    .main-content-section .cta-buttons .btn-primary {
        width: 100%;
        text-align: center;
    }

    .all-on-4-section h2,
    .snap-in-section h2,
    .single-multi-section h2 {
        font-size: 28px;
    }

    .pricing-card h3 {
        font-size: 20px;
    }

    .option-price {
        font-size: 28px;
    }
}

/* All-On-4 Page Styles */
.all-on-4-hero {
    position: relative;
    min-height: 700px;
    padding: 180px 0 120px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.all-on-4-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(2px);
    z-index: 1;
}

.all-on-4-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.all-on-4-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.all-on-4-hero .hero-content-wrapper {
    max-width: 600px;
    margin-bottom: 60px;
}

.all-on-4-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.1;
}

.all-on-4-hero .hero-location {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.all-on-4-hero .hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.all-on-4-hero .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.all-on-4-hero .btn-hero-primary,
.all-on-4-hero .btn-hero-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.all-on-4-hero .btn-hero-primary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.all-on-4-hero .btn-hero-primary:hover {
    background: #003d99;
    border-color: #003d99;
}

.all-on-4-hero .btn-hero-secondary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.all-on-4-hero .btn-hero-secondary:hover {
    background: #003d99;
    border-color: #003d99;
}

.all-on-4-hero .hero-nav {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(to right, #002A66 0%, #4a90e2 100%);
    border-radius: 8px;
    margin-top: 40px;
    width: 100%;
}

.all-on-4-hero .hero-nav a {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.all-on-4-hero .hero-nav a span {
    display: block;
    line-height: 1.3;
}

.all-on-4-hero .hero-nav a:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.what-are-all-on-4-section {
    padding: 80px 0;
    background: #fff;
}

.what-are-all-on-4-section .content-with-video {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.what-are-all-on-4-section .image-content {
    position: sticky;
    top: 150px;
}

.what-are-all-on-4-section .video-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.what-are-all-on-4-section .video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.what-are-all-on-4-section .video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 80px;
    height: 80px;
    transition: transform 0.3s;
}

.what-are-all-on-4-section .video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.what-are-all-on-4-section .video-play-button svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.what-are-all-on-4-section .video-wrapper.playing .video-play-button {
    display: none;
}

.what-are-all-on-4-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.what-are-all-on-4-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.what-are-all-on-4-section .benefits-list-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.what-are-all-on-4-section .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-are-all-on-4-section .benefits-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.what-are-all-on-4-section .benefits-list .faq-bld-txt {
    font-weight: 600;
}

.what-are-all-on-4-section .google-reviews-inline {
    margin: 60px 0 40px;
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.what-are-all-on-4-section .google-rating-header {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
}

.what-are-all-on-4-section .google-rating-header strong {
    font-weight: 600;
}

.what-are-all-on-4-section .reviews-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.what-are-all-on-4-section .review-item {
    max-height: 300px;
    overflow: hidden;
}

.what-are-all-on-4-section .review-text {
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.what-are-all-on-4-section .review-header {
    margin-bottom: 8px;
}

.what-are-all-on-4-section .reviewer-avatar-wrapper {
    width: 40px;
    height: 40px;
}

.what-are-all-on-4-section .reviewer-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.what-are-all-on-4-section .reviewer-name {
    font-size: 14px;
    margin-bottom: 2px;
}

.what-are-all-on-4-section .review-date {
    font-size: 12px;
}

.what-are-all-on-4-section .review-stars {
    margin-bottom: 8px;
}

.what-are-all-on-4-section .review-stars .star {
    font-size: 14px;
}

.what-are-all-on-4-section .what-are-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.how-it-works-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.how-it-works-section .how-it-works-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.how-it-works-section .how-it-works-text {
    max-width: 100%;
}

.how-it-works-section .line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.how-it-works-section .line-heading:first-child {
    margin-top: 0;
}

.how-it-works-section .line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: #4a90e2;
}

.how-it-works-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.how-it-works-section .how-it-works-image {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how-it-works-section .image-content .vid-wrapper {
    width: 100%;
}

.how-it-works-section .image-content .vid-wrapper video {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.how-it-works-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
}

.how-it-works-section .content-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.how-it-works-section .text-content {
    max-width: 100%;
}

.how-it-works-section .how-it-works-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px 0;
}

.how-it-works-section .how-it-works-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    padding-left: 0;
}

.how-it-works-section .how-it-works-list li::before {
    content: '•';
    color: #002A66;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 8px;
}

.how-it-works-section .btn-learn-more {
    display: inline-block;
    padding: 12px 24px;
    background: #e8f0f8;
    color: #1a1a1a;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s;
    margin-top: 10px;
}

.how-it-works-section .btn-learn-more:hover {
    background: #4a90e2;
    color: #fff;
    border-color: #4a90e2;
}

.how-it-works-section .image-content {
    position: sticky;
    top: 150px;
}

.how-it-works-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 10px;
}

.comparison-section {
    padding: 80px 0;
    background: #fff;
}

.comparison-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
    max-width: 100%;
    margin: 0 auto;
}

.comparison-table table {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #002A66;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison-table thead {
    background: #002A66;
}

.comparison-table th {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    vertical-align: middle;
    line-height: 1.4;
}

.comparison-table th:first-child {
    text-align: left;
    width: 200px;
}

.comparison-table td {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 25px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-align: center;
    vertical-align: middle;
    line-height: 1.6;
}

.comparison-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-table td:first-child {
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
}

.life-changing-results-section {
    padding: 80px 0;
    background: #e8f0f8;
    text-align: center;
}

.life-changing-results-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.life-changing-results-section .results-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.life-changing-results-section .results-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.all-on-4-cost-section {
    padding: 80px 0;
    background: #002A66;
    color: #fff;
}

.all-on-4-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.2;
}

.all-on-4-cost-section > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
    text-align: left;
    margin-bottom: 40px;
    max-width: 100%;
}

.all-on-4-cost-section .cost-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
    max-width: 100%;
}

.all-on-4-cost-section .cost-benefits li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.all-on-4-cost-section .cost-benefits li .arrow-icon {
    width: 12px;
    height: 12px;
    fill: #fff;
    flex-shrink: 0;
    margin-top: 6px;
}

.all-on-4-cost-section .cost-benefits li span {
    flex: 1;
}

.all-on-4-cost-section .pricing-cards {
    margin-top: 40px;
    margin-bottom: 0;
}

.zirconia-titanium-section {
    padding: 80px 0;
    background: #002A66;
    color: #fff;
}

.zirconia-titanium-section .zirconia-info {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.zirconia-titanium-section .zirconia-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.zirconia-titanium-section .zirconia-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.zirconia-titanium-section .zirconia-content h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #4a90e2;
    margin-top: 15px;
}

.zirconia-titanium-section .zirconia-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #fff;
}

.step-by-step-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.step-by-step-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.step-by-step-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: left;
}

.step-by-step-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
}

.step-by-step-video {
    position: relative;
}

.step-by-step-video .video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-by-step-video .video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.step-by-step-video .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s;
}

.step-by-step-video .play-button-overlay svg {
    width: 100%;
    height: 100%;
}

.step-by-step-video .video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
}

.step-by-step-video .video-overlay-content {
    flex: 1;
}

.step-by-step-video .video-overlay-content p {
    color: #fff;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.step-by-step-video .video-overlay-content .video-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.step-by-step-video .video-overlay-content .video-topic {
    font-weight: 600;
    margin-bottom: 5px;
}

.step-by-step-video .video-overlay-content .video-contact {
    font-size: 12px;
    opacity: 0.9;
}

.step-by-step-video .video-logo {
    width: 50px;
    height: 50px;
    margin-left: 20px;
}

.step-by-step-video .video-logo svg {
    width: 100%;
    height: 100%;
}

.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
}

.steps-timeline .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #4a90e2;
    transform: translateX(-50%);
    z-index: 0;
    transition: height 0.3s ease;
}

.steps-timeline .timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background: #4a90e2;
    transform: translateX(-50%);
    z-index: 1;
    transition: height 0.3s ease;
    height: 0;
}

.step-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    z-index: 2;
}

.step-item.step-left {
    flex-direction: row;
}

.step-item.step-right {
    flex-direction: row-reverse;
}

.step-item .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4a90e2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-item .step-content-box {
    flex: 1;
    padding: 25px 30px;
    border-radius: 8px;
    max-width: 450px;
    position: relative;
}

.step-item.step-left .step-content-box {
    margin-right: calc(50% + 30px);
}

.step-item.step-right .step-content-box {
    margin-left: calc(50% + 30px);
}

.step-item .step-content-box.step-blue {
    background: #e3f2fd;
}

.step-item .step-content-box.step-gray {
    background: #f5f5f5;
}

.step-item .step-content-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-item .step-content-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* Responsive styles for step-by-step section */
@media (max-width: 968px) {
    .step-by-step-header {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-by-step-content h2 {
        text-align: center;
    }
    
    .step-by-step-content p {
        text-align: center;
    }
    
    .steps-timeline {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .step-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .step-item .step-number {
        position: relative;
        left: auto;
        transform: none;
        margin-bottom: 20px;
        margin-left: 0;
    }
    
    .step-item.step-left .step-content-box,
    .step-item.step-right .step-content-box {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .steps-timeline .timeline-line,
    .steps-timeline .timeline-progress {
        left: 30px;
        transform: none;
    }
}
    overflow: hidden;
}

.step-item .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-item .step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.step-item .step-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.consultation-cta-section {
    padding: 80px 0;
    background: #002A66;
    color: #fff;
    text-align: center;
}

.consultation-cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.consultation-cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
}

.consultation-cta-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
}

.faq-section .faq-contact {
    text-align: center;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
}

.faq-section .faq-contact a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.faq-section .faq-contact a:hover {
    text-decoration: underline;
}

.faq-section .faq-bld-txt {
    font-weight: 600;
}

/* Responsive for All-On-4 Page */
@media (max-width: 968px) {
    .all-on-4-hero h1 {
        font-size: 42px;
    }

    .all-on-4-hero .hero-subtitle {
        font-size: 24px;
    }

    .what-are-all-on-4-section .content-with-image {
        grid-template-columns: 1fr;
    }

    .zirconia-titanium-section .zirconia-info {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 1fr;
    }

    .step-item .step-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }
}

/* Snap-In Implant Dentures Page Styles */
.snap-in-hero {
    position: relative;
    min-height: 700px;
    padding: 180px 0 120px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.snap-in-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(2px);
    z-index: 1;
}

.snap-in-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.snap-in-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.snap-in-hero .hero-content-wrapper {
    max-width: 600px;
    margin-bottom: 60px;
}

.snap-in-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.1;
}

.snap-in-hero .hero-location {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.snap-in-hero .hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #002A66;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.snap-in-hero .hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
}

.snap-in-hero .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
}

.snap-in-hero .btn-hero-primary,
.snap-in-hero .btn-hero-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.snap-in-hero .btn-hero-primary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.snap-in-hero .btn-hero-primary:hover {
    background: #003d99;
    border-color: #003d99;
}

.snap-in-hero .btn-hero-secondary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.snap-in-hero .btn-hero-secondary:hover {
    background: #003d99;
    border-color: #003d99;
}

.snap-in-hero .hero-nav {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(to right, #002A66 0%, #4a90e2 100%);
    border-radius: 8px;
    margin-top: 40px;
    width: 100%;
}

.snap-in-hero .hero-nav a {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.snap-in-hero .hero-nav a span {
    display: block;
    line-height: 1.3;
}

.snap-in-hero .hero-nav a:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Header transparency for Snap-In page */
body:has(.snap-in-hero) .header {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
}

body:has(.snap-in-hero) .header .main-nav a {
    color: #1a1a1a;
}

body:has(.snap-in-hero) .header .dropdown a {
    color: #1a1a1a;
}

body:has(.snap-in-hero) .header .mega-menu-item a {
    color: #1a1a1a;
}

.what-are-snap-in-section {
    padding: 80px 0;
    background: #fff;
}

.what-are-snap-in-section .content-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.what-are-snap-in-section .image-content {
    position: sticky;
    top: 150px;
}

.what-are-snap-in-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.what-are-snap-in-section .benefits-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.what-are-snap-in-section .benefits-list li {
    margin-bottom: 15px;
    padding-left: 0;
    line-height: 1.7;
}

.what-are-snap-in-section .shortfalls-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.what-are-snap-in-section .shortfalls-list li {
    margin-bottom: 15px;
    padding-left: 0;
    line-height: 1.7;
}

/* Standalone Candidate Section */
.candidate-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.candidate-section .content-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.candidate-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.candidate-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #002A66;
}

.candidate-section .text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.candidate-section .image-content {
    position: relative;
}

.candidate-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* VS Traditional Dentures Section */
.vs-traditional-section {
    padding: 80px 0;
    background: #fff;
}

.vs-traditional-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.vs-traditional-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #002A66;
}

.vs-traditional-section > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.vs-traditional-section .shortfalls-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.vs-traditional-section .shortfalls-list li {
    margin-bottom: 20px;
    padding-left: 0;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #333;
    position: relative;
    padding-left: 25px;
}

.vs-traditional-section .shortfalls-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

/* Responsive styles for new sections */
@media (max-width: 1024px) {
    .candidate-section .content-with-image {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .candidate-section .image-content {
        order: -1;
    }
}

@media (max-width: 768px) {
    .candidate-section h2,
    .vs-traditional-section h2 {
        font-size: 32px;
    }
}

.what-are-snap-in-section .cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.snap-in-cost-section {
    background: #002A66;
    color: #fff;
    padding: 80px 0;
}

.snap-in-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    text-align: left;
    margin-bottom: 15px;
}

.snap-in-cost-section > p {
    color: #fff;
    text-align: left;
    max-width: none;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.7;
}

.snap-in-cost-section .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.snap-in-cost-section .pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.snap-in-cost-section .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: #4a90e2;
}

.snap-in-cost-section .pricing-card h3 {
    color: #002A66;
    margin-bottom: 10px;
}

.snap-in-cost-section .pricing-card .pricing-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.snap-in-cost-section .pricing-card .pricing-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 25px 0;
}

.snap-in-cost-section .pricing-card .starting-at {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.snap-in-cost-section .pricing-card .price {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #002A66;
}

.snap-in-cost-section .pricing-card .pricing-description {
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.snap-in-cost-section .pricing-card .pricing-note {
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

.snap-in-cost-section .financing-options-wrapper {
    margin-top: 80px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.snap-in-cost-section .financing-options-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.snap-in-cost-section .financing-options-wrapper p {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.snap-in-cost-section .financing-logos {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.snap-in-cost-section .financing-logo-card {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.snap-in-cost-section .financing-logo-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.procedure-timeline-section {
    padding: 80px 0;
    background: #fff;
}

.procedure-timeline-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.procedure-timeline-section .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.procedure-timeline-section .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.procedure-timeline-section .timeline-steps {
    position: relative;
    padding-left: 60px;
    width: 100%;
}

.procedure-timeline-section .timeline-steps::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.procedure-timeline-section .timeline-step {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.procedure-timeline-section .timeline-step .step-number {
    position: absolute;
    left: -45px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #002A66;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
}

.procedure-timeline-section .timeline-step .step-content {
    background: #f5f5f5;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.procedure-timeline-section .timeline-step .step-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.7;
}

.procedure-timeline-section .step-image {
    width: 100%;
}

.procedure-timeline-section .step-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* Responsive styles for Snap-In page */
@media (max-width: 1024px) {
    .snap-in-hero h1 {
        font-size: 48px;
    }

    .snap-in-hero .hero-subtitle {
        font-size: 20px;
    }

    .what-are-snap-in-section .content-with-image {
        grid-template-columns: 1fr;
    }

    .what-are-snap-in-section .image-content {
        position: static;
    }

    .snap-in-cost-section .pricing-cards {
        grid-template-columns: 1fr;
    }

    .procedure-timeline-section .timeline-step {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .snap-in-hero {
        min-height: 600px;
        padding: 120px 0 80px;
    }

    .snap-in-hero h1 {
        font-size: 36px;
    }

    .snap-in-hero .hero-subtitle {
        font-size: 18px;
    }

    .snap-in-hero .hero-nav {
        flex-direction: column;
        gap: 10px;
    }

    .snap-in-hero .hero-nav a {
        min-height: 60px;
    }

    .procedure-timeline-section .timeline-step {
        margin-bottom: 30px;
    }
}

/* Single & Multi-Tooth Dental Implants Page Styles */
.single-multi-hero {
    position: relative;
    min-height: 700px;
    padding: 180px 0 120px;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.single-multi-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(2px);
    z-index: 1;
}

.single-multi-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.single-multi-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.single-multi-hero .hero-content-wrapper {
    max-width: 600px;
    margin-bottom: 60px;
}

.single-multi-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.1;
}

.single-multi-hero .hero-location {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.single-multi-hero .hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 35px;
}

.single-multi-hero .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin-bottom: 40px;
}

.single-multi-hero .btn-hero-primary,
.single-multi-hero .btn-hero-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.single-multi-hero .btn-hero-primary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.single-multi-hero .btn-hero-primary:hover {
    background: #003d99;
    border-color: #003d99;
}

.single-multi-hero .btn-hero-secondary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.single-multi-hero .btn-hero-secondary:hover {
    background: #003d99;
    border-color: #003d99;
}

.single-multi-hero .hero-nav {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    padding: 25px 30px;
    background: linear-gradient(to right, #002A66 0%, #4a90e2 100%);
    border-radius: 8px;
    margin-top: 40px;
    width: 100%;
}

.single-multi-hero .hero-nav a {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.single-multi-hero .hero-nav a:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.single-multi-hero .hero-nav a span {
    display: block;
    line-height: 1.2;
}

.what-are-single-multi-section {
    padding: 80px 0;
    background: #fff;
}

.what-are-single-multi-section .content-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-are-single-multi-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.what-are-single-multi-section .benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.what-are-single-multi-section .benefits-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.what-are-single-multi-section .benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 700;
    font-size: 18px;
}


.procedure-timeline-section .timeline-header-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.procedure-timeline-section .timeline-header-text {
    text-align: left;
}

.procedure-timeline-section .timeline-header-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: left;
}

.procedure-timeline-section .timeline-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

.procedure-timeline-section .timeline-header-text .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.procedure-timeline-section .timeline-header-image {
    position: sticky;
    top: 150px;
}

.procedure-timeline-section .timeline-header-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.procedure-timeline-section .timeline-content-wrapper {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.procedure-timeline-section .timeline-image {
    position: sticky;
    top: 150px;
}

.procedure-timeline-section .timeline-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
    .single-multi-hero h1 {
        font-size: 48px;
    }

    .what-are-single-multi-section .content-with-image,
    .procedure-timeline-section .timeline-header-wrapper,
    .how-it-works-section .content-with-image {
        grid-template-columns: 1fr;
    }

    .procedure-timeline-section .timeline-header-image {
        position: static;
        order: -1;
        margin-bottom: 30px;
    }

    .how-it-works-section .image-content {
        position: static;
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .single-multi-hero {
        min-height: 600px;
        padding: 120px 0 80px;
    }

    .single-multi-hero h1 {
        font-size: 36px;
    }

    .single-multi-hero .hero-nav {
        flex-direction: column;
    }

    .single-multi-hero .hero-nav a {
        width: 100%;
    }

    .what-are-single-multi-section h2,
    .procedure-timeline-section .timeline-text h2,
    .procedure-timeline-section .timeline-header-text h2 {
        font-size: 32px;
    }

    .procedure-timeline-section .timeline-steps {
        padding-left: 50px;
    }

    .procedure-timeline-section .timeline-steps::before {
        left: 20px;
    }

    .procedure-timeline-section .timeline-step .step-number {
        left: -40px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .single-multi-cost-section .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Dentures Page Styles */
.dentures-hero {
    padding: 80px 0 40px;
    background: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.dentures-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(2px);
    z-index: 1;
}

.dentures-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.dentures-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.dentures-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.dentures-hero .hero-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0;
}

.dentures-lifestyle-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.dentures-lifestyle-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.dentures-lifestyle-section .content-with-icon {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.dentures-lifestyle-section .icon-content {
    flex: 0 0 auto;
}

.dentures-lifestyle-section .icon-content svg {
    width: 120px;
    height: 120px;
    fill: #002A66;
}

.dentures-lifestyle-section .text-content {
    flex: 1;
}

.dentures-lifestyle-section h2.line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.dentures-lifestyle-section h2.line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #002A66;
}

.dentures-lifestyle-section .phone-link {
    color: #666;
    text-decoration: underline;
    background: none;
    padding: 0;
    border-radius: 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    display: inline;
}

.dentures-lifestyle-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.traditional-immediate-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.traditional-immediate-section .content-with-image {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.traditional-immediate-section .image-content {
    flex: 0 0 auto;
}

.traditional-immediate-section .image-content img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
}

.traditional-immediate-section .text-content {
    flex: 1;
}

.traditional-immediate-section h2.line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 30px;
    position: relative;
    padding-bottom: 10px;
}

.traditional-immediate-section h2.line-heading:first-child {
    margin-top: 0;
}

.traditional-immediate-section h2.line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #002A66;
}

.traditional-immediate-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.snap-in-dentures-section {
    padding: 60px 0;
    background: #002A66;
    color: #fff;
}

.snap-in-dentures-section .content-with-image {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.snap-in-dentures-section .text-content {
    flex: 1;
}

.snap-in-dentures-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.snap-in-dentures-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 15px;
}

.snap-in-dentures-section .image-content {
    flex: 0 0 auto;
}

.snap-in-dentures-section .image-content img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
}

.btn-snap-in {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-snap-in:hover {
    background: #fff;
    color: #002A66;
}

.dentures-cost-section {
    padding: 60px 0;
    background: #fff;
}

.dentures-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.dentures-cost-section .container > p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0;
}

.dentures-cost-section .cost-benefits {
    list-style: none;
    padding-left: 0;
    margin-top: 35px;
}

.dentures-cost-section .cost-benefits li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.dentures-cost-section .cost-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #002A66;
    font-weight: bold;
    font-size: 18px;
}

.financing-section {
    padding: 80px 0;
    background: #fff;
}

.financing-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: left;
}

.financing-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: left;
}

.financing-section p:last-of-type {
    font-weight: 600;
    margin-bottom: 60px;
}

.financing-section .financing-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.financing-section .financing-logo-card {
    background: #e8f0f8;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.financing-section .financing-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.financing-section .financing-logo-card img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.caring-dentures-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.caring-dentures-section h2.line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.caring-dentures-section h2.line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #002A66;
}

.caring-dentures-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: left;
}

/* Responsive Styles for Dentures Page */
@media (max-width: 968px) {
    .dentures-lifestyle-section .content-with-icon,
    .traditional-immediate-section .content-with-image,
    .snap-in-dentures-section .content-with-image {
        flex-direction: column;
    }

    .traditional-immediate-section .image-content img,
    .snap-in-dentures-section .image-content img {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
    }

    .snap-in-dentures-section .content-with-image {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .dentures-hero h1 {
        font-size: 42px;
    }

    .dentures-hero .hero-location {
        font-size: 20px;
    }

    .dentures-lifestyle-section h2,
    .snap-in-dentures-section h2,
    .dentures-cost-section h2,
    .financing-section h2,
    .caring-dentures-section h2,
    .faq-section h2 {
        font-size: 28px;
    }

    .faq-section .faq-item summary {
        font-size: 16px;
        padding: 15px 25px 15px 0;
    }

    .dentures-lifestyle-section .icon-content svg {
        width: 80px;
        height: 80px;
    }
}

/* Tooth Extractions Page Styles */
.extractions-hero {
    padding: 80px 0 40px;
    background: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.extractions-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(2px);
    z-index: 1;
}

.extractions-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.extractions-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.extractions-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.extractions-hero .hero-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0;
}

.emergency-extractions-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.emergency-extractions-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.emergency-extractions-section .container {
    position: relative;
    z-index: 2;
}

.emergency-extractions-section .content-with-icon {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.emergency-extractions-section .icon-content {
    flex-shrink: 0;
}

.emergency-extractions-section .icon-content svg {
    width: 120px;
    height: 120px;
}

.emergency-extractions-section .text-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.emergency-extractions-section .text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.emergency-extractions-section .symptoms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.emergency-extractions-section .symptoms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.emergency-extractions-section .symptoms-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.emergency-extractions-section .symptoms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 24px;
    line-height: 1;
}

.emergency-extractions-section .text-content p a {
    color: #002A66;
    text-decoration: underline;
}

.emergency-extractions-section .cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.why-choose-extractions-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.why-choose-extractions-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-extractions-section .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-choose-extractions-section .image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.why-choose-extractions-section .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-extractions-section .features-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    padding-left: 0;
}

.why-choose-extractions-section .features-list li strong {
    color: #002A66;
    font-weight: 600;
}

.extraction-process-section {
    padding: 80px 0;
    background: #fff;
}

.extraction-process-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step .step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: #002A66;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
}

.process-step .step-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.process-step .step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.process-step .step-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.no-insurance-section {
    padding: 60px 0;
    background: #fff;
}

.no-insurance-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.no-insurance-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.no-insurance-section .financing-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.no-insurance-section .financing-logo-card {
    background: #e8f0f8;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.no-insurance-section .financing-logo-card img {
    max-width: 150px;
    height: auto;
}

.expectations-reasons-section {
    padding: 80px 0;
    background: #fff;
}

.expectations-reasons-section .two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.expectations-reasons-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.expectations-reasons-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.expectations-reasons-section .reasons-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expectations-reasons-section .reasons-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.expectations-reasons-section .reasons-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 24px;
    line-height: 1;
}

.tabs-container {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button:hover {
    background: #e8f0f8;
    border-color: #002A66;
    color: #002A66;
}

.tab-button.active {
    background: #002A66;
    color: #fff;
    border-color: #002A66;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content-box {
    background: #e8f0f8;
    padding: 40px;
    border-radius: 8px;
}

.tab-content-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

.tab-content-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-content-box ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.tab-content-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 24px;
    line-height: 1;
}

.replacing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.replacing-header .line-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #002A66;
    margin: 0;
    position: relative;
    padding-bottom: 10px;
}

.replacing-header .line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #002A66;
}

.dental-implant-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #002A66;
    background: #fff;
    border: 2px solid #002A66;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    white-space: nowrap;
}

.dental-implant-button:hover {
    background: #002A66;
    color: #fff;
}

.faq-contact {
    text-align: center;
    margin-top: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #666;
}

.faq-contact a {
    color: #002A66;
    text-decoration: none;
    font-weight: 600;
}

.faq-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .extractions-hero h1 {
        font-size: 42px;
    }

    .extractions-hero .hero-location {
        font-size: 20px;
    }

    .emergency-extractions-section .content-with-icon {
        flex-direction: column;
    }

    .emergency-extractions-section .icon-content {
        text-align: center;
    }

    .emergency-extractions-section .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-extractions-section .content-wrapper {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .process-step {
        padding-left: 60px;
    }

    .process-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .expectations-reasons-section .two-column-layout {
        grid-template-columns: 1fr;
    }

    .tabs-container {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }
    }

/* First Visit Expectations Page Styles */
.first-visit-hero {
    padding: 120px 0 60px;
    background: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.first-visit-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.5;
    filter: blur(1px);
    z-index: 1;
}

.first-visit-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.first-visit-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 60px;
}

.first-visit-hero .hero-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 0;
}

.first-visit-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 0;
}

.comfort-priority-section {
    padding: 40px 0 80px;
    background: #fff;
    position: relative;
}

.comfort-priority-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.comfort-priority-section .container {
    position: relative;
    z-index: 2;
}

.comfort-priority-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.comfort-priority-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.comfort-priority-section p strong {
    font-weight: 700;
    color: #1a1a1a;
}

.first-visit-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.first-visit-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.first-visit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
}

.comfort-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.comfort-buttons .btn-secondary-outline {
    background: #f8f9fa;
    color: #002A66;
    border: 2px solid #002A66;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.comfort-buttons .btn-secondary-outline:hover {
    background: #e8f0f8;
    border-color: #002A66;
    color: #002A66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 42, 102, 0.2);
}

.first-visit-gallery {
    padding: 60px 0;
    background: #fff;
}

.first-visit-gallery .gallery-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.complimentary-services-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.complimentary-services-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.complimentary-services-section .services-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: center;
}

.complimentary-services-section .services-tabs .tab-button {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #002A66;
    background: #e8f0f8;
    color: #1a1a1a;
}

.complimentary-services-section .services-tabs .tab-button.active {
    background: #002A66;
    color: #fff;
    border-color: #002A66;
}

.complimentary-services-section .services-tabs .tab-button:hover:not(.active) {
    background: #d0e0f0;
}

.complimentary-services-section .tab-content-box {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
}

.complimentary-services-section .tab-content-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.complimentary-services-section .tab-content-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #002A66;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.complimentary-services-section .tab-content-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #002A66;
}

.complimentary-services-section .tab-content-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.complimentary-services-section .tab-content-box p a {
    color: #002A66;
    text-decoration: underline;
}

.complimentary-services-section .tab-content-box p a:hover {
    color: #003d99;
}

.complimentary-services-section .tab-content-box ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.complimentary-services-section .tab-content-box ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
}

.complimentary-services-section .tab-content-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #002A66;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
}

.tab-cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.complimentary-services-section .tab-cta-buttons .btn-primary {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.complimentary-services-section .tab-cta-buttons .btn-primary:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

.complimentary-services-section .tab-cta-buttons .btn-secondary-outline {
    background: #fff;
    color: #666;
    padding: 16px 32px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.complimentary-services-section .tab-cta-buttons .btn-secondary-outline:hover {
    background: #e8f0f8;
    border-color: #002A66;
    color: #002A66;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 42, 102, 0.2);
}

    .financing-section .financing-logos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .first-visit-hero h1 {
        font-size: 42px;
    }

    .first-visit-hero .hero-breadcrumb {
        font-size: 12px;
    }

    .comfort-priority-section h2,
    .complimentary-services-section h2 {
        font-size: 32px;
    }

    .comfort-priority-section p,
    .complimentary-services-section .tab-content-box p,
    .complimentary-services-section .tab-content-box ul li,
    .first-visit-list li {
        font-size: 16px;
    }

    .complimentary-services-section .tab-content-box h3 {
        font-size: 28px;
    }

    .complimentary-services-section .tab-content-box h4 {
        font-size: 20px;
    }

    .complimentary-services-section .tab-content-box {
        padding: 30px;
    }

    .comfort-buttons,
    .tab-cta-buttons {
        flex-direction: column;
    }

    .comfort-buttons a,
    .tab-cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

.call-now-link {
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s;
}

.call-now-link:hover {
    color: #002A66;
    text-decoration: none;
}


/* Cost of Dental Implants Page Styles */
.cost-hero {
    padding: 120px 0 80px;
    background: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    margin-top: 0;
}

.cost-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 4;
}

.cost-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://dentalimplantsinbirmingham.com/wp-content/uploads/2024/01/senior-couple-sunshine-and-smile.webp');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    opacity: 0.4;
    filter: blur(2px);
    z-index: 1;
}

.cost-hero .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.cost-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.cost-hero .hero-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4a90e2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    margin-top: 0;
}

.cost-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cost-hero .hero-location {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cost-hero .hero-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cost-hero .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.cost-hero .btn-hero-primary,
.cost-hero .btn-hero-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.cost-hero .btn-hero-primary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.cost-hero .btn-hero-primary:hover {
    background: #003d99;
    border-color: #003d99;
}

.cost-hero .btn-hero-secondary {
    background: #002A66;
    color: #fff;
    border: 2px solid #002A66;
}

.cost-hero .btn-hero-secondary:hover {
    background: #003d99;
    border-color: #003d99;
}

.cost-hero-nav {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 25px 30px;
    background: linear-gradient(to bottom, #002A66 0%, #4a90e2 100%);
    border-radius: 8px;
    width: 100%;
}

.cost-hero-nav a {
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 16px 20px;
    background: #fff;
    border-radius: 6px;
    transition: all 0.3s;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cost-hero-nav a:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Don't Overpay Section */
.dont-overpay-section {
    padding: 80px 0;
    background: #fff;
}

/* Google Reviews Section for Cost Page */
.google-reviews-section {
    padding: 60px 0;
    background: #e8f0f8;
}

/* Why Choose Cost Section */
.why-choose-cost-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.why-choose-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.why-choose-cta .btn-secondary-outline {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #002A66;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
}

.why-choose-cta .btn-secondary-outline:hover {
    background: #003d99;
    border-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

.why-choose-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.why-choose-cost-section h3.line-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-cost-section h3.line-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #4a90e2, transparent);
}

.why-choose-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.why-choose-wrapper .img-wrapper {
    flex: 0 0 auto;
}

.why-choose-wrapper .img-wrapper .video-thumbnail img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.why-choose-features-list {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-choose-features-list li {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.why-choose-features-list li::before {
    display: none;
}

.why-choose-features-list li:last-child {
    margin-bottom: 0;
}

.why-choose-features-list li span {
    font-weight: 600;
    color: #1a1a1a;
    display: inline;
}

.why-choose-features-list li a {
    color: #002A66;
    text-decoration: none;
}

.why-choose-features-list li a:hover {
    text-decoration: underline;
}

.before-after-carousel-wrapper {
    margin: 40px 0;
}

.why-choose-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.why-choose-cta .btn-secondary-outline {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #002A66;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
}

.why-choose-cta .btn-secondary-outline:hover {
    background: #003d99;
    border-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

/* All-On-4 Cost Section */
.all-on-4-cost-section {
    padding: 80px 0;
    background: #fff;
}

.all-on-4-cost-section .all-on-4-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.all-on-4-cost-section .all-on-4-header-content {
    flex: 1;
}

.all-on-4-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.all-on-4-cost-section .learn-more-link {
    display: inline-block;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.all-on-4-cost-section .learn-more-link:hover {
    background: #4a90e2;
    color: #fff;
}

.all-on-4-cost-section .all-on-4-image {
    flex: 0 0 500px;
    text-align: center;
}

.all-on-4-cost-section .all-on-4-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    background: #000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.all-on-4-cost-section .pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.all-on-4-cost-section .pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.all-on-4-cost-section .pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.all-on-4-cost-section .pricing-options {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.all-on-4-cost-section .pricing-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.all-on-4-cost-section .option-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #4a90e2;
    font-weight: 600;
}

.all-on-4-cost-section .option-price {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.all-on-4-cost-section .upgrade-card {
    background: #fff;
    position: relative;
    text-align: center;
}

.all-on-4-cost-section .upgrade-card h3 {
    color: #1a1a1a;
    margin-top: 0;
}

.all-on-4-cost-section .upgrade-card .upgrade-subtitle {
    color: #1a1a1a;
}

.all-on-4-cost-section .upgrade-card .option-price {
    color: #1a1a1a;
}

.all-on-4-cost-section .upgrade-card .pricing-note-small {
    color: #666;
}

@media (max-width: 968px) {
    .all-on-4-cost-section .all-on-4-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .all-on-4-cost-section .all-on-4-image {
        flex: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .all-on-4-cost-section .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .snap-in-cost-section .snap-in-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .snap-in-cost-section .snap-in-image {
        flex: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .snap-in-cost-section .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Snap-In Cost Section */
.snap-in-cost-section {
    padding: 80px 0;
    background: #002A66;
    color: #fff;
}

.snap-in-cost-section .snap-in-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.snap-in-cost-section .snap-in-header-content {
    flex: 1;
}

.snap-in-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.snap-in-cost-section .learn-more-link {
    display: inline-block;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.snap-in-cost-section .learn-more-link:hover {
    background: #4a90e2;
    color: #fff;
}

.snap-in-cost-section .snap-in-image {
    flex: 0 0 500px;
    text-align: center;
}

.snap-in-cost-section .snap-in-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.snap-in-cost-section .pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.snap-in-cost-section .pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.snap-in-cost-section .pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.snap-in-cost-section .pricing-label-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 10px;
    display: block;
}

.snap-in-cost-section .pricing-price {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.snap-in-cost-section .pricing-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.snap-in-cost-section .pricing-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    margin-top: 15px;
}

/* Single & Multi-Tooth Cost Section */
.single-multi-cost-section {
    padding: 80px 0;
    background: #fff;
}

.single-multi-cost-section .single-multi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.single-multi-cost-section .single-multi-header-content {
    flex: 1;
}

.single-multi-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.single-multi-cost-section .learn-more-link {
    display: inline-block;
    color: #1a1a1a;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #4a90e2;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.single-multi-cost-section .learn-more-link:hover {
    background: #4a90e2;
    color: #fff;
}

.single-multi-cost-section .single-multi-image {
    flex: 0 0 550px;
    text-align: center;
}

.single-multi-cost-section .single-multi-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.single-multi-cost-section .pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

.single-multi-cost-section .pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.single-multi-cost-section .pricing-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.single-multi-cost-section .pricing-label-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #4a90e2;
    margin-bottom: 15px;
    display: block;
}

.single-multi-cost-section .pricing-price {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    display: block;
}

.single-multi-cost-section .pricing-starting-at {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.single-multi-cost-section .pricing-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 20px 0;
}

.single-multi-cost-section .pricing-bundle-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.single-multi-cost-section .pricing-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.single-multi-cost-section .pricing-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-top: 10px;
}

/* You Pay Less Section */
.you-pay-less-section {
    padding: 80px 0;
    background: #e8f0f8;
}

.you-pay-less-section .you-pay-less-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.you-pay-less-section .you-pay-less-text {
    flex: 0 0 45%;
    text-align: left;
}

.you-pay-less-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: left;
}

.you-pay-less-section h2 .accent-text {
    color: #4a90e2;
}

.you-pay-less-section .accent-text {
    color: #4a90e2;
}

.you-pay-less-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.you-pay-less-section .you-pay-less-cta {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.you-pay-less-section .you-pay-less-cta .btn-secondary-outline {
    background: #002A66;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #002A66;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
}

.you-pay-less-section .you-pay-less-cta .btn-secondary-outline:hover {
    background: #003d99;
    border-color: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.4);
}

.you-pay-less-section .pricing-table-wrapper {
    flex: 1;
}

.you-pay-less-section .pricing-table-desktop {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.you-pay-less-section .pricing-table-mobile {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Special Offer Banner within You Pay Less Section */
.you-pay-less-section .special-offer-banner {
    margin-top: 60px;
    padding: 80px 40px 60px;
    background: #002A66;
    color: #fff;
    border-radius: 8px 8px 0 0;
    position: relative;
    text-align: center;
}

.you-pay-less-section .special-badge-icon {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    z-index: 2;
}

.you-pay-less-section .special-badge-icon .elementor-icon-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.you-pay-less-section .special-badge-icon .elementor-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 3px solid #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.you-pay-less-section .special-badge-icon .elementor-icon::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 18px;
    height: 30px;
    background: #4a90e2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: -1;
}

.you-pay-less-section .special-badge-icon .elementor-icon::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 18px;
    height: 30px;
    background: #4a90e2;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: -1;
}

.you-pay-less-section .special-badge-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.you-pay-less-section .special-badge-icon svg path {
    fill: #000;
}

.you-pay-less-section .special-badge-text {
    margin-top: 10px;
}

.you-pay-less-section .special-badge-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 0;
}

.you-pay-less-section .special-badge-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin: 0;
}

.you-pay-less-section .special-badge-text p strong u {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

/* Financing Options Cost Section */
.financing-options-cost-section {
    padding: 80px 0;
    background: #002A66;
    color: #fff;
}

.financing-options-cost-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.financing-options-cost-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.financing-options-cost-section .financing-options-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
    flex-wrap: wrap;
}

.financing-options-cost-section .financing-logo-card {
    background: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

.financing-options-cost-section .financing-logo-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Life-Changing Results Cost Section */
.life-changing-results-section {
    padding: 80px 0;
    background: #fff;
}

.life-changing-results-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
}

.life-changing-results-section .subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.life-changing-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive Styles for Cost Page */
@media (max-width: 968px) {
    .cost-hero h1 {
        font-size: 42px;
    }
    
    .cost-hero-nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .cost-hero-nav a {
        width: 100%;
    }
    
    .parent-wrapper,
    .why-choose-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-choose-wrapper .img-wrapper {
        width: 100%;
    }
    
    .why-choose-wrapper .img-wrapper .video-thumbnail img {
        max-width: 100%;
    }
    
    .all-on-4-cost-section .pricing-cards,
    .snap-in-cost-section .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .snap-in-cost-section .snap-in-content,
    .single-multi-content {
        grid-template-columns: 1fr;
    }
    
    .single-multi-cost-section .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .all-on-4-cost-section .zirconia-info {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .all-on-4-cost-section .zirconia-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .special-badge-content {
        flex-direction: column;
        text-align: center;
    }
    
    .financing-options-cost-section .financing-options-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .you-pay-less-section .you-pay-less-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .you-pay-less-section .you-pay-less-text {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .you-pay-less-section h2 {
        text-align: center;
    }
    
    .you-pay-less-section p {
        text-align: center;
    }
    
    .you-pay-less-section .you-pay-less-cta {
        align-items: center;
    }
    
    .you-pay-less-section .pricing-table-desktop {
        display: none;
    }
    
    .you-pay-less-section .pricing-table-mobile {
        display: block;
    }
}

/* Video Content Styling for Cost Page */

.dont-overpay-section .video-thumbnail,
.why-choose-cost-section .video-thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dont-overpay-section .video-thumbnail img,
.why-choose-cost-section .video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.dont-overpay-section .video-thumbnail .play-button,
.why-choose-cost-section .video-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 2;
}

.dont-overpay-section .video-thumbnail .play-button:hover,
.why-choose-cost-section .video-thumbnail .play-button:hover {
    background: #fff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.dont-overpay-section .video-thumbnail .play-button i,
.why-choose-cost-section .video-thumbnail .play-button i {
    font-size: 28px;
    color: #667eea;
    margin-left: 4px;
}

.dont-overpay-section .video-overlay-text,
.why-choose-cost-section .video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    z-index: 1;
}

.dont-overpay-section .overlay-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, rgba(0, 42, 102, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    padding: 80px 0 100px;
    position: relative;
}

.contact-hero-content {
    text-align: center;
}

.contact-hero-heading h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #002A66;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.contact-hero-heading h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.2;
}

.contact-hero-heading .accent-text {
    color: #4a90e2;
}

.contact-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 42, 102, 0.2);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 100%;
    height: 100%;
    fill: #4a90e2;
}

.contact-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Doctor Referrals Section */
.doctor-referrals-section {
    background: #e8f0f8;
    padding: 80px 0;
}

.doctor-referrals-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.doctor-referrals-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.doctor-referrals-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #fff;
    position: relative;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.map-info-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 350px;
    max-width: 40%;
    height: 100%;
    background: #fff;
    padding: 20px 25px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    overflow-y: auto;
}

.map-location h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.map-location p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}

.map-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.rating-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-reviews {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #666;
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #4a90e2;
    text-decoration: underline;
    transition: color 0.3s;
    display: inline-block;
}

.map-link:hover {
    color: #002A66;
}

/* Image Gallery Section */
.image-gallery-section {
    padding: 80px 0;
    background: #fff;
}

.image-gallery-grid {
    display: block;
}

.gallery-item {
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Form Section */
.contact-form-section {
    background: #e8f0f8;
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
}

/* New Smile Section */
.new-smile-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.new-smile-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.new-smile-content h2 .new-smile-blue {
    color: #4a90e2;
}

.new-smile-content h2 .new-smile-black {
    color: #1a1a1a;
}

.new-smile-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.new-smile-content .accent-text {
    color: #4a90e2;
    font-weight: 600;
}

/* Schedule Consultation Section */
.schedule-consultation-section {
    background: #002A66;
    color: #fff;
}

.schedule-header-banner {
    background: #002A66;
    padding: 40px 0;
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.schedule-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    flex: 1;
    min-width: 300px;
    margin: 0;
}

.schedule-header .btn-primary {
    background: #fff;
    color: #002A66;
    white-space: nowrap;
}

.schedule-header .btn-primary:hover {
    background: #4a90e2;
    color: #fff;
}

.schedule-content-area {
    background: #e8f0f8;
    padding: 60px 0;
}

.schedule-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hours-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hours-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: left;
}


.map-section-inline {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-section-inline .map-wrapper {
    height: 100%;
    position: relative;
}

.map-section-inline .map-info-overlay {
    width: 300px;
    max-width: 35%;
    padding: 15px 20px;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #002A66;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.3);
    transition: all 0.3s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #4a90e2;
    transform: translateY(-5px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}


/* Responsive Styles for Contact Page */
@media (max-width: 1024px) {
    .contact-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .schedule-header {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-header h2 {
        text-align: center;
    }
    
    .schedule-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-section-inline {
        height: 400px;
    }
    
    .map-section-inline .map-info-overlay {
        width: 300px;
        max-width: 35%;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0 80px;
    }
    
    .contact-hero-heading h1 {
        font-size: 36px;
    }
    
    .contact-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .doctor-referrals-section,
    .contact-form-section,
    .new-smile-section,
    .schedule-consultation-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .hours-list {
        grid-template-columns: 1fr;
    }
    
    .schedule-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-section-inline {
        height: 350px;
    }
    
    .map-section-inline .map-info-overlay {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: auto;
        box-shadow: none;
        border-top: 1px solid #e0e0e0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
