/* ════════════════════════════════════════════
   مبسط مواد بناء — Design System
   Colors: Navy #1a2b4a, Orange #ff6b35, White
════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&display=swap');

:root {
    --navy: #1a2b4a;
    --navy-dark: #0f1a2e;
    --navy-light: #2d4263;
    --orange: #ff6b35;
    --orange-dark: #e55a28;
    --orange-light: #ff8a5c;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --green: #25D366;
    --font-main: 'Cairo', sans-serif;
    --nav-h: 72px;
    --island-top: 16px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
    --shadow-xl: 0 12px 48px rgba(0,0,0,.15);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.7;
    direction: rtl;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ════════════════════════════════════════════
   ISLAND NAVBAR
════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: var(--island-top);
    left: 20px;
    right: 20px;
    z-index: 1000;
    transition: top .4s cubic-bezier(.4,0,.2,1);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-h);
    padding: 0 1.5rem;
    border-radius: 18px;
    background: rgba(26, 43, 74, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    transition: background .4s cubic-bezier(.4,0,.2,1),
    border-color .4s ease,
    box-shadow .4s ease,
    height .35s ease,
    border-radius .35s ease,
    padding .35s ease;
}

.navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.97);
    border-color: rgba(26, 43, 74, 0.08);
    box-shadow: 0 4px 24px rgba(26, 43, 74, .1), 0 1px 4px rgba(0,0,0,.06);
}

.navbar.shrunk .nav-inner {
    height: 60px;
    border-radius: 16px;
    padding: 0 1.25rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-shrink: 0;
}

.logo-img-wrap {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 107, 53, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
}

.logo-img-wrap svg {
    width: 24px;
    height: 24px;
    stroke: var(--orange);
}

.logo-img-wrap img.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name-main {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    transition: color var(--transition);
}

.logo-name-main .brand-highlight {
    color: var(--orange);
}

.navbar.scrolled .logo-name-main { color: var(--navy); }

.logo-sub {
    font-size: .7rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
    transition: color var(--transition);
}

.navbar.scrolled .logo-sub { color: var(--gray-500); }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.nav-links li a {
    color: rgba(255,255,255,.85);
    font-size: .82rem;
    font-weight: 600;
    padding: .45rem .75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--white);
    background: rgba(255, 107, 53, .2);
}

.navbar.scrolled .nav-links li a { color: var(--gray-700); }
.navbar.scrolled .nav-links li a:hover,
.navbar.scrolled .nav-links li a.active {
    color: var(--orange);
    background: rgba(255, 107, 53, .08);
}

/* Nav End */
.nav-end {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.8);
    font-size: .78rem;
    font-weight: 500;
    padding: .3rem .7rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-phone svg { flex-shrink: 0; }
.nav-phone:hover {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.navbar.scrolled .nav-phone { color: var(--gray-600); }
.navbar.scrolled .nav-phone:hover { color: var(--orange); background: rgba(255, 107, 53, .06); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    font-size: .82rem;
    padding: .55rem 1.2rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
    padding: 6px;
}

.hb {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    margin: 5px 0;
}

.navbar.scrolled .hb { background: var(--navy); }

/* ════════════════════════════════════════════
   MOBILE SIDEBAR
════════════════════════════════════════════ */
.sb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.sb-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    z-index: 1200;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    padding: 1.5rem;
}

.sidebar.open { right: 0; }

.sb-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,.1);
    border: none;
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sb-close:hover { background: rgba(255, 107, 53, .3); }

.sb-head {
    text-align: center;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin-bottom: 1rem;
}

.sb-logo-wrap {
    width: 60px;
    height: 60px;
    margin: 0 auto .75rem;
    border-radius: 14px;
    background: rgba(255, 107, 53, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sb-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }

.sb-tagline {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 800;
}

.sb-sub {
    color: rgba(255,255,255,.5);
    font-size: .8rem;
}

.sb-nav { margin-bottom: 1.5rem; }

.sb-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 1rem;
    color: rgba(255,255,255,.75);
    font-weight: 600;
    font-size: .9rem;
    border-radius: var(--radius-sm);
    margin-bottom: .25rem;
    transition: var(--transition);
}

.sb-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sb-link:hover,
.sb-link.active {
    color: var(--white);
    background: rgba(255, 107, 53, .15);
}

.sb-link.active { border-right: 3px solid var(--orange); }

.sb-foot {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 1.25rem;
}

.sb-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    font-weight: 700;
    padding: .85rem;
    border-radius: var(--radius-sm);
    margin-bottom: .75rem;
    transition: var(--transition);
}

.sb-cta:hover { background: var(--orange-dark); }

.sb-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: rgba(255,255,255,.7);
    font-size: .85rem;
    padding: .5rem;
    transition: var(--transition);
}

.sb-phone:hover { color: var(--orange); }

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 74, .92) 0%, rgba(45, 66, 99, .85) 50%, rgba(26, 43, 74, .9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 850px;
}

.hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.1);
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .85rem;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator-inner {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-indicator-dot {
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: .3; }
}

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--orange);
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.15);
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    border: 1px solid rgba(255,255,255,.3);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover { background: rgba(255,255,255,.25); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--orange);
    padding: .85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid var(--orange);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    color: var(--navy);
    padding: .85rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
.section {
    padding: 5rem 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: .75rem;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 0 auto .75rem;
}

.subtitle {
    color: var(--gray-600);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    text-align: center;
    padding: calc(var(--nav-h) + 60px) 1.5rem 3.5rem;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .2;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 74, .9), rgba(45, 66, 99, .85));
}

.page-header h1 {
    position: relative;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: .5rem;
}

.page-header p {
    position: relative;
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 1rem;
}

.page-header .hero-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
}

.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--orange); }

/* ════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

.product-badge {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--orange);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 50px;
}

.product-content {
    padding: 1.25rem;
}

.product-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.product-content p {
    font-size: .85rem;
    color: var(--gray-600);
    margin-bottom: .75rem;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--orange);
}

.product-unit {
    font-size: .8rem;
    color: var(--gray-500);
}

.product-btn {
    display: block;
    text-align: center;
    background: var(--orange);
    color: var(--white);
    padding: .7rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .85rem;
    transition: var(--transition);
}

.product-btn:hover { background: var(--orange-dark); }

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(26, 43, 74, .8));
}

.service-card-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

.service-card-body {
    padding: 1.25rem;
}

.service-card-body p {
    font-size: .88rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.features-list {
    margin-bottom: 1rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--gray-700);
    margin-bottom: .4rem;
}

.features-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--orange);
}

.read-more {
    color: var(--orange);
    font-weight: 700;
    font-size: .88rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.read-more:hover { color: var(--orange-dark); gap: .6rem; }

/* ════════════════════════════════════════════
   WHY US
════════════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.why-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, .1), rgba(26, 43, 74, .05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.why-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}

.why-item p {
    font-size: .88rem;
    color: var(--gray-600);
}

/* ════════════════════════════════════════════
   PROJECTS / PORTFOLIO
════════════════════════════════════════════ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
}

.project-img {
    height: 280px;
    position: relative;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.project-card:hover .project-img img { transform: scale(1.08); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(26, 43, 74, .85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-category {
    background: var(--orange);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .25rem .75rem;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: .5rem;
}

.project-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .subtitle { color: rgba(255,255,255,.6); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.star { color: #fbbf24; font-size: 1rem; }

.testimonial-text {
    font-size: .92rem;
    line-height: 1.8;
    color: rgba(255,255,255,.8);
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    overflow: hidden;
}

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

.testimonial-author .name {
    font-weight: 700;
    font-size: .9rem;
}

.testimonial-author .role {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
}

/* ════════════════════════════════════════════
   FAQ
════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: .75rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
    transition: var(--transition);
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
    font-size: 1.3rem;
    color: var(--orange);
    transition: transform .3s;
    flex-shrink: 0;
    margin-right: 1rem;
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ════════════════════════════════════════════
   BLOG
════════════════════════════════════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

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

.blog-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

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

.blog-category {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: var(--orange);
    color: var(--white);
    font-size: .75rem;
    font-weight: 700;
    padding: .3rem .75rem;
    border-radius: 50px;
}

.blog-content {
    padding: 1.25rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: .78rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
}

.blog-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
    line-height: 1.5;
}

.blog-content p {
    font-size: .85rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: .75rem;
}

.blog-link {
    color: var(--orange);
    font-weight: 700;
    font-size: .85rem;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}

.blog-link:hover { gap: .6rem; }

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

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

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.sidebar-widget h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--orange);
}

.sidebar-post {
    display: flex;
    gap: .75rem;
    margin-bottom: .75rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--gray-100);
}

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

.sidebar-post img {
    width: 60px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.sidebar-post-info h4 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: .2rem;
}

.sidebar-post-info span {
    font-size: .75rem;
    color: var(--gray-500);
}

.post-tag {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: .25rem .75rem;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
}

/* Post Detail */
.post-detail h1 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.post-body {
    font-size: .95rem;
    line-height: 2;
    color: var(--gray-700);
}

.post-body h2, .post-body h3 {
    color: var(--navy);
    margin: 2rem 0 1rem;
}

.post-body p { margin-bottom: 1rem; }

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    font-size: .88rem;
    color: var(--gray-600);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: .85rem;
}

.share-btn.twitter:hover { background: #1DA1F2; color: white; }
.share-btn.facebook:hover { background: #1877F2; color: white; }
.share-btn.whatsapp:hover { background: #25D366; color: white; }
.share-btn.copy:hover { background: var(--orange); color: white; }

/* ════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════ */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 900;
    margin-bottom: .75rem;
}

.cta-section p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-right: 4px solid var(--orange);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .3rem;
}

.contact-info-card p {
    font-size: .88rem;
    color: var(--gray-600);
    margin-bottom: .2rem;
}

.contact-info-card small {
    font-size: .78rem;
    color: var(--gray-500);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    color: var(--white);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.contact-form-wrapper > p {
    color: rgba(255,255,255,.7);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: .4rem;
    font-size: .9rem;
}

.form-input {
    width: 100%;
    padding: .85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.08);
    color: var(--white);
    font-family: var(--font-main);
    font-size: .9rem;
    transition: var(--transition);
}

.form-input::placeholder { color: rgba(255,255,255,.4); }
.form-input:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,.12); }

.form-input option { color: var(--navy); }

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

.form-submit:hover { background: var(--orange-dark); }

/* Social Links */
.social-links {
    display: flex;
    gap: .5rem;
    margin-top: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover { background: var(--orange); transform: translateY(-2px); }

/* Map */
.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
}

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

/* ════════════════════════════════════════════
   PRICING
════════════════════════════════════════════ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .25rem;
}

.pricing-card .unit {
    font-size: .85rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
}

.pricing-card .price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: .75rem;
}

.pricing-discount {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius-sm);
    padding: .75rem;
}

.pricing-discount p {
    font-size: .82rem;
    color: #16a34a;
    font-weight: 600;
}

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-100);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: .25rem;
}

.stat-label {
    font-size: .9rem;
    font-weight: 700;
    color: var(--gray-700);
}

/* ════════════════════════════════════════════
   FILTER BAR
════════════════════════════════════════════ */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: .5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    background: var(--gray-200);
    color: var(--navy);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--orange);
    color: var(--white);
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
    background: var(--navy);
    color: var(--white);
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-about p {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer-logo-img-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 107, 53, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.footer-logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: .5rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    transition: var(--transition);
}

.footer-links li a:hover { color: var(--orange); }
.footer-links li a svg { flex-shrink: 0; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .75rem;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: .15rem;
}

.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--orange); }

/* Newsletter */
.newsletter {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.newsletter-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.newsletter p {
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: .5rem;
}

.newsletter-input {
    flex: 1;
    padding: .85rem 1rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .9rem;
    direction: rtl;
}

.newsletter-input:focus { outline: 2px solid var(--orange); }

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .85rem 1.5rem;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover { background: var(--orange-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a { color: rgba(255,255,255,.5); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ════════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════════ */
.floating-btns {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone-call { background: var(--orange); }
.float-btn.scroll-top { background: var(--navy); }

/* ════════════════════════════════════════════
   TOAST
════════════════════════════════════════════ */
.toast-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.toast-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.toast-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow-xl);
}

.toast-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon.success { background: #dcfce7; color: #16a34a; }
.toast-icon.error { background: #fee2e2; color: #dc2626; }

.toast-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .5rem;
}

.toast-box p {
    font-size: .9rem;
    color: var(--gray-600);
    margin-bottom: 1.25rem;
}

.toast-close {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: .75rem 2rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.toast-close:hover { background: var(--orange-dark); }

/* ════════════════════════════════════════════
   EMPTY STATE
════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-state h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-500);
    margin-bottom: .5rem;
}

.empty-state p {
    font-size: .9rem;
    color: var(--gray-400);
}

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.rv.in {
    opacity: 1;
    transform: translateY(0);
}

.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.pagination nav { display: flex; gap: .5rem; }

.pagination a, .pagination span {
    padding: .5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: var(--transition);
}

/* ════════════════════════════════════════════
   BULK ORDER FORM
════════════════════════════════════════════ */
.bulk-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.bulk-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.bulk-form label {
    display: block;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .4rem;
    font-size: .9rem;
}

.bulk-form input,
.bulk-form textarea,
.bulk-form select {
    width: 100%;
    padding: .85rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .9rem;
    transition: var(--transition);
}

.bulk-form input:focus,
.bulk-form textarea:focus,
.bulk-form select:focus {
    outline: none;
    border-color: var(--orange);
}

.bulk-form textarea { resize: none; }
.full-span { grid-column: 1 / -1; }

/* ════════════════════════════════════════════
   BRANCHES
════════════════════════════════════════════ */
.branches-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    min-height: 600px;
}

.branches-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    max-height: 700px;
    overflow-y: auto;
}

.branch-search-input {
    width: 100%;
    padding: .75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: .85rem;
    direction: rtl;
}

.branch-search-input:focus { outline: none; border-color: var(--orange); }

.branch-list-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: .5rem;
    border: 1px solid transparent;
}

.branch-list-item:hover { background: var(--gray-50); }
.branch-list-item.active {
    background: rgba(255, 107, 53, .06);
    border-color: var(--orange);
}

.branch-list-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 107, 53, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.branch-main-badge {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    background: var(--orange);
    color: var(--white);
    font-size: .7rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 50px;
}

.branch-details-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
}

.branch-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    margin-bottom: 1.5rem;
}

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

.branch-detail-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.branch-detail-title h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--navy);
}

.branch-info-items { margin-bottom: 1.5rem; }

.branch-info-row {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1rem;
}

.branch-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 107, 53, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.branch-info-label {
    font-size: .78rem;
    color: var(--gray-500);
    font-weight: 600;
    display: block;
}

.branch-info-value {
    font-size: .9rem;
    color: var(--gray-800);
    font-weight: 600;
}

.branch-info-phone {
    font-size: .9rem;
    color: var(--orange);
    font-weight: 700;
}

.branch-map-container { margin-bottom: 1.5rem; }

.branch-map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
}

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

.branch-actions {
    display: flex;
    gap: .75rem;
}

.branch-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .82rem;
    transition: var(--transition);
}

.branch-action-call { background: var(--orange); color: var(--white); }
.branch-action-call:hover { background: var(--orange-dark); }
.branch-action-wa { background: #25D366; color: var(--white); }
.branch-action-wa:hover { background: #20BA5A; }
.branch-action-dir { background: var(--navy); color: var(--white); }
.branch-action-dir:hover { background: var(--navy-light); }

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.branch-grid-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.branch-grid-map { height: 180px; }
.branch-grid-content { padding: 1.25rem; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .nav-end { display: none; }
    .menu-toggle { display: block; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .branches-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { left: 12px; right: 12px; }
    .hero { min-height: 90vh; }
    .section { padding: 3.5rem 0; }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; gap: .75rem; text-align: center; }
    .newsletter-form { flex-direction: column; }
    .bulk-form .form-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-features { flex-direction: column; align-items: center; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons a { width: 100%; text-align: center; justify-content: center; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons a { width: 100%; text-align: center; justify-content: center; }
}
