/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 07 2026 | 07:44:39 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

/* Premium Design System - Options Psychiatry */

:root {
    /* Palette - Deep, Rich, Trusted */
    --primary-dark: #0F2C3A;
    --primary-gradient: linear-gradient(135deg, #0F2C3A 0%, #16425B 100%);
    --accent-orange: #FF7A15;
    --accent-glow: rgba(255, 122, 21, 0.4);

    --text-main: #1A1A1A;
    --text-light: #1c1c1c;
    --text-white: #FFFFFF;

    --bg-white: #FFFFFF;
    --bg-soft: #F4F7F9;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);

    --font-main: 'Barlow', sans-serif;

    --container-width: 1240px;
    --section-spacing: 40px;

    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 10px 40px rgba(15, 44, 58, 0.05);
    --shadow-deep: 0 20px 60px rgba(15, 44, 58, 0.15);
    --shadow-glow: 0 10px 30px var(--accent-glow);

    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Gradient Backgrounds */
    --gradient-blue-soft: linear-gradient(135deg, #0F2C3A 0%, #16425B 50%, #1A5170 100%);
    --gradient-orange-soft: linear-gradient(135deg, rgb(255 122 21 / 13%) 0%, rgba(255, 122, 21, 0.02) 100%);
    --gradient-blue-orange: linear-gradient(135deg, #0F2C3A 0%, #16425B 70%, rgba(255, 122, 21, 0.1) 100%);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--primary-dark);
    line-height: 1.2;
    font-weight: 400;
    /* Serif fonts often look better at 400 */
    font-family: 'DM Serif Display', serif;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.0rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.opt-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.opt-text-center {
    text-align: center;
}

.opt-text-white {
    color: var(--text-white);
}

.opt-section-header {
    margin-bottom: 10px;
}

.opt-section-header h2 {
    margin-bottom: 5px;
}

.opt-section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.opt-section-label {
    display: inline-block;
    background: #fbd7be;
    color: #FF7A15;
    padding: 8px 24px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--font-main);
    /* Keep labels in Barlow for readability */
}

/* Buttons */
.opt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    border: none;
}

.opt-btn-primary {
    background: #163C63;
    color: var(--text-white);
}

.opt-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: #FF8529;
    box-shadow: 0 10px 30px rgba(255, 122, 21, 0.4);
}

.opt-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.opt-btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.opt-btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.opt-btn-block {
    width: 100%;
}

/* Topbar */
.opt-topbar {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.95);
    padding: 15px 0 0;
    font-size: 0.85rem;
    position: relative;
    z-index: 1001;
}

.opt-topbar-container {
    display: flex;
    justify-content: flex-end;
}

.opt-topbar-info {
    display: flex;
    gap: 40px;
}

.opt-topbar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.opt-topbar-link:hover {
    color: var(--accent-orange);
}

.opt-topbar-icon {
    font-size: 1rem;
}

/* Header / Navigation */
.opt-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    /* Force transparency */
    box-shadow: none !important;
    border: none !important;
    z-index: 1000;
    transition: all 0.4s ease;
}

.opt-header.opt-scrolled {
    padding-top: 0;
}

.opt-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 45px;
    background: rgb(255 254 254 / 92%);
    /* Darker glass for better contrast on white text */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-top: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.opt-header.opt-scrolled .opt-header-container {
    background: rgb(255 255 255 / 90%);
    margin-top: 0;
    border-radius: 0 0 24px 24px;
    /* Less round when scrolled but still elegant */
    padding: 8px 45px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.opt-header-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 2px;
    margin-right: 60px;
    padding-left: 8px;
}

.opt-nav-menu {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.opt-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.opt-nav-item {
    position: relative;
}

.opt-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 20px;
    color: #000;
    /* Better contrast on white background */
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 44, 58, 0.05) 0%, rgba(15, 44, 58, 0.08) 100%);
    border: 1.5px solid rgba(15, 44, 58, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.opt-header.opt-scrolled .opt-nav-link {
    color: #000;
}

.opt-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.opt-nav-link:hover::after {
    transform: scaleX(1);
}

.opt-nav-link:hover {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #FF8B2E 100%);
    border-color: var(--accent-orange);
    box-shadow: 0 8px 20px rgba(255, 122, 21, 0.3);
    transform: translateY(-2px);
}

.opt-dropdown-arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.opt-dropdown:hover .opt-dropdown-arrow {
    transform: rotate(180deg);
}

.opt-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 240px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.opt-dropdown:hover .opt-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.opt-dropdown-menu li {
    margin: 0;
}

.opt-dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.opt-dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--accent-orange);
    padding-left: 28px;
}

.opt-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.opt-mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #0F2C3A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.opt-mobile-menu-toggle:hover span {
    background: var(--accent-orange);
}

/* Adjust hero section for fixed header + topbar */
.opt-hero-section {
    margin-top: 110px;
}

/* Hero Section */
.opt-hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 24px;
    margin-top: 0 !important;
    top: 0;
    overflow: hidden;
    background: #0F2C3A;
    z-index: 1;
}

.opt-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.opt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 44, 58, 0.25) 0%, rgb(15 44 58 / 23%) 100%);
    z-index: 2;
}

.opt-hero-content {
    position: relative;
    z-index: 20;
    /* High z-index to stay above everything */
    max-width: 1100px;
    margin: 0 auto;
    opacity: 1;
    color: #ffffff;
    /* animation: fadeInUp 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); */
}

.opt-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.opt-hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.opt-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.opt-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.opt-btn-hero-primary {
    background: var(--text-white);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.opt-btn-hero-primary:hover {
    background: #1abc9c;
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
}

.opt-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.opt-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* CTA Contact Strip */
.opt-cta-contact-strip {
    padding: 30px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    background: #FAFBFC;
}

.opt-cta-contact-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 45px rgba(15, 44, 58, 0.1);
    border-left: 6px solid #FF7A15;
    gap: 30px;
}

.opt-cta-contact-text h3 {
    font-size: 1.65rem;
    color: #0F2C3A;
    margin-bottom: 5px;
    font-weight: 700;
}

.opt-cta-contact-text p {
    font-size: 1rem;
    color: #5A6B7C;
    margin-bottom: 0;
    line-height: 1.6;
}

.opt-btn-contact-orange {
    background: #FF7A15;
    color: #FFFFFF;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 12px 24px rgba(255, 122, 21, 0.45);
    white-space: nowrap;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.opt-btn-contact-orange:hover {
    background: #FF8529;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(255, 122, 21, 0.55);
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .opt-cta-contact-strip {
        margin-top: 0;
        padding: 20px 0;
    }

    .opt-cta-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }

    .opt-cta-contact-text h3 {
        font-size: 1.4rem;
    }
}


/* Section 1: TMS Intro */
.opt-section-tms-intro {
    padding: 60px 0 var(--section-spacing);
    background: #FAFBFC;
}

.opt-tms-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opt-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0px
}

.opt-doctor-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.opt-credential-badge {
    background: #FFFFFF;
    padding: 24px 28px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 44, 58, 0.05);
    border-left: 5px solid transparent;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 20px;
}

.opt-credential-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 44, 58, 0.08);
}



.opt-credential-badge.opt-orange {
    border-left-color: #FF7A15;
}



.opt-credential-text strong {
    display: block;
    color: #0F2C3A;
    font-size: 1.15rem;
    margin-bottom: 6px;
    font-family: var(--font-header);
}

.opt-credential-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #5A6B7C;
    line-height: 1.6;
}


/* TMS Intro Stats - Staggered Redesign */
.opt-tms-intro-stats {
    position: relative;
    width: 100%;
}

/* TMS Intro Image & Stats Redesign */
.opt-tms-image-container {
    position: relative;
    width: 100%;
}

.opt-tms-main-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    object-fit: cover;
    display: block;
    margin-bottom: 24px;
}

.opt-stats-boxes-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.opt-small-stat-box {
    background: #FFFFFF;
    padding: 20px 10px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 30px rgba(15, 44, 58, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 122, 21, 0.1);
}

.opt-small-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 122, 21, 0.15);
    border-color: var(--accent-orange);
}

.opt-small-stat-box .opt-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.opt-small-stat-box .opt-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .opt-stats-boxes-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .opt-stats-boxes-row {
        grid-template-columns: 1fr;
    }
}



/* Grand Opening Section */
.opt-section-grand-opening {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.opt-section-grand-opening .opt-section-header {
    margin-bottom: 25px;
}

/* Video Row - 2 Columns */
.opt-grand-opening-videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.opt-video-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.opt-video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.opt-video-wrapper-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.opt-video-wrapper-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.opt-video-caption {
    padding: 24px;
    text-align: center;
}

.opt-video-caption h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.opt-video-caption p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Photo Row - 3 Columns */
.opt-grand-opening-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.opt-photo-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    transition: var(--transition-smooth);
}

.opt-photo-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-deep);
}

.opt-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.opt-photo-card:hover img {
    transform: scale(1.1);
}

.opt-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 44, 58, 0.9), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.opt-photo-card:hover .opt-photo-overlay {
    transform: translateY(0);
}

.opt-photo-overlay h4 {
    color: var(--text-white);
    font-size: 1.25rem;
    margin: 0;
}

/* Responsive Design for Grand Opening Section */
@media (max-width: 1024px) {
    .opt-grand-opening-videos {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .opt-grand-opening-photos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .opt-grand-opening-photos {
        grid-template-columns: 1fr;
    }

    .opt-video-caption h3 {
        font-size: 1.25rem;
    }

    .opt-photo-overlay {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(15, 44, 58, 0.8), rgba(15, 44, 58, 0.4));
    }
}

/* Options Gallery Section */
.opt-section-options-gallery {
    padding: var(--section-spacing) 0;
    background: #FAFBFC;
}

.opt-section-options-gallery .opt-section-header {
    margin-bottom: 25px;
}

.opt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.opt-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.opt-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.opt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.opt-gallery-item:hover img {
    transform: scale(1.1);
}

.opt-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 44, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.opt-gallery-item:hover .opt-gallery-overlay {
    opacity: 1;
}

.opt-gallery-overlay i {
    font-size: 3rem;
    color: var(--text-white);
}

/* Lightbox Modal */
.opt-lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.opt-lightbox-modal.opt-active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.opt-lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--text-white);
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10000;
}

.opt-lightbox-close:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

.opt-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    gap: 40px;
}

#lightboxImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.opt-lightbox-prev,
.opt-lightbox-next {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 2rem;
    padding: 20px 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition-smooth);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-lightbox-prev:hover,
.opt-lightbox-next:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    transform: scale(1.1);
}

.opt-lightbox-caption {
    text-align: center;
    color: var(--text-white);
    font-size: 1.25rem;
    margin-top: 20px;
}

/* Responsive Gallery */
@media (max-width: 1024px) {
    .opt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opt-lightbox-close {
        right: 30px;
        top: 20px;
        font-size: 40px;
    }

    .opt-lightbox-content {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .opt-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .opt-gallery-overlay i {
        font-size: 2rem;
    }

    .opt-lightbox-content {
        max-width: 100%;
        padding: 0 10px;
        flex-direction: column;
        gap: 15px;
        max-height: 85vh;
    }

    #lightboxImage {
        max-width: 90vw;
        max-height: 60vh;
        width: auto;
        height: auto;
    }

    .opt-lightbox-prev,
    .opt-lightbox-next {
        position: relative;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        padding: 10px;
    }

    .opt-lightbox-close {
        right: 10px;
        top: 10px;
        font-size: 32px;
        background: rgba(0, 0, 0, 0.5);
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
    }

    .opt-lightbox-caption {
        font-size: 1rem;
        padding: 0 15px;
        margin-top: 10px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    #lightboxImage {
        max-width: 95vw;
        max-height: 50vh;
    }

    .opt-lightbox-content {
        gap: 10px;
    }

    .opt-lightbox-prev,
    .opt-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .opt-lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}



.opt-video-wrapper {
    position: relative;
    padding-bottom: 38.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
}

.opt-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* Full-Width Video Section */
.opt-section-video-full {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.opt-video-full-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.opt-video-full-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.opt-video-full-wrapper p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.opt-video-full-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
    background: var(--bg-soft);
}

.opt-video-full-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
}

/* Section 2: Services / Conditions - Collage Layout */
.opt-section-conditions {
    padding: var(--section-spacing) 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.opt-services-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin-top: 25px;
}

.opt-service-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.opt-service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.opt-service-item:hover img {
    transform: scale(1.1);
}

.opt-service-item.opt-big {
    grid-column: span 2;
    grid-row: span 2;
}

.opt-service-item.opt-wide {
    grid-column: span 2;
}

.opt-service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 44, 58, 0.95) 0%, rgba(15, 44, 58, 0.8) 40%, transparent 100%);
    color: var(--text-white);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.opt-service-item:hover .opt-service-overlay {
    background: linear-gradient(to top, rgba(255, 122, 21, 0.95) 0%, rgba(255, 122, 21, 0.8) 40%, transparent 100%);
}

.opt-service-overlay h3 {
    color: var(--text-white);
    font-size: 1.8rem;
    margin-bottom: 8px;
    transform: translateY(0);
    transition: var(--transition-smooth);
}

.opt-service-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.opt-service-item:hover .opt-service-overlay p {
    opacity: 1;
    max-height: 100px;
    margin-top: 10px;
}

.opt-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.opt-service-item:hover .opt-service-link {
    opacity: 1;
}

/* Responsive Collage */
@media (max-width: 1024px) {
    .opt-services-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }

    .opt-service-item.opt-big {
        grid-column: span 2;
        grid-row: span 1;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .opt-services-collage {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .opt-service-item,
    .opt-service-item.opt-big,
    .opt-service-item.opt-wide {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .opt-service-overlay p {
        opacity: 1;
        max-height: 100px;
        margin-top: 10px;
    }

    .opt-service-link {
        opacity: 1;
    }
}


/* Section 3: Process Cards */
.opt-section-process {
    padding: var(--section-spacing) 0;
    background: #FAFBFC;
    position: relative;
    overflow: hidden;
}

.opt-section-process .opt-section-header h2,
.opt-section-process .opt-section-header p {
    color: #000;
    position: relative;
    z-index: 1;
}

.opt-process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.opt-process-card {
    background: #163C63;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-bottom: 4px solid transparent;
}

.opt-process-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(15, 44, 58, 0.25);
    border-bottom-color: var(--accent-orange);
}

.opt-process-card {
    animation: slideInUp 0.6s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.opt-process-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-soft);
}

.opt-process-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.opt-process-card:hover .opt-process-card-image img {
    transform: scale(1.05);
}

.opt-process-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: #163C63;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(200, 78, 137, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(255, 122, 21, 0.6);
    }
}

.opt-process-card-content {
    padding: 28px 24px;
}

.opt-process-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.opt-process-card-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #fff;
}

/* CTA Banner Section */
.opt-cta-banner {
    background: linear-gradient(135deg, #0F2C3A 0%, #16425B 50%, #1A5170 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.opt-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 122, 21, 0.15) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.opt-cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.opt-cta-message {
    flex: 1;
    max-width: 400px;
}

.opt-cta-message h2 {
    color: var(--text-white);
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0;
    font-weight: 700;
}

.opt-cta-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.opt-rating-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
}

.opt-rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.opt-rating-text strong {
    color: var(--text-white);
    display: block;
    font-weight: 700;
}

.opt-cta-button-wrapper {
    flex: 0 0 auto;
}

.opt-btn-cta-appointment {
    background: var(--accent-orange);
    color: var(--text-white);
    padding: 18px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 122, 21, 0.3);
    white-space: nowrap;
}

.opt-btn-cta-appointment:hover {
    background: #e66a10;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 122, 21, 0.4);
}

/* Section 4: Doctor Profile - Professional Clean Redesign */
.opt-section-doctor-profile {
    padding: 40px 0;
    background: #FFFFFF;
}

.opt-doctor-profile-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

.opt-doctor-image-container {
    padding-right: 20px;
}

.opt-doctor-profile-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 44, 58, 0.08);
    /* Soft professional shadow */
}

.opt-doctor-profile-image img {
    width: 100%;
    height: auto;
    display: block;
}

.opt-doctor-profile-content h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
    color: #0F2C3A;
}

.opt-doctor-subtitle {
    font-size: 1.25rem;
    color: #7E8C9A;
    margin-bottom: 25px;
}

/* Horizontal Credentials Row */
.opt-doctor-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.opt-doc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.opt-doc-badge i {
    font-size: 0.9rem;
}

/* Badge Colors matching image feel */
.opt-doc-badge-purple {
    background: #F3ECF7;
    color: #7B3F9B;
}

.opt-doc-badge-orange {
    background: #FFF4EB;
    color: #E67E22;
}

.opt-doc-badge-green {
    background: #E9F7EF;
    color: #27AE60;
}

.opt-doc-badge-blue {
    background: #EBF5FB;
    color: #3498DB;
}

.opt-doctor-bio {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5A6B7C;
    margin-bottom: 10px;
}

/* Quote Section */
.opt-doctor-quote-box {
    border-left: 4px solid #FF7A15;
    padding: 15px 0 15px 25px;
    margin-top: 35px;
}

.opt-doctor-quote-box blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: #0F2C3A;
    margin-bottom: 10px;
    line-height: 1.5;
}

.opt-doctor-quote-box cite {
    font-size: 0.95rem;
    color: #FF7A15;
    font-weight: 700;
    font-style: normal;
}

.opt-doctor-actions {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1024px) {
    .opt-doctor-profile-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .opt-doctor-image-container {
        max-width: 600px;
        margin: 0 auto;
        padding-right: 0;
    }
}


/* Section 5: Why Choose - Redesign based on image */
.opt-section-why-choose {
    padding: 40px 0;
    background: linear-gradient(135deg, rgb(255, 245, 238) 0%, rgb(255, 223, 204) 100%);
    /* Light cream/peach background */
    position: relative;
    overflow: hidden;
}

.opt-section-why-choose .opt-section-header {
    margin-bottom: 22px;
    text-align: center;
}

.opt-section-why-choose .opt-section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 5px;
}

.opt-section-why-choose .opt-section-header p {
    color: #5A6B7C;
    font-size: 1.0rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.opt-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.opt-why-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 16px;
    border-top: 5px solid #FF7A15;
    /* The orange accent on top */
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    text-align: left;
}

.opt-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(15, 44, 58, 0.08);
}

.opt-why-card h3 {
    color: #0F2C3A;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.opt-why-card p {
    color: #5A6B7C;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Response for Why Choose */
@media (max-width: 1024px) {
    .opt-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opt-section-why-choose .opt-section-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .opt-why-choose-grid {
        grid-template-columns: 1fr;
    }
}


/* Insurance Logos Section */
.opt-section-insurance {
    padding: 60px 0;
    background: var(--bg-white);
}

.opt-insurance-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.opt-insurance-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-insurance-logo-item img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.opt-insurance-logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 10px 25px rgba(15, 44, 58, 0.15);
}

/* Section 6: Relaxing CTA */
.opt-section-relax-cta {
    padding: 60px 0;
    background: linear-gradient(rgba(15, 44, 58, 0.75), rgba(15, 44, 58, 0.75)),
        url('img/cta-bg.webp') center/cover;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.opt-relax-cta-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.opt-relax-cta-content h2 {
    color: var(--text-white);
    margin-bottom: 24px;
}

.opt-relax-cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.opt-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section 7: Insurance */
.opt-section-insurance {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
    position: relative;
}

.opt-insurance-reassurance {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.opt-reassurance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-main);
}

.opt-reassurance-icon {
    width: 28px;
    height: 28px;
    background: #E6F4EA;
    color: #00C853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    flex-shrink: 0;
}

.opt-insurance-slider {
    overflow: hidden;
    margin: 60px 0;
    position: relative;
}

.opt-insurance-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.opt-insurance-logo {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-light);
    opacity: 0.6;
    transition: var(--transition-smooth);
    padding: 20px 40px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
}

.opt-insurance-logo:hover {
    opacity: 1;
    color: var(--primary-dark);
}

.opt-insurance-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
}

.opt-insurance-note a {
    color: var(--accent-orange);
    font-weight: 600;
}

.opt-insurance-note a:hover {
    text-decoration: underline;
}

/* Section 8: Testimonials */
/* Section 8: Testimonials - Modern Slider Redesign */
.opt-section-testimonials {
    padding: 40px 0;
    background: linear-gradient(135deg, rgb(255, 245, 238) 0%, rgb(255, 223, 204) 100%);
    /* Matching Why Choose section */
    overflow: hidden;
}

.opt-section-testimonials .opt-section-header h2 {
    color: #0F2C3A;
    font-size: 2.8rem;
    margin-bottom: 5px;
}

.opt-section-testimonials .opt-section-header p {
    color: #5A6B7C;
    margin-bottom: 5px;
}

.opt-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.opt-testimonials-wrapper {
    overflow: hidden;
    margin: 0 -15px;
}

.opt-testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.opt-testimonial-card-wrapper {
    flex: 0 0 50%;
    /* 2 per view on larger screens */
    padding: 15px;
}

.opt-testimonial-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(15, 44, 58, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 44, 58, 0.05);
}

.opt-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(15, 44, 58, 0.08);
}

.opt-testimonial-patient-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.opt-patient-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFE6D5;
}

.opt-patient-details h4 {
    color: #0F2C3A;
    font-size: 1.15rem;
    margin: 0;
}

.opt-testimonial-stars {
    font-size: 0.9rem;
    margin-top: 5px;
    color: #FF7A15;
}

.opt-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5A6B7C;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.opt-testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 15px;
}

.opt-testimonial-prev,
.opt-testimonial-next {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    color: #0F2C3A;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.opt-testimonial-prev:hover,
.opt-testimonial-next:hover {
    background: #FF7A15;
    color: #FFFFFF;
    border-color: #FF7A15;
    transform: scale(1.1);
}

.opt-testimonial-dots {
    display: flex;
    gap: 10px;
}

.opt-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.opt-dot.opt-active {
    background: #FF7A15;
    width: 25px;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .opt-testimonial-card-wrapper {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .opt-testimonial-card-wrapper {
        flex: 0 0 100%;
    }

    .opt-section-testimonials .opt-section-header h2 {
        font-size: 2.2rem;
    }
}


/* Section 9: Contact */
.opt-section-contact {
    padding: 40px 0;
    position: relative;
}

.opt-contact-card {
    background: #214261;
    backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.opt-contact-info-wrapper h2 {
    color: var(--text-white);
    margin-bottom: 16px;
    font-size: 2.5rem;
}

.opt-contact-map {
    margin-top: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.opt-contact-map iframe {
    display: block;
    width: 100%;
}

.opt-contact-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

.opt-contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.opt-contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.opt-contact-icon {
    width: 48px;
    height: 48px;
    background: #FF7A15;
    border-radius: 12px;
    display: flex;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.opt-contact-info-item strong {
    display: block;
    color: var(--text-white);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.opt-contact-info-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.opt-contact-info-item p.opt-hours {
    margin-top: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.opt-contact-info-item a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.opt-contact-info-item a:hover {
    color: #1abc9c;
}

.opt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opt-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.opt-form-group {
    display: flex;
    flex-direction: column;
}

.opt-form-group input,
.opt-form-group textarea,
.opt-form-group select {
    padding: 18px 22px;
    background: rgba(15, 44, 58, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.opt-form-group input::placeholder,
.opt-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.opt-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.opt-w3.opt-org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    cursor: pointer;
}

.opt-form-group select option {
    background: var(--primary-dark);
    color: var(--text-white);
}

.opt-form-group input:focus,
.opt-form-group textarea:focus,
.opt-form-group select:focus {
    outline: none;
    border-color: #1abc9c;
    background: rgba(15, 44, 58, 0.7);
    box-shadow: 0 0 0 4px rgba(26, 188, 156, 0.15);
}

.opt-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.opt-btn-submit {
    background: #FF7A15;
    color: var(--text-white);
    padding: 20px 40px;
    border-radius: 27px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    width: 100%;
}

.opt-form-helper-text {
    text-align: center;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.opt-btn-submit:hover {
    background: #16a085;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(26, 188, 156, 0.5);
}

.opt-emergency-notice-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.opt-emergency-notice {
    padding: 24px 32px;
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    border-radius: var(--radius-md);
    max-width: 900px;
    margin: 0 auto;
}

/* Section 10: FAQ */
/* Section 10: FAQ - Premium Modern Accordion */
.opt-section-faq {
    padding: 40px 0;
    background: linear-gradient(135deg, rgb(255, 245, 238) 0%, rgb(255, 223, 204) 100%);
}

.opt-faq-accordion {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opt-faq-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 44, 58, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.opt-faq-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(15, 44, 58, 0.08);
    transform: translateY(-2px);
}

.opt-faq-item.opt-active {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 45px rgba(255, 122, 21, 0.12);
}

.opt-faq-question {
    width: 100%;
    padding: 28px 35px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.opt-faq-item.opt-active .opt-faq-question {
    color: var(--accent-orange);
    padding-bottom: 15px;
}

.opt-faq-toggle {
    font-size: 1.2rem;
    color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-faq-item.opt-active .opt-faq-toggle {
    transform: rotate(180deg);
    color: var(--accent-orange);
}

.opt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #ffffff;
}

.opt-faq-item.opt-active .opt-faq-answer {
    max-height: 800px;
    /* Increased for longer content */
}

.opt-faq-answer p {
    padding: 0 35px 30px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

/* Footer */
.opt-footer {
    background: #214261;
    color: rgba(255, 255, 255, 0.9);
    padding: 30px 0 0;
}

.opt-footer-top-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    padding-bottom: 23px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.opt-footer-description-centered {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.opt-footer-cta {
    margin-bottom: 30px;
}

.opt-footer-social-centered {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.opt-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 13px;
}

.opt-footer-logo {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.opt-footer-logo img {
    height: auto;
    max-width: 220px;
}


.opt-social-icon {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.opt-social-icon:hover {
    background: var(--text-white);
    color: #214261;
    border-color: var(--text-white);
}

.opt-footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.opt-footer-links,
.opt-footer-contact,
.opt-footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opt-footer-links li {
    margin-bottom: 14px;
}

.opt-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opt-footer-links a:hover {
    color: var(--text-white);
}

.opt-footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.opt-footer-contact a {
    color: inherit;
    transition: color 0.3s ease;
}

.opt-footer-contact a:hover {
    color: var(--text-white);
}

.opt-contact-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.opt-footer-hours li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.opt-footer-hours .opt-day {
    color: rgba(255, 255, 255, 0.8);
}

.opt-footer-hours .opt-time {
    color: var(--text-white);
    font-weight: 500;
}

.opt-footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opt-footer-copyright {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.opt-footer-policies {
    display: flex;
    gap: 32px;
}

.opt-footer-policies a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.opt-footer-policies a:hover {
    color: var(--text-white);
}

/* ====================================
   ABOUT US PAGE STYLES
   ==================================== */

/* Breadcrumbs Section */
.opt-breadcrumbs-section {
    padding: 140px 0 40px;
    background: var(--bg-soft);
}

.opt-breadcrumbs {
    margin-bottom: 24px;
}

.opt-breadcrumbs-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.opt-breadcrumb-item a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.opt-breadcrumb-item a:hover {
    color: var(--accent-orange);
}

.opt-breadcrumb-item.opt-active {
    color: var(--primary-dark);
    font-weight: 600;
}

.opt-breadcrumb-separator {
    color: var(--text-light);
    opacity: 0.5;
}

.opt-page-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin: 0;
}

/* Who We Are Section */
.opt-section-who-we-are {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.opt-who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opt-who-we-are-content h2 {
    margin: 16px 0 24px;
}

.opt-who-we-are-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.opt-who-we-are-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.opt-who-we-are-image:hover img {
    transform: scale(1.05);
}

/* Stats Grid inside Who We Are */
.opt-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.opt-stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.opt-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.opt-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.opt-stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* How It Started Section */
.opt-section-how-started {
    padding: var(--section-spacing) 0;
}

.opt-how-started-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.opt-how-started-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

.opt-how-started-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.opt-how-started-image:hover img {
    transform: scale(1.05);
}

.opt-how-started-content h2 {
    margin: 16px 0 24px;
}

.opt-timeline-story {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.opt-story-item {
    display: flex;
    gap: 20px;
}

.opt-story-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-orange-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-orange);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.opt-story-item:hover .opt-story-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 122, 21, 0.3);
}

.opt-story-content h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.opt-story-content p {
    margin: 0;
    font-size: 1.05rem;
}

/* Mission & Vision Section */
.opt-section-mission-vision {
    padding: var(--section-spacing) 0;
}

.opt-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.opt-mission-card,
.opt-vision-card {
    padding: 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.opt-mission-card:hover,
.opt-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}

.opt-mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-orange-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.opt-mission-card h3,
.opt-vision-card h3 {
    margin-bottom: 16px;
}

.opt-mission-points,
.opt-vision-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.opt-mission-point,
.opt-vision-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.opt-mission-point:hover,
.opt-vision-point:hover {
    background: var(--gradient-orange-soft);
    transform: translateX(8px);
}

.opt-mission-point i,
.opt-vision-point i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.opt-mission-point span,
.opt-vision-point span {
    color: var(--text-main);
    font-weight: 500;
}

/* Core Values */
.opt-core-values {
    margin-top: 60px;
    padding: 50px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.opt-core-values h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.opt-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.opt-value-item {
    text-align: center;
    padding: 24px;
    transition: var(--transition-smooth);
}

.opt-value-item:hover {
    transform: translateY(-8px);
}

.opt-value-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.opt-value-item h4 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.opt-value-item p {
    font-size: 0.95rem;
    margin: 0;
}



/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .opt-tms-intro-grid,
    .opt-doctor-profile-wrapper,
    .opt-contact-card,
    .opt-condition-slide {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .opt-contact-card {
        padding: 40px;
    }

    .opt-form-row {
        grid-template-columns: 1fr;
    }

    .opt-hero-title {
        font-size: 3.0rem;
    }

    .opt-hero-subtitle {
        font-size: 1.15rem;
    }

    .opt-conditions-nav-wrapper {
        gap: 12px;
    }

    .opt-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .opt-slide-content {
        padding: 30px;
    }

    .opt-slide-number {
        font-size: 4rem;
    }

    .opt-slide-image {
        min-height: 300px;
    }

    .opt-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opt-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* About Us Page Responsive */
    .opt-who-we-are-grid,
    .opt-how-started-grid,
    .opt-mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .opt-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .opt-page-title {
        font-size: 2.5rem;
    }


    .opt-process-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .opt-process-timeline {
        grid-template-columns: 1fr;
    }

    .opt-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .opt-footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .opt-section-spacing {
        --section-spacing: 60px;
    }

    .opt-quote-wrapper {
        padding: 40px 28px;
    }

    .opt-quote-icon {
        font-size: 80px;
    }

    .opt-quote-text {
        font-size: 1.5rem;
    }


    /* Mobile menu toggle */
    .opt-mobile-menu-toggle {
        display: flex !important;
    }

    .opt-hero-section {
        height: 32vh;
        min-height: unset;
        padding: 0;
    }

    .opt-hero-video {
        margin-top: 40px;
        height: auto;
    }

    .opt-header-container {
        padding: 2px 20px;
        margin-top: 0px;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    .opt-hero-title {
        font-size: 2.8rem;
    }

    .opt-hero-subtitle {
        font-size: 1.05rem;
    }

    .opt-hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .opt-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .opt-btn-hero-primary,
    .opt-btn-hero-secondary {
        width: 100%;
        text-align: center;
    }

    /* Mobile Navigation */
    .opt-topbar {
        display: none;
    }

    .opt-header {
        top: 0;
    }

    .opt-mobile-menu-toggle {
        display: flex;
    }

    .opt-header-logo {
        font-size: 1.5rem;
        margin-right: 0;
    }

    .opt-nav-menu {
        position: fixed;
        top: 80px;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        margin: 0 !important;
        background: var(--bg-white);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .opt-nav-menu.opt-active {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .opt-nav-list {
        flex-direction: column;
        padding: 0;
        margin: 0;
        gap: 0;
        width: 100%;
    }

    .opt-nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
        margin: 0;
    }

    .opt-nav-item:last-child {
        border-bottom: none;
    }

    .opt-nav-link {
        display: block;
        width: 100%;
        padding: 4px 24px;
        color: #0F2C3A !important;
        font-size: 1.05rem;
        text-align: left;
    }

    .opt-nav-link::after {
        display: none;
    }

    .opt-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: var(--bg-soft);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .opt-dropdown.opt-active .opt-dropdown-menu {
        max-height: 500px;
    }

    .opt-dropdown-menu li {
        width: 100%;
    }

    .opt-dropdown-menu a {
        display: block;
        width: 100%;
        padding: 14px 24px 14px 48px;
        text-align: left;
        color: var(--text-main);
        font-size: 0.95rem;
    }

    .opt-dropdown-menu a:hover {
        background: rgba(255, 122, 21, 0.1);
        color: var(--accent-orange);
        padding-left: 52px;
    }

    .opt-conditions-tabs {
        gap: 8px;
    }

    .opt-condition-tab {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .opt-nav-arrow {
        display: none;
    }

    .opt-slide-content {
        padding: 24px;
    }

    .opt-slide-number {
        font-size: 3rem;
    }

    .opt-treatment-list {
        gap: 12px;
    }

    .opt-treatment-list li {
        font-size: 0.95rem;
    }

    .opt-process-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .opt-cta-banner {
        padding: 40px 0;
        margin: 40px 0;
    }

    .opt-cta-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .opt-cta-message {
        max-width: 100%;
    }

    .opt-cta-message h2 {
        font-size: 1.5rem;
    }

    .opt-cta-rating {
        flex-direction: column;
        gap: 12px;
    }

    .opt-rating-number {
        font-size: 3rem;
    }

    .opt-cta-button-wrapper {
        width: 100%;
    }

    .opt-btn-cta-appointment {
        width: 100%;
        text-align: center;
    }

    /* Doctor Section Mobile */
    .opt-doctor-profile-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .opt-doctor-profile-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .opt-doctor-profile-content {
        text-align: center;
    }

    .opt-doctor-credentials {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .opt-credential-badge {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }

    .opt-process-badge {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .opt-stats-grid,
    .opt-why-choose-grid {
        grid-template-columns: 1fr;
    }

    /* About Us Page Mobile Responsive */
    .opt-breadcrumbs-section {
        padding: 100px 0 30px;
    }

    .opt-page-title {
        font-size: 2rem;
    }

    .opt-who-we-are-grid,
    .opt-how-started-grid,
    .opt-mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .opt-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .opt-values-grid {
        grid-template-columns: 1fr;
    }

    .opt-core-values {
        padding: 30px 20px;
    }

    .opt-mission-card,
    .opt-vision-card {
        padding: 30px 24px;
    }


    .opt-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .opt-relax-cta-content {
        padding: 40px 28px;
    }

    .opt-contact-card {
        padding: 28px;
    }

    .opt-contact-info-wrapper h2 {
        font-size: 2rem;
    }

    .opt-contact-map {
        margin-top: 50px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .opt-contact-map iframe {
        display: block;
        width: 100%;
    }

    .opt-form-row {
        grid-template-columns: 1fr;
    }


    .opt-doctor-profile-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .opt-doctor-credentials {
        gap: 15px;
    }


    .opt-credential-icon {
        margin-bottom: 10px;
    }

    .opt-testimonial-card {
        padding: 30px;
    }

    .opt-testimonial-text {
        font-size: 1.05rem;
    }

    .opt-contact-info-card {
        padding: 24px;
    }

    .opt-faq-question {
        font-size: 1.1rem;
        padding: 20px 24px;
    }

    .opt-faq-answer p {
        padding: 0 24px 24px;
    }

    .opt-footer-top-centered {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .opt-footer-description-centered {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .opt-footer {
        padding: 60px 0 0;
    }

    .opt-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .opt-footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .opt-footer-policies {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

