/* ============================================
   SCOPE DENTAL - Main Stylesheet
   Matching beehivedental.com design system
   ============================================ */

:root {
    --primary: #28211D;
    --primary-light: #3a322d;
    --accent: #FFCFAE;
    --accent-hover: #F7C39E;
    --accent-light: rgba(255,207,174,0.15);
    --black: #000000;
    --white: #ffffff;
    --text-dark: #28211D;
    --text-body: #28211D;
    --text-light: #6b5e54;
    --border-color: rgba(40,33,29,0.1);
    --light-bg: rgba(255,207,174,0.08);
    --shadow: 0 2px 15px rgba(40,33,29,0.08);
    --shadow-lg: 0 10px 40px rgba(40,33,29,0.12);
    --radius: 5px;
    --transition: all 0.3s ease;
}

/* ---- Reset & Base ---- */
* { box-sizing: border-box; }

body.mobile-menu-open {
    overflow: hidden;
}

body {
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    color: var(--text-body);
    line-height: 1.8;
    overflow-x: hidden;
    font-weight: 300;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
}

h1 { font-size: clamp(32px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: 28px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; font-weight: 400; }
h6 { font-size: 14px; }

p {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 300;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---- Top Bar ---- */
.top-bar {
    background: var(--primary);
    color: var(--accent);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,207,174,0.1);
}

.top-bar a { color: var(--accent); }
.top-bar a:hover { color: var(--white); }

.top-bar .social-links a {
    margin-left: 15px;
    font-size: 1rem;
    color: var(--accent);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 0;
    transition: var(--transition);
    background: var(--primary);
    box-shadow: none;
    border-bottom: none;
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: rgba(40,33,29,0.98);
}

.navbar-brand {
    padding: 14px 0;
    margin-right: 0;
}

.navbar-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(85%) sepia(30%) saturate(500%) hue-rotate(335deg) brightness(105%);
    transition: var(--transition);
}
@media screen and (max-width: 768px) {
    .navbar-logo {
        height: 40px;
    }
}
.navbar-brand:hover .navbar-logo {
    filter: brightness(0) invert(100%);
}

.navbar-toggler {
    border: none;
    padding: 8px 4px;
    background: none;
    outline: none;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1051;
}

.navbar-toggler:focus { box-shadow: none !important; }

.toggler-bar {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.navbar-toggler.active .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler.active .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler.active .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-link {
    font-weight: 400;
    color: var(--accent) !important;
    padding: 26px 16px !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link::after,
.dropdown-toggle::after {
    display: none !important;
}

.nav-chevron {
    font-size: 8px;
    margin-left: 4px;
    vertical-align: middle;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.nav-item.dropdown:hover .nav-chevron {
    transform: rotate(180deg);
}

.nav-phone .nav-link {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.nav-phone-icon {
    font-size: 11px;
    margin-right: 3px;
}

/* Dropdown */
.dropdown-menu {
    background: var(--primary);
    border: none;
    border-radius: 0;
    padding: 8px 0;
    min-width: 240px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    margin-top: 0 !important;
    border-top: 2px solid var(--accent);
}

.dropdown-icon {
    width: 18px;
    text-align: center;
    margin-right: 10px;
    font-size: 12px;
    color: var(--accent);
    opacity: 0.5;
}

.dropdown-item {
    color: rgba(255,207,174,0.75) !important;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.3px;
    border-bottom: none;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255,207,174,0.06);
    color: var(--white) !important;
    padding-left: 24px;
}

.dropdown-item:hover .dropdown-icon {
    opacity: 1;
    color: var(--white);
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        animation: dropdownFadeIn 0.25s ease;
    }
}

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

.btn-book {
    background: var(--accent);
    color: var(--primary) !important;
    padding: 12px 22px !important;
    border-radius: 0;
    font-weight: 500;
    font-size: 11px;
    border: 2px solid var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    line-height: 1;
}

.btn-book:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        105deg,
        rgba(40,33,29,0.92) 0%,
        rgba(40,33,29,0.75) 35%,
        rgba(40,33,29,0.30) 65%,
        rgba(40,33,29,0.15) 100%
    );
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 80px 0;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--accent);
    font-weight: 300;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    font-style: italic;
}

.hero-content h1 {
    font-size: clamp(34px, 4.5vw, 58px);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.2;
    max-width: 600px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-btn {
    display: inline-block;
    padding: 15px 32px;
    border-radius: 0;
    font-weight: 500;
    font-size: 11px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.hero-btn-primary {
    background: var(--accent);
    color: var(--primary);
    border: 2px solid var(--accent);
}

.hero-btn-primary:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.hero-call-text {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 300;
}

.hero-call-text a {
    color: var(--accent);
    font-weight: 400;
}

.hero-call-text a:hover {
    color: var(--white);
}

/* Legacy hero button outline (for other pages) */
.hero-btn-outline {
    background: transparent;
    color: var(--accent);
    border: none;
    padding: 15px 0;
    font-weight: 300;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.hero-btn-outline:hover {
    color: var(--white);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 1rem;
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    font-style: italic;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 1.5rem;
    border-radius: 0;
}

/* ============================================
   WELCOME SECTION (NEW STYLE)
   ============================================ */
.welcome-section {
    background: #FFCEA6; /* Peach background from image */
    padding: 100px 0;
}

.welcome-inner-box {
    border: 1px solid rgba(40,33,29,0.15);
    padding: 60px;
    position: relative;
    background: transparent;
}

.welcome-text-content {
    padding-right: 40px;
}

.welcome-text-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.welcome-text-content p {
    color: var(--primary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.welcome-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.welcome-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
}

.welcome-features li i {
    font-size: 14px;
    margin-top: 5px;
    color: var(--primary);
}

.welcome-image-wrapper {
    position: relative;
    /* Removed padding to match image aspect more closely */
}

.welcome-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.welcome-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: #FFCEA6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(40,33,29,0.1);
}

.welcome-badge-content {
    text-align: center;
}

.welcome-badge-content img {
    max-width: 80px;
    margin-bottom: 5px;
}

.welcome-badge-content span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.2;
}

@media (max-width: 991px) {
    .welcome-inner-box {
        padding: 40px 25px;
    }
    .welcome-text-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .welcome-badge {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: 10px;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--white);
}

.testimonials-intro .stars-row {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonials-intro h2 {
    color: var(--primary);
    font-weight: 300;
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 1rem;
    font-style: italic;
    line-height: 1.4;
}

.testimonials-intro .disclaimer {
    color: rgba(40,33,29,0.45);
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
}

.testimonial-card-home {
    background: var(--accent);
    border-radius: 0;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card-home .quote {
    color: var(--primary);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-card-home .testimonial-divider {
    height: 1px;
    background: rgba(40,33,29,0.12);
    margin-bottom: 1rem;
}

.testimonial-card-home .patient-name {
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 0;
    font-size: 14px;
}

/* Legacy testimonial cards */
.testimonial-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    height: 100%;
    position: relative;
    border-left: 3px solid var(--accent);
    padding-left: 25px;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--accent);
    position: absolute;
    top: -15px;
    left: 25px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card .stars {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.8;
}

.testimonial-card .patient-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* ============================================
   SERVICES SECTION (HOME)
   ============================================ */
.services-section {
    background: var(--white);
}

.service-card-home {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-home:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40,33,29,0.12);
}

.service-card-img {
    height: 240px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-home:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h4 {
    font-size: 20px;
    margin-bottom: 0.8rem;
    font-weight: 400;
    color: var(--primary);
}

.service-card-body p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    flex: 1;
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.service-link {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--primary) !important;
    font-weight: 500;
    display: inline-block;
}

.service-link:hover {
    color: var(--accent-hover) !important;
}

/* Legacy service cards (for services listing page) */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    text-align: left;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40,33,29,0.1);
    border-color: var(--accent);
}

.service-card .icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius);
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--accent);
    color: var(--primary);
}

.service-card h4 {
    font-size: 22px;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-card .btn-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card .btn-link:hover {
    color: var(--accent-hover);
}

/* ============================================
   AMENITIES SECTION
   ============================================ */
.amenities-bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.amenities-overlay {
    display: none; /* Removed overlay as per request */
}

.amenities-glass-card {
    position: relative;
    z-index: 5; /* Ensure it stays above everything */
    background: rgba(255, 255, 255, 0.98); /* Less transparency to solve "behind" sensation */
    padding: 60px;
    border-radius: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2); /* Stronger shadow to bring it forward */
    border-left: 5px solid var(--accent);
    transform: translateY(0);
}

.amenities-tag {
    display: inline-block;
    color: var(--text-light);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.amenities-glass-card h2 {
    color: var(--primary);
    font-weight: 300;
    font-size: clamp(28px, 3.5vw, 44px);
    margin-bottom: 0.5rem;
    font-style: italic;
    line-height: 1.2;
}

.amenities-glass-card h3 {
    color: var(--text-light);
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 1.5rem;
}

.amenities-divider {
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-bottom: 2rem;
}

.amenities-desc {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 15px;
    font-weight: 400;
    opacity: 0.9;
}

.amenities-grid-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr; /* Changed to one per row as per request */
    gap: 12px 25px;
}

.amenities-grid-list li {
    color: var(--primary);
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.amenities-grid-list li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 14px;
}

@media (max-width: 991px) {
    .amenities-bg-section {
        background-attachment: scroll;
        min-height: auto;
    }
    
    .amenities-glass-card {
        padding: 40px 30px;
        margin: 20px 0;
    }
}

@media (max-width: 575px) {
    .amenities-grid-list {
        grid-template-columns: 1fr;
    }
}

/* Legacy amenity items */
.amenity-section {
    position: relative;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
}

.amenity-item {
    text-align: left;
    padding: 8px 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.amenity-item .icon {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: 12px;
    margin-bottom: 0;
}

.amenity-item h5 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
    color: var(--white);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    background: var(--white);
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card {
    padding: 0 30px;
}

.pricing-card h3 {
    color: var(--primary);
    font-weight: 300;
    font-size: clamp(24px, 3vw, 34px);
    margin-bottom: 0.3rem;
    font-style: italic;
}

.pricing-card h4 {
    color: var(--accent-hover);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 1rem;
    font-style: italic;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
}

.pricing-link {
    color: var(--primary) !important;
    font-weight: 400;
    font-size: 14px;
    display: inline-block;
    margin-top: 0.5rem;
}

.pricing-link:hover {
    color: var(--accent-hover) !important;
}

/* ============================================
   OFFICE TOUR SECTION (SLIDER)
   ============================================ */
.tour-section {
    background: var(--white);
    overflow: hidden;
    padding: 100px 0;
}

.tour-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.tour-icon svg {
    stroke: var(--accent);
}

.tour-subtitle {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.tour-slider-wrapper {
    position: relative;
    margin-top: 50px;
}

.tour-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.tour-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.tour-slide {
    flex: 0 0 70%; /* Shows majority of current and bits of next/prev */
    margin: 0 15px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    opacity: 0.6;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none; /* Removed shadows as per request */
}

.tour-slide.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: none; /* Removed shadows as per request */
}

.tour-slide img {
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

/* Nav arrows */
.tour-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tour-nav:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.tour-prev { left: 5%; }
.tour-next { right: 5%; }

/* Dots */
.tour-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.tour-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(40,33,29,0.1);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.tour-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

@media (max-width: 991px) {
    .tour-slide {
        flex: 0 0 85%;
    }
    .tour-slide img {
        height: 350px;
    }
    .tour-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* ============================================
   VISIT / LOCATION SECTION
   ============================================ */
.visit-section {
    background: #faf3ed;
    padding: 100px 0;
    overflow: hidden;
}

/* Visit Image */
.visit-image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.visit-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0;
}

/* Visit Content (right side) */
.visit-content {
    padding-left: 30px;
}

.visit-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-style: italic;
    line-height: 1.2;
}

.visit-intro {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.visit-intro strong {
    color: var(--primary);
    font-weight: 600;
}

.visit-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 1.8rem;
}

.visit-icon {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.6;
}

.visit-info-item p {
    color: var(--primary);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 0;
}

.visit-link {
    color: var(--primary) !important;
    font-weight: 500;
}

.visit-link:hover {
    color: var(--accent-hover) !important;
}

/* Visit section responsive */
@media (max-width: 991px) {
    .visit-image {
        max-width: 400px;
        margin-bottom: 40px;
    }

    .visit-content {
        padding-left: 0;
    }
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-section {
    background: var(--accent);
    padding: 70px 0;
}

.final-cta-section h2 {
    color: var(--primary);
    font-weight: 300;
    font-size: clamp(26px, 3.5vw, 42px);
    margin-bottom: 1rem;
    font-style: italic;
}

.final-cta-section p {
    color: rgba(40,33,29,0.65);
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.9;
    font-size: 15px;
    font-weight: 300;
}

/* ============================================
   CTA SECTION (GENERIC)
   ============================================ */
.cta-section {
    background: var(--accent);
    color: var(--primary);
    padding: 70px 0;
}

.cta-section h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 300;
}

.cta-section p {
    color: var(--primary);
    opacity: 0.85;
}

.cta-section .btn {
    padding: 15px 32px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .btn-light {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.cta-section .btn-light:hover {
    background: var(--black);
    color: var(--white);
}

.cta-section .btn-outline-light {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.cta-section .btn-outline-light:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: var(--primary);
    padding: 100px 0 60px;
    color: var(--white);
    text-align: left;
    position: relative;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(32px, 5vw, 60px);
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-style: italic;
}

.page-banner p { color: var(--accent); }

.page-banner .breadcrumb { justify-content: flex-start; margin-bottom: 0; }
.page-banner .breadcrumb-item a { color: var(--accent); }
.page-banner .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,207,174,0.5); }

/* ============================================
   TEAM SECTION
   ============================================ */
.team-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 0;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card .photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.2rem;
    border: 3px solid var(--accent);
}

.team-card .photo-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.2rem;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 0.3rem;
    font-weight: 400;
}

.team-card .title {
    color: var(--accent-hover);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 0.8rem;
}

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

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #e8ddd4, #f5efe9);
}

.blog-card .card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card .date {
    color: var(--accent-hover);
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h4 {
    font-size: 20px;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.blog-card p {
    color: var(--text-light);
    font-size: 14px;
    flex: 1;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-accordion .accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 0 !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-dark);
    padding: 20px 24px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--accent-light);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--accent);
}

.faq-accordion .accordion-body {
    padding: 0 24px 18px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 18px;
    border-radius: 0;
    border: 1px solid rgba(40,33,29,0.2);
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: rgba(40,33,29,0.02);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255,207,174,0.2);
    background: var(--white);
}

.contact-form .form-label {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-form .btn-submit {
    background: var(--primary);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
}

.contact-form .btn-submit:hover {
    background: var(--black);
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info-box {
    background: var(--white);
    border-radius: 0;
    padding: 35px;
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon {
    width: 45px;
    height: 45px;
    border-radius: 0;
    background: var(--accent-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info-item h5 {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.contact-info-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-info-item a { color: var(--text-dark); }
.contact-info-item a:hover { color: var(--accent-hover); }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40,33,29,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay { opacity: 1; }

.gallery-item .overlay i {
    color: var(--accent);
    font-size: 2rem;
}

/* ============================================
   INFO CARDS (INSURANCE/PRICING)
   ============================================ */
.info-section { background: var(--light-bg); }

.info-card {
    background: var(--white);
    border-radius: 0;
    padding: 35px;
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
}

.info-card .icon {
    font-size: 2.8rem;
    color: var(--accent-hover);
    margin-bottom: 1.2rem;
}

.info-card h4 {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 20px;
}

.info-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   STEPS
   ============================================ */
.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-card .step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 auto 1.2rem;
}

.step-card h4 {
    font-size: 20px;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: var(--accent);
    padding: 60px 0 0;
}

.site-footer h5 {
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.2rem;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.site-footer p {
    color: rgba(255,207,174,0.5);
    font-size: 13px;
    line-height: 1.8;
}

.site-footer a {
    color: rgba(255,207,174,0.5);
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 300;
}

.site-footer a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-hours {
    margin-top: 1rem;
    font-size: 12px !important;
    color: rgba(255,207,174,0.4) !important;
}

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

.footer-review-links a {
    display: inline-flex !important;
    align-items: center;
    color: rgba(255,207,174,0.6);
    font-size: 13px;
}

.footer-review-links a:hover {
    color: var(--accent);
    padding-left: 0;
}

.footer-social a {
    display: inline-flex !important;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255,207,174,0.2);
    background: transparent;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    font-size: 0.8rem;
    color: rgba(255,207,174,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    padding-left: 0;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: rgba(0,0,0,0.15);
    margin-top: 45px;
    padding: 0;
    border-top: 1px solid rgba(255,207,174,0.06);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 18px 0;
    gap: 10px;
}

.footer-bottom p {
    color: rgba(255,207,174,0.35);
    font-size: 11px;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.footer-bottom-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,207,174,0.35);
    font-size: 11px;
    font-weight: 300;
    display: inline;
    margin-bottom: 0;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.footer-bottom-links a:hover {
    color: rgba(255,207,174,0.6);
    padding-left: 0;
}

.footer-credit {
    color: rgba(255,207,174,0.25) !important;
    font-size: 10px !important;
}

.footer-logo {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(85%) sepia(30%) saturate(500%) hue-rotate(335deg) brightness(105%);
    margin-bottom: 15px;
    display: inline-block;
    transition: var(--transition);
}

.footer-logo:hover {
    filter: brightness(0) invert(100%);
}

@media (max-width: 767px) {
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* ============================================
   SIDEBAR (SERVICE DETAIL, BLOG)
   ============================================ */
.hours-table td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,207,174,0.1);
    font-size: 0.9rem;
    color: rgba(255,207,174,0.7);
}

.hours-table td:first-child {
    font-weight: 400;
    color: var(--accent);
}

.hours-table td:last-child { text-align: right; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-light-custom { background: var(--light-bg); }
.text-primary-custom { color: var(--accent) !important; }

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 14px 30px;
    border-radius: 0;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 30px;
    border-radius: 0;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-content { line-height: 1.8; }

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.service-detail-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-list-sidebar {
    background: var(--white);
    border-radius: 0;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-list-sidebar a {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
}

.service-list-sidebar a:hover,
.service-list-sidebar a.active {
    background: var(--accent-light);
    color: var(--primary);
    padding-left: 25px;
}

.service-list-sidebar a:last-child { border-bottom: none; }

/* ============================================
   BLOG DETAIL
   ============================================ */
.blog-detail-content { line-height: 1.9; }

.blog-detail-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.blog-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.blog-detail-content p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.blog-sidebar .widget {
    background: var(--white);
    border-radius: 0;
    padding: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.blog-sidebar .widget h5 {
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent);
}

.blog-sidebar .recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.blog-sidebar .recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar .recent-post h6 {
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.blog-sidebar .recent-post .date {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   EMERGENCY BANNER
   ============================================ */
.emergency-banner {
    background: var(--accent);
    color: var(--primary);
    padding: 20px 0;
    text-align: center;
}

.emergency-banner h4 {
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1rem;
}

.emergency-banner a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

/* ============================================
   CHECK LIST
   ============================================ */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 4px 0;
    display: flex;
    align-items: center;
}

.check-list li i {
    color: var(--accent-hover);
    margin-right: 10px;
    font-size: 12px;
}

/* ============================================
   MAP
   ============================================ */
.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    box-shadow: 0 4px 15px rgba(40,33,29,0.2);
}

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

.back-to-top:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-3px);
}

/* ============================================
   BOOTSTRAP OVERRIDES
   ============================================ */
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 0;
}

.btn-primary:hover {
    background: var(--black);
    border-color: var(--black);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    border-radius: 0;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   DARK SECTION
   ============================================ */
.dark-section {
    background: var(--primary);
    color: var(--white);
}

/* ============================================
   RESPONSIVE - LAYOUT
   ============================================ */
@media (max-width: 991px) {
    .amenities-content {
        padding: 30px 0;
    }

    .amenities-image {
        min-height: 300px;
        margin-bottom: 20px;
    }

    .amenities-image img {
        min-height: 300px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE MENU
   ============================================ */
@media (max-width: 991px) {
    body { font-size: 15px; }
    p { font-size: 15px; }

    .hero-section { min-height: 60vh; }

    .hero-section::before {
        background: linear-gradient(
            to bottom,
            rgba(40,33,29,0.85) 0%,
            rgba(40,33,29,0.5) 100%
        );
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        z-index: 1050;
        padding: 90px 30px 30px;
        overflow-y: auto;
        display: none !important;
    }

    .navbar-collapse.mobile-open {
        display: flex !important;
        flex-direction: column;
        animation: mobileMenuSlideIn 0.3s ease;
    }

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

    .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,207,174,0.08);
    }

    .nav-link {
        padding: 20px 0 !important;
        font-size: 15px;
        font-weight: 400;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        text-transform: none;
        letter-spacing: 0;
    }

    .mobile-plus {
        font-size: 22px;
        font-weight: 300;
        color: var(--accent);
        opacity: 0.6;
        transition: var(--transition);
        line-height: 1;
    }

    .nav-item.dropdown.open .mobile-plus {
        transform: rotate(45deg);
        opacity: 1;
    }

    .dropdown-menu {
        position: static !important;
        transform: none !important;
        background: transparent;
        box-shadow: none;
        border-top: none;
        padding: 0 0 10px 0;
        min-width: 100%;
        display: none;
    }

    .nav-item.dropdown.open > .dropdown-menu {
        display: block;
        animation: none;
    }

    .dropdown-item {
        color: rgba(255,207,174,0.5) !important;
        padding: 12px 0 12px 10px;
        font-size: 14px;
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: transparent;
        color: var(--accent) !important;
        padding-left: 14px;
    }

    .dropdown-icon { display: none; }

    .nav-phone {
        border-bottom: none !important;
        margin-top: 10px;
    }

    .nav-phone .nav-link {
        font-size: 16px;
        font-weight: 400;
        padding: 15px 0 !important;
    }

    .nav-book-item {
        border-bottom: none !important;
        width: 100%;
        padding: 15px 0;
    }

    .nav-book-item .btn-book {
        display: block;
        width: 100%;
        text-align: center;
        padding: 18px 24px !important;
        font-size: 12px;
        letter-spacing: 2.5px;
    }
}

/* ============================================
   MOBILE BOTTOM BAR
   ============================================ */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.mobile-cta-bar {
    background: var(--accent);
    text-align: center;
    padding: 12px 20px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 300;
}

.mobile-action-bar {
    background: var(--primary);
    display: flex;
    border-top: 1px solid rgba(255,207,174,0.1);
}

.mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    color: var(--accent);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.mobile-action-bar a i { font-size: 16px; }
.mobile-action-bar a:hover { color: var(--white); }

@media (max-width: 991px) {
    body { padding-bottom: 95px; }

    .back-to-top {
        bottom: 110px;
    }

    .pricing-card {
        padding: 0;
    }

    .pricing-card + .pricing-card {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid var(--border-color);
    }
}

/* ============================================
   RESPONSIVE - SMALL SCREENS
   ============================================ */
@media (max-width: 767px) {
    body { font-size: 14px; }
    p { font-size: 14px; }
    h3 { font-size: 22px; }
    h4 { font-size: 18px; }

    .section-padding { padding: 50px 0; }

    .page-banner { padding: 80px 0 40px; }
    .page-banner h1 { font-size: 2rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .tour-img { height: 200px; }

    .service-card-img { height: 200px; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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