/* ==========================================================================
   FUNTEES DENTAL CLINIC - MAIN DESIGN SYSTEM STYLESHEET
   Location: Arepo Road, Opposite Garden Park, Arepo, Ogun State
   Phone: 07064204555 | 08035066025
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors (Derived from Funtees Logo) */
    --primary: #0088FF;
    --primary-hover: #0072D6;
    --primary-dark: #0056B3;
    --primary-light: #F0F7FF;
    --primary-glow: rgba(0, 136, 255, 0.25);

    --accent-yellow: #FFC107;
    --accent-yellow-hover: #E5AC00;
    --accent-yellow-light: #FFF9E6;

    --secondary-dark: #0F172A;
    --navy-blue: #0A2540;
    
    --text-heading: #0F172A;
    --text-body: #334155;
    --text-muted: #64748B;
    --text-light: #94A3B8;

    --bg-main: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-alt: #F1F5F9;

    --border-light: #E2E8F0;
    --border-hover: #CBD5E1;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px -5px rgba(0, 136, 255, 0.08), 0 4px 12px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 40px -10px rgba(0, 136, 255, 0.12), 0 8px 20px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 25px rgba(0, 136, 255, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Basic Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-heading);
    line-height: 1.25;
    font-weight: 700;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-yellow { color: var(--accent-yellow); }

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 136, 255, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(0, 136, 255, 0.35);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 136, 255, 0.45);
    color: #FFFFFF;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: #0F172A;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 193, 7, 0.4);
}
.btn-yellow:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
    color: #0F172A;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #FFFFFF;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
    background-color: #20BA5C;
    transform: translateY(-2px);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
    background-color: var(--navy-blue);
    color: #94A3B8;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #E2E8F0;
}

.top-info-item svg {
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-social a {
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
}

.top-social a:hover {
    color: #FFFFFF;
    background: var(--primary);
}

/* ==========================================================================
   MAIN NAVIGATION HEADER
   ========================================================================== */
.header-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-svg {
    height: 52px;
    width: auto;
    display: block;
    transition: transform var(--transition-fast);
}

.brand-logo-svg:hover {
    transform: scale(1.02);
}

.footer-logo-svg {
    height: 48px;
    width: auto;
    display: block;
}

.main-logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-heading);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 70px 0 90px;
    background: linear-gradient(135deg, #F0F7FF 0%, #FFFFFF 60%, #FFF9E6 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 136, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.hero-content {
    max-width: 620px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--navy-blue);
    margin: 20px 0 16px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 193, 7, 0.4);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 136, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
}

.trust-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Hero Media Stack */
.hero-media {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #FFFFFF;
}

.hero-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-badge-top {
    top: 24px;
    right: -20px;
}

.floating-badge-bottom {
    bottom: 24px;
    left: -20px;
    animation-delay: 2s;
}

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

.badge-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-text-box p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.star-rating {
    color: #FFC107;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.section-header {
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin: 12px 0 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-yellow));
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 136, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image-thumb {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.service-image-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image-thumb img {
    transform: scale(1.06);
}

.service-icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

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

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--navy-blue);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    cursor: pointer;
}

.service-link svg {
    transition: transform 0.2s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   APPOINTMENT BOOKING SECTION
   ========================================================================== */
.booking-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0088FF 0%, #0A2540 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.booking-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.booking-info h2 {
    color: #FFFFFF;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.booking-info p {
    color: #DBEAFE;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.booking-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 1.05rem;
}

.feature-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-yellow);
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.booking-doc-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.2);
    max-height: 320px;
    object-fit: cover;
    width: 100%;
}

/* Booking Form Card */
.booking-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--text-body);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.booking-card h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--navy-blue);
}

.booking-card p.sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-heading);
    background-color: var(--bg-secondary);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 136, 255, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.booking-card-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ==========================================================================
   CHIEF EXECUTIVE OFFICER (CEO) SECTION
   ========================================================================== */
.ceo-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.ceo-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid #FFFFFF;
    background: #FFFFFF;
}

.ceo-image-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-md);
    transition: transform var(--transition-smooth);
}

.ceo-image-wrapper:hover img {
    transform: scale(1.02);
}

.ceo-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 136, 255, 0.2);
    animation: float 4s ease-in-out infinite;
}

.ceo-badge-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-image-badge h4 {
    font-size: 0.98rem;
    color: var(--navy-blue);
    margin: 0;
}

.ceo-image-badge p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.ceo-title {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin: 10px 0 6px 0;
}

.ceo-role-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ceo-bio p {
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.68;
    margin-bottom: 14px;
}

.ceo-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 22px 0 28px 0;
}

.ceo-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-blue);
    box-shadow: var(--shadow-sm);
}

.highlight-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #D1FAE5;
    color: #059669;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================================================
   WHY CHOOSE US & ABOUT SECTION
   ========================================================================== */
.why-section {
    padding: 90px 0;
    background-color: var(--bg-main);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 36px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.why-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    box-shadow: var(--shadow-md);
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   GALLERY SHOWCASE
   ========================================================================== */
.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 37, 64, 0.6);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    padding: 16px;
    text-align: center;
}

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

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

.gallery-overlay h4 {
    color: #FFFFFF;
    font-size: 1rem;
}

/* ==========================================================================
   MISSION & VISION STYLES
   ========================================================================== */
.mission-vision-wrapper {
    width: 100%;
    margin-bottom: 50px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mv-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0088FF, #00C3FF);
}

.vision-card::before {
    background: linear-gradient(90deg, #FFC107, #FF9800);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

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

.mv-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vision-icon {
    background: var(--accent-yellow-light);
    color: #D97706;
}

.mv-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--primary);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 2px;
}

.vision-badge {
    color: #D97706;
}

.mv-card h3 {
    font-size: 1.35rem;
    color: var(--navy-blue);
    margin: 0;
}

.mv-card p {
    color: var(--text-body);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS (GOOGLE REVIEWS)
   ========================================================================== */
.reviews-section {
    padding: 90px 0;
    background-color: var(--bg-main);
}

.google-badge-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    box-shadow: var(--shadow-sm);
    margin-bottom: 14px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.review-card {
    background: #FFFFFF;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.avatar-brown {
    background: #8D6E63;
}

.avatar-photo {
    background: linear-gradient(135deg, #1E293B, #475569);
}

.avatar-blue {
    background: #0284C7;
}

.local-guide-star {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #FFC107;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--navy-blue);
    line-height: 1.2;
}

.reviewer-meta {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.google-icon-corner {
    flex-shrink: 0;
    opacity: 0.85;
}

.rating-time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.star-rating {
    color: #FFB800;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.star-empty {
    color: #CBD5E1;
}

.review-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-quote {
    font-size: 0.93rem;
    color: var(--text-body);
    line-height: 1.55;
    margin-bottom: 0;
    font-style: normal;
}

/* ==========================================================================
   FAQ SECTION ACCORDION
   ========================================================================== */
.faq-section {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.faq-grid {
    max-width: 850px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-heading);
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary);
    color: #FFFFFF;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
}

/* ==========================================================================
   CALL TO ACTION BANNER
   ========================================================================== */
.cta-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #0088FF 0%, #0056B3 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text {
    text-align: left;
    max-width: 650px;
}

.cta-text h2 {
    color: #FFFFFF;
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.cta-text p {
    color: #E0F2FE;
    font-size: 1.05rem;
}

/* ==========================================================================
   LOCATION & CONTACT SECTION
   ========================================================================== */
.contact-section {
    padding: 90px 0;
    background-color: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card h4 {
    font-size: 1.05rem;
    color: var(--navy-blue);
}

.contact-card p, .contact-card a {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--navy-blue);
    color: #94A3B8;
    padding: 70px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-yellow);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
}

/* ==========================================================================
   MODAL POPUP
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    padding: 36px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-box {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-secondary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ==========================================================================
   FLOATING CONVERSION BUTTONS (MOBILE)
   ========================================================================== */
.floating-mobile-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.floating-mobile-bar > * {
    pointer-events: auto;
}

.floating-whatsapp-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #25D366;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition-fast);
    cursor: pointer;
    animation: pulseRing 3s infinite;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS & SCROLL REVEAL SYSTEM
   ========================================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 14px rgba(0, 136, 255, 0.35);
    }
    50% {
        box-shadow: 0 6px 22px rgba(0, 136, 255, 0.6);
    }
}

@keyframes shine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll Reading Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    background: linear-gradient(90deg, #00B4FF, #FFC107, #0088FF);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 1px 6px rgba(0, 180, 255, 0.5);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-up {
    transform: translateY(35px);
}

.reveal-down {
    transform: translateY(-35px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-scale {
    transform: scale(0.93);
}

.reveal.revealed {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger animation delays for grid items */
.stagger-container > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-container > *:nth-child(2) { transition-delay: 0.15s; }
.stagger-container > *:nth-child(3) { transition-delay: 0.25s; }
.stagger-container > *:nth-child(4) { transition-delay: 0.35s; }
.stagger-container > *:nth-child(5) { transition-delay: 0.45s; }
.stagger-container > *:nth-child(6) { transition-delay: 0.55s; }
.stagger-container > *:nth-child(7) { transition-delay: 0.65s; }
.stagger-container > *:nth-child(8) { transition-delay: 0.75s; }

/* Sticky Header Scroll Styling */
.header-nav {
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header-nav.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

/* Service Card Hover Micro-Interactions */
.service-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 136, 255, 0.3);
}

.service-image-thumb {
    overflow: hidden;
}

.service-image-thumb img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-image-thumb img {
    transform: scale(1.08);
}

.service-icon-wrapper {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--primary);
    color: #FFFFFF;
}

/* Why-us & Contact Cards Hover */
.why-item, .contact-card, .review-card, .gallery-item {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover, .review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-item:hover .why-icon {
    transform: scale(1.15);
    background-color: var(--primary);
    color: #FFFFFF;
}

.why-icon {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Gallery Overlay Hover Smooth Scale */
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-md);
}

.gallery-item img {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-overlay {
    transition: opacity 0.35s ease, backdrop-filter 0.35s ease;
}

/* Back to Top Button */
.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--navy-blue);
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(10, 37, 64, 0.25);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 136, 255, 0.4);
}

/* Animated Stat Counter Box */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Accessibility Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .reveal, .service-card, .floating-badge, .btn, .gallery-item img, .service-image-thumb img {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
    }

    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

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

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .top-bar {
        display: none;
    }

    .header-nav .container {
        height: 70px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    /* Mobile Form Controls & Touch Targets Optimization */
    .form-control, input[type="text"], input[type="email"], input[type="tel"], input[type="date"], select, textarea {
        font-size: 16px !important; /* Prevents iOS Safari auto-zoom on field focus */
        min-height: 48px;
        border-radius: var(--radius-md);
        -webkit-appearance: none;
        appearance: none;
    }

    select.form-control {
        background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22293%22%20height%3D%22293%22%3E%3Cpath%20fill%3D%22%230088FF%22%20d%3D%22M236%20129l-117%20118-117-118%2033-33%2084%2084%2084-84z%22%2F%3E%3C%2Fsvg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        background-size: 12px;
        padding-right: 36px;
    }

    .booking-section {
        padding: 60px 0;
    }

    .booking-card {
        padding: 24px 18px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .booking-card-actions .btn {
        width: 100%;
        min-height: 54px;
        font-size: 1.08rem;
        font-weight: 700;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 10;
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .brand-logo-svg {
        height: 42px;
        width: auto;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 0.98rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .floating-badge {
        padding: 10px 14px;
        font-size: 0.85rem;
    }

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

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

    .floating-mobile-bar {
        bottom: 16px;
        right: 16px;
    }
}
