﻿/* ============================================
   BAITUNA – ביתינו بيتنا
   Main Stylesheet (RTL / Hebrew-first)
   ============================================ */

:root {
  /* ── Brand palette (from official design) ── */
  --primary:       #2C8C88;   /* teal */
  --primary-dark:  #234E4C;   /* dark teal */
  --primary-light: #BFE6D4;   /* light mint */
  --accent:        #6BAE78;   /* green */
  --accent-light:  #D9EAE2;   /* pale green */
  --text:          #234E4C;
  --text-muted:    #7C8B88;
  --bg:            #F1F7F4;
  --white:         #FFFFFF;
  --border:        #E3EAE8;
  --border-light:  #EDF1F0;
  --shadow:        0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:     0 12px 48px rgba(44,140,136,.15);
  --radius:        14px;
  --radius-sm:     8px;
  --font-he:       'Heebo', 'Arial Hebrew', sans-serif;
  --font-ar:       'Cairo', 'Arial', sans-serif;
  --font-en:       'Quicksand', sans-serif;

  /* team avatar backgrounds */
  --rose-light:    #fde8e8;
  --teal-light:    #BFE6D4;
  --gold-light:    #D9EAE2;
  --lavender-light:#e8f4f4;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-he);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  direction: rtl;
}

h1,h2,h3,h4 { font-family: var(--font-he); line-height: 1.3; }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

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

/* ── UTILITIES ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-he);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44,140,136,.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-full { width: 100%; justify-content: center; }

.btn-lang {
  font-family: var(--font-ar);
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  font-size: .88rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: all .2s;
}

.btn-lang:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
}

/* ── LOGO ── */
.logo-img {
  height: 48px;
  width: 48px;
  display: block;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(44,140,136,.3);
}

.hero-logo-wrap {
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.footer-logo-wrap { margin-bottom: 16px; }

.footer-logo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 52px;
  width: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-name-ar {
  font-family: var(--font-ar);
  font-size: 1.2rem;
  font-weight: 700;
  color: #7dcfad;
}

.footer-name-he {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-he {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
}

.logo-ar {
  font-family: var(--font-ar);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.logo-sep { color: var(--border); font-size: 1.3rem; }

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}

.logo-name-ar {
  font-family: var(--font-ar);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-name-he {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .02em;
}

.main-nav {
  display: flex;
  gap: 28px;
  margin-right: auto;
  margin-left: 0;
}

.main-nav a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0; left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .25s;
}

.main-nav a:hover { color: var(--primary); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta { padding: 10px 22px; font-size: .9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #1a3c3a 0%, #2C8C88 50%, #234E4C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(107,174,120,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.07) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
  padding: 60px 24px;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-he { color: var(--white); }
.title-spacer { color: rgba(255,255,255,.4); margin: 0 12px; }
.title-ar {
  font-family: var(--font-ar);
  color: #9CD9BC;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

.hero-sub-ar {
  font-family: var(--font-ar);
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.8;
  direction: rtl;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scrollHint 1.6s ease-in-out infinite;
}

@keyframes scrollHint {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 42px 0;
  box-shadow: var(--shadow);
}

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

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label { font-size: .9rem; color: var(--text-muted); font-weight: 500; }

/* ── ABOUT ── */
.about { background: var(--bg); }

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

.about-image-wrap { position: relative; }

.about-img-placeholder {
  background: var(--primary-light);
  border-radius: var(--radius);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.img-icon { font-size: 6rem; }

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.badge-num { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-text { font-size: .8rem; opacity: .9; }

.about-text .section-title { text-align: right; }

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.bilingual-desc {
  background: var(--accent-light);
  border-right: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin: 16px 0;
}

.ar-text {
  font-family: var(--font-ar);
  font-size: .95rem;
  color: var(--text-muted);
  direction: rtl;
  line-height: 1.9;
  margin: 0;
}

.about-highlights {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text);
}

.check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}

.supervision-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  margin-top: 28px;
  border: 1px solid rgba(44,140,136,.2);
}

.sup-icon { font-size: 1.6rem; }

.supervision-badge strong { display: block; font-size: .9rem; color: var(--primary-dark); }
.supervision-badge span { font-size: .85rem; color: var(--text-muted); }

/* ── SERVICES ── */
.services { background: var(--bg); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: right;
}

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

.service-card:hover::before { transform: scaleX(1); }

.service-icon { font-size: 2.4rem; margin-bottom: 16px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p { font-size: .93rem; color: var(--text-muted); line-height: 1.7; }

/* ── VALUES ── */
.values {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

.values .section-header.light .section-title { color: var(--white); }
.values .section-header.light .section-label {
  background: rgba(255,255,255,.2);
  color: var(--white);
}

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

.value-item {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all .3s;
}

.value-item:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.value-icon { font-size: 2.2rem; margin-bottom: 14px; }

.value-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.value-item p { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ── TEAM ── */
.team { background: var(--white); }

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

.team-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: all .3s;
}

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

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
}

.team-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }

.team-role {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}

.team-card p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }

/* ── GALLERY ── */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item { border-radius: var(--radius); overflow: hidden; }
.gi-large { grid-column: span 2; grid-row: span 2; }

.gallery-placeholder {
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  transition: transform .3s;
}

.gallery-placeholder:hover { transform: scale(1.03); }
.gallery-placeholder span { font-size: 2.5rem; }

.gp-1 { background: linear-gradient(135deg, #2C8C88, #234E4C); min-height: 360px; }
.gp-2 { background: linear-gradient(135deg, #2C8C88, #2C8C88); }
.gp-3 { background: linear-gradient(135deg, #6BAE78, #4F9E6A); }
.gp-4 { background: linear-gradient(135deg, #2C8C88, #234E4C); }
.gp-5 { background: linear-gradient(135deg, #2C8C88, #234E4C); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all .3s;
}

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

.quote-mark {
  font-size: 5rem;
  line-height: .6;
  color: var(--primary-light);
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: .95rem; }
.testimonial-author span { font-size: .82rem; color: var(--text-muted); }

/* ── CONTACT ── */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.contact-info .section-title { text-align: right; margin-bottom: 16px; }

.contact-info > p { color: var(--text-muted); margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-item strong { font-weight: 700; color: var(--text); font-size: .95rem; }
.contact-item span, .contact-item a { color: var(--text-muted); font-size: .9rem; }
.contact-item a:hover { color: var(--primary); }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-he);
  font-size: .95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,140,136,.12);
}

.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 600;
  text-align: center;
}

.form-success.show { display: block; }

/* ── FOOTER ── */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px;
}

.footer-logo .logo-he { color: #7dcfad; }
.footer-logo .logo-ar { color: #9CD9BC; }
.footer-logo .logo-sep { color: rgba(255,255,255,.2); }

.footer-brand p {
  font-size: .9rem;
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background .2s;
}

.social-links a:hover { background: rgba(255,255,255,.18); }

.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  transition: color .2s;
}

.footer-col a:hover { color: #7dcfad; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 24px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
}

/* ── SCROLL ANIMATION ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .main-nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { left: 12px; bottom: -16px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-large { grid-column: span 1; grid-row: span 1; }
  .gp-1 { min-height: 240px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }

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

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
}
