/* ==========================================
   البيت الآمن - Stylesheet
   Mobile-First, RTL, SEO Optimized
   ========================================== */

/* CSS Custom Properties */
:root {
    --primary: #1a5276;
    --primary-dark: #0e3a56;
    --primary-light: #2980b9;
    --secondary: #e67e22;
    --secondary-dark: #d35400;
    --accent: #27ae60;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --facebook: #1877f2;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #ecf0f1;
    --gray: #95a5a6;
    --dark-gray: #7f8c8d;
    --dark: #2c3e50;
    --black: #1a1a2e;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font: 'Cairo', sans-serif;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-link {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.top-link:hover {
    color: var(--secondary);
}

.top-link.whatsapp-link:hover {
    color: var(--whatsapp);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.logo i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    padding: 80px 30px 30px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    z-index: 1000;
    overflow-y: auto;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 5px;
}

.nav-link {
    display: block;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary);
    color: var(--white);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.nav-overlay.active {
    display: block;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.85), rgba(14, 58, 86, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-title .highlight {
    color: var(--secondary);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-slogan {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 15px;
}

.hero-phone {
    margin-top: 10px;
}

.hero-phone a {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-phone a:hover {
    color: var(--secondary);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to left, var(--secondary), var(--primary));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: 70px 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================
   DESTINATIONS SECTION
   ========================================== */
.destinations {
    padding: 70px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.dest-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-right: 4px solid var(--primary);
}

.dest-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
    border-right-color: var(--secondary);
}

.dest-icon {
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dest-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

/* ==========================================
   INTERNATIONAL SECTION
   ========================================== */
.international {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.international .section-title {
    color: var(--white);
}

.international .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.international .title-divider {
    background: linear-gradient(to left, var(--secondary), var(--white));
}

.international-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.intl-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.intl-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.flag {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.intl-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
    padding: 70px 0;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 82, 118, 0.9));
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us {
    padding: 70px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    padding: 30px 25px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(26, 82, 118, 0.08);
    position: absolute;
    top: 10px;
    left: 15px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: 70px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-card a {
    display: block;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    transition: var(--transition);
}

.contact-icon.whatsapp {
    background: var(--whatsapp);
}

.contact-icon.facebook {
    background: var(--facebook);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    direction: ltr;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-right: 15px;
    position: relative;
}

.footer-col ul li::before {
    content: '←';
    position: absolute;
    right: 0;
    color: var(--secondary);
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-col ul li i {
    margin-left: 8px;
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.15);
}

.whatsapp-float {
    background: var(--whatsapp);
    animation: pulse-green 2s infinite;
}

.call-float {
    background: var(--secondary);
    animation: pulse-orange 2s infinite;
}

.float-label {
    position: absolute;
    right: 65px;
    background: var(--dark);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.float-btn:hover .float-label {
    opacity: 1;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-orange {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(230, 126, 34, 0);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE - TABLET (min-width: 576px)
   ========================================== */
@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .international-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP (min-width: 768px)
   ========================================== */
@media (min-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item img {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==========================================
   RESPONSIVE - LARGE DESKTOP (min-width: 992px)
   ========================================== */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        display: flex;
        align-items: center;
        gap: 5px;
        overflow: visible;
    }

    .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .international-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-phone a {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .floating-buttons {
        bottom: 30px;
        left: 30px;
    }

    .float-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .back-to-top {
        bottom: 100px;
        left: 30px;
    }
}

/* ==========================================
   RESPONSIVE - XL DESKTOP (min-width: 1200px)
   ========================================== */
@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .services-grid {
        gap: 30px;
    }

    .features-grid {
        gap: 30px;
    }
}

/* ==========================================
   LOGO IMAGE IN NAVBAR
   ========================================== */
.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}

/* ==========================================
   HERO LOGO
   ========================================== */
.hero-logo {
    margin-bottom: 20px;
}

.hero-logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.section-header-right {
    text-align: right;
    margin-bottom: 25px;
}

.title-divider-right {
    margin: 15px 0 0;
}

.about-text p {
    color: var(--dark-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-text p strong {
    color: var(--primary);
}

.about-stats {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    min-width: 100px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-top: 5px;
    font-weight: 600;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 350px;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

/* ==========================================
   SERVICE CARD WITH IMAGES
   ========================================== */
.service-img {
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    height: 180px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-body {
    padding: 20px 25px 25px;
    text-align: center;
}

.service-card {
    padding: 0;
    overflow: hidden;
}

.service-body .service-icon {
    margin-top: -35px;
    position: relative;
    z-index: 2;
}

/* ==========================================
   GALLERY MASONRY LAYOUT
   ========================================== */
.gallery-wide {
    grid-column: span 1;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* ==========================================
   CTA BACKGROUND
   ========================================== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/webp/cta-bg.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

/* ==========================================
   FOOTER LOGO
   ========================================== */
.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    border-radius: 50%;
    border: 3px solid var(--secondary);
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* ==========================================
   RESPONSIVE ADDITIONS
   ========================================== */
@media (min-width: 576px) {
    .gallery-wide {
        grid-column: span 2;
    }

    .gallery-wide img {
        height: 300px;
    }
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-wide {
        grid-column: span 2;
    }

    .gallery-item img {
        height: 280px;
    }

    .gallery-wide img {
        height: 320px;
    }

    .service-img {
        height: 200px;
    }

    .hero-logo img {
        width: 120px;
        height: 120px;
    }
}

@media (min-width: 992px) {
    .about-image img {
        max-width: 450px;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-wide {
        grid-column: span 2;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus Styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .top-bar,
    .floating-buttons,
    .back-to-top,
    .nav-toggle {
        display: none !important;
    }

    .hero {
        height: auto;
        min-height: 0;
    }

    body {
        color: #000;
        background: #fff;
    }
}
