/* ==========================================================================
   Shvil Lavan - Landing Page Styles
   ========================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #8B5E3C;
    --color-primary-dark: #5C3A1E;
    --color-primary-light: #A67B5B;
    --color-accent: #E8A044;
    --color-accent-light: #F0C078;
    --color-cream: #F5F0E8;
    --color-cream-dark: #EDE5D8;
    --color-white: #FFFFFF;
    --color-dark: #2C1810;
    --color-text: #3D2B1F;
    --color-text-light: #6B5648;
    --color-green: #4A6741;
    --color-green-dark: #3A5231;
    --color-whatsapp: #25D366;

    --font-family: 'Open Sans', 'Arial', sans-serif;
    --container-max: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
}

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

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

body {
    font-family: var(--font-family);
    direction: rtl;
    text-align: right;
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

/* ---------- Container ---------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Titles ---------- */
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 12px;
}

.section-title-light {
    color: var(--color-white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.85);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: #d4912e;
    border-color: #d4912e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 160, 68, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 28px;
    font-size: 0.95rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
}

.btn-small:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.header-logo-img {
    height: 90px;
    width: auto;
    margin: -16px 0;
    transition: height 0.2s ease, margin 0.2s ease;
}

.header.scrolled .header-logo-img {
    height: 56px;
    margin: -10px 0;
}

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

.nav-link {
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.95rem;
    direction: ltr;
}

.nav-phone:hover {
    color: var(--color-accent-light);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 24, 16, 0.55) 0%,
        rgba(44, 24, 16, 0.35) 40%,
        rgba(44, 24, 16, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 120px 24px 80px;
    max-width: 800px;
}


.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 36px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.services .section-title {
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-green), var(--color-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.service-text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   HERO SECONDARY
   ========================================================================== */
.hero-secondary {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-secondary-bg {
    width: 100%;
}

.hero-secondary-bg-img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

/* ==========================================================================
   GALLERY - 2x2 with text overlays
   ========================================================================== */
.gallery {
    padding: 48px 0 64px;
    background: var(--color-cream);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gallery-item-overlay {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(44, 24, 16, 0.75) 0%,
        rgba(44, 24, 16, 0.2) 50%,
        rgba(44, 24, 16, 0.05) 100%
    );
    transition: background 0.3s ease;
}

.gallery-item-overlay:hover .gallery-overlay {
    background: linear-gradient(
        to top,
        rgba(44, 24, 16, 0.85) 0%,
        rgba(44, 24, 16, 0.3) 50%,
        rgba(44, 24, 16, 0.1) 100%
    );
}

.gallery-text {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 24px 28px;
    color: var(--color-white);
    z-index: 1;
}

.gallery-text h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.gallery-text p {
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   ROUTES
   ========================================================================== */
.routes {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.route-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--color-accent);
}

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

.route-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.route-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.route-info {
    font-size: 0.95rem;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 14px;
    direction: rtl;
}

.route-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ==========================================================================
   WHY US - Icon Bar
   ========================================================================== */
.why-us {
    position: relative;
    padding: 56px 0;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.why-us-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.why-us-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.why-us-item {
    color: var(--color-white);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.why-us-item:hover .why-us-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.why-us-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.why-us-item p {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--color-cream-dark);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(232, 160, 68, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B5E3C' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success State */
.form-success {
    display: none;
    text-align: center;
    padding: 48px 32px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.contact-form.submitted {
    animation: fadeOutDown 0.4s ease forwards;
}

.form-success-icon {
    color: var(--color-green);
    margin-bottom: 20px;
}

.form-success-icon svg {
    animation: checkDraw 0.6s ease 0.3s both;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
        display: none;
    }
}

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

@keyframes checkDraw {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-info-item svg {
    flex-shrink: 0;
    color: var(--color-primary);
}

.contact-info-item strong {
    display: block;
    font-size: 1rem;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.contact-info-item a {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 40px 0;
}

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

.footer-logo {
    height: 90px;
    margin: -10px auto 12px;
    filter: brightness(1.2);
}

.footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

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

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

/* ==========================================================================
   NAV DROPDOWN
   ========================================================================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.95rem;
    background: none;
    border: none;
    font-family: var(--font-family);
    padding: 0;
}

.nav-dropdown-toggle::after {
    content: '';
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: var(--transition);
}

.nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sm);
    padding: 8px 0;
    min-width: 180px;
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.nav-dropdown.open .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

/* Page Hero (shorter than homepage) */
/* ==========================================================================
   FAMILY HOSTING
   ========================================================================== */
.family-hosting {
    padding: var(--section-padding);
    background: var(--color-white);
}

.family-hosting .content-with-image {
    margin-bottom: 0;
}

.family-hosting .content-with-image p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

/* Force dark header on inner pages (no full-screen hero behind it) */
body:has(.page-hero) .header {
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
}

.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 24, 16, 0.5) 0%,
        rgba(44, 24, 16, 0.65) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 60px 24px;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--color-cream);
    padding: 14px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-primary);
    font-weight: 600;
}

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

.breadcrumb span {
    color: var(--color-text-light);
    margin: 0 8px;
}

.breadcrumb .current {
    color: var(--color-text-light);
}

/* Content Sections */
.content-section {
    padding: var(--section-padding);
}

.content-section:nth-child(even) {
    background: var(--color-cream);
}

.content-section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.content-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

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

/* Content with image sidebar */
.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-with-image.reverse {
    direction: ltr;
}

.content-with-image.reverse > * {
    direction: rtl;
}

.content-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

/* Feature / Package List */
.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Page CTA Banner */
.page-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    text-align: center;
    color: var(--color-white);
}

.page-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-cta p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 28px;
}

.page-cta .btn {
    margin: 0 8px;
}

/* Footer Site Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .routes-grid .route-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    /* Header Mobile */
    .hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: rgba(44, 24, 16, 0.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 100px 32px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.15rem;
    }

    /* Dropdown mobile */
    .nav-dropdown-toggle {
        font-size: 1.15rem;
        color: var(--color-white);
    }

    .nav-dropdown-menu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        padding: 0 16px;
        min-width: 0;
    }

    .nav-dropdown-menu a {
        padding: 8px 12px;
        font-size: 1rem;
    }

    /* Inner pages mobile */
    .page-hero {
        min-height: 35vh;
        margin-top: 60px;
    }

    .page-hero-content h1 {
        font-size: 1.7rem;
    }

    .content-with-image {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .footer-links {
        gap: 16px;
    }

    .nav-phone {
        margin-top: auto;
        font-size: 1.1rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 100px 20px 60px;
    }


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

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

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

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px 16px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon svg {
        width: 32px;
        height: 32px;
    }

    .service-title {
        font-size: 1.05rem;
    }

    .service-text {
        font-size: 0.85rem;
    }

    /* Gallery Mobile */
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }

    .gallery-item-overlay {
        aspect-ratio: 16 / 9;
    }

    .gallery-text {
        padding: 16px 20px;
    }

    .gallery-text h3 {
        font-size: 1.15rem;
    }

    .gallery-text p {
        font-size: 0.85rem;
    }

    .hero-secondary-bg-img {
        max-height: 250px;
    }

    /* Routes Mobile */
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .routes-grid .route-card:last-child {
        max-width: none;
    }

    .route-card {
        padding: 28px 20px;
    }

    /* Why Us Mobile */
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-us-title {
        font-size: 1.6rem;
        margin-bottom: 28px;
    }

    .why-us-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .why-us-item h3 {
        font-size: 1rem;
    }

    .why-us-item p {
        font-size: 0.8rem;
    }

    /* Contact Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .contact-info {
        padding-top: 0;
    }

    /* WhatsApp Button */
    .whatsapp-float {
        bottom: 16px;
        left: 16px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem;
    }

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

    .section-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
    .header,
    .hamburger,
    .whatsapp-float,
    .hero-cta,
    .btn {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-overlay {
        background: none;
    }

    .hero-content {
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .contact-form {
        border: 1px solid #ccc;
    }
}
