/* ============================================
   SA-DOORS | Professional Garage Door Services
   ============================================ */

:root {
  --gold: #e0a238;
  --gold-dark: #c08a26;
  --dark: #212c31;
  --navy: #0F172A;
  --blue: #1E40AF;
  --white: #FFFFFF;
  --light: #F8FAFC;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --green: #25D366;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.16);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-700);
  background: var(--white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { color: var(--navy); font-weight: 800; line-height: 1.3; }

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

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 14px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.topbar a { color: var(--white); display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--gold); }
.topbar-info { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 56px; width: auto; }
.logo-text strong { display: block; color: var(--navy); font-size: 18px; font-weight: 800; }
.logo-text span { color: var(--gold); font-size: 13px; font-weight: 600; }

.nav { display: flex; align-items: center; gap: 5px; }
.nav a {
  padding: 10px 14px; color: var(--gray-700); font-weight: 600; font-size: 15px;
  border-radius: 8px; position: relative;
}
.nav a:hover, .nav a.active { color: var(--gold); background: rgba(224, 162, 56, 0.08); }
.nav .has-dropdown { position: relative; }
.nav .dropdown {
  position: absolute; top: 100%; right: 0;
  background: var(--white); min-width: 260px; padding: 12px;
  box-shadow: var(--shadow-lg); border-radius: var(--radius);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition);
}
.nav .has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .dropdown a { display: block; padding: 10px 14px; font-size: 14px; border-bottom: 1px solid var(--gray-100); }
.nav .dropdown a:last-child { border-bottom: none; }

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--white);
  padding: 12px 22px; border-radius: 10px; font-weight: 700; font-size: 15px;
}
.header-cta:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 8px;
  background: var(--gold); color: var(--white); font-size: 22px;
  align-items: center; justify-content: center;
}

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 620px;
  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(33,44,49,0.85)),
    url('../img/works/work-1.webp') center/cover no-repeat;
  color: var(--white);
  display: flex; align-items: center;
  padding: 80px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(224,162,56,0.18), transparent 60%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(224,162,56,0.18); border: 1px solid rgba(224,162,56,0.4);
  color: var(--gold); padding: 8px 16px; border-radius: 100px;
  font-size: 14px; font-weight: 700; margin-bottom: 20px;
}
.hero h1 {
  color: var(--white); font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 900; margin-bottom: 18px; line-height: 1.2;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: clamp(16px, 1.8vw, 19px); margin-bottom: 32px; opacity: 0.92; max-width: 600px; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px;
  transition: var(--transition); border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(224,162,56,0.4); color: var(--white); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-whatsapp:hover { background: #1eb955; transform: translateY(-3px); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--dark); color: var(--white); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 20px;
}
.hero-stat {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px); border-radius: var(--radius);
  padding: 18px 12px; text-align: center;
}
.hero-stat strong { display: block; color: var(--gold); font-size: clamp(22px, 3vw, 32px); font-weight: 900; }
.hero-stat span { font-size: 13px; opacity: 0.9; }

.hero-card {
  background: var(--white); color: var(--navy); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg); position: relative;
}
.hero-card h3 { color: var(--navy); font-size: 22px; margin-bottom: 8px; }
.hero-card p { color: var(--gray-500); font-size: 14px; margin-bottom: 22px; }
.hero-card form .form-row { margin-bottom: 14px; }
.hero-card input, .hero-card select, .hero-card textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--gray-200);
  border-radius: 10px; font-family: inherit; font-size: 14px;
  background: var(--light); transition: var(--transition);
}
.hero-card input:focus, .hero-card select:focus, .hero-card textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.hero-card button {
  width: 100%; padding: 16px; background: var(--gold); color: var(--white);
  border-radius: 10px; font-weight: 700; font-size: 16px;
}
.hero-card button:hover { background: var(--gold-dark); }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 50px; max-width: 720px; margin-inline: auto; }
.section-tag {
  display: inline-block; color: var(--gold); font-weight: 700;
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--gray-500); font-size: 17px; }

/* ============ SERVICES GRID ============ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--gray-100); overflow: hidden;
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-body { padding: 24px; }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px; margin-bottom: 16px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--gray-500); font-size: 15px; margin-bottom: 16px; }
.service-card .link {
  color: var(--gold); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card .link:hover { color: var(--gold-dark); }

/* ============ FEATURES ============ */
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature {
  background: var(--white); padding: 30px 24px; border-radius: var(--radius);
  text-align: center; transition: var(--transition); border: 1px solid var(--gray-100);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.feature-icon {
  width: 70px; height: 70px; margin: 0 auto 18px;
  background: rgba(224,162,56,0.12); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.feature h3 { font-size: 18px; margin-bottom: 10px; color: var(--navy); }
.feature p { color: var(--gray-500); font-size: 14px; }

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img img { width: 100%; height: 500px; object-fit: cover; }
.about-img::after {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 140px; height: 140px; background: var(--gold);
  border-radius: var(--radius-lg); z-index: -1;
}
.about-content h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 16px; }
.about-content > p { color: var(--gray-500); font-size: 16px; margin-bottom: 22px; }
.about-list { list-style: none; margin-bottom: 24px; }
.about-list li {
  display: flex; align-items: start; gap: 12px; padding: 10px 0;
  color: var(--gray-700); font-weight: 600;
}
.about-list li::before {
  content: '✓'; flex: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900;
}

/* ============ BEFORE/AFTER ============ */
.bg-light { background: var(--light); }
.ba-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.ba-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
}
.ba-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; }
.ba-images > div { position: relative; }
.ba-images img { width: 100%; height: 240px; object-fit: cover; }
.ba-label {
  position: absolute; top: 12px; right: 12px;
  background: var(--navy); color: var(--white);
  padding: 4px 12px; border-radius: 100px; font-size: 12px; font-weight: 700;
}
.ba-label.after { background: var(--gold); }
.ba-body { padding: 18px 22px; }
.ba-body h4 { color: var(--navy); margin-bottom: 4px; font-size: 17px; }
.ba-body p { font-size: 14px; color: var(--gray-500); }

/* ============ PORTFOLIO ============ */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.portfolio-item {
  position: relative; aspect-ratio: 1/1; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  cursor: pointer;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.portfolio-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent 50%);
  opacity: 0; transition: var(--transition);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item:hover::after { opacity: 1; }

/* ============ AREAS ============ */
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.area-card {
  background: var(--white); padding: 20px; border-radius: var(--radius);
  text-align: center; border: 1.5px solid var(--gray-100);
  transition: var(--transition); display: flex; flex-direction: column; gap: 10px;
  align-items: center;
}
.area-card:hover {
  border-color: var(--gold); background: rgba(224,162,56,0.04);
  transform: translateY(-4px);
}
.area-card .icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(224,162,56,0.12); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.area-card strong { color: var(--navy); font-size: 15px; }
.area-card span { color: var(--gray-500); font-size: 13px; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: var(--white); padding: 30px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); position: relative;
  border-top: 4px solid var(--gold);
}
.testimonial .stars { color: var(--gold); margin-bottom: 14px; font-size: 18px; }
.testimonial p { color: var(--gray-700); font-style: italic; margin-bottom: 18px; font-size: 15px; }
.testimonial-user { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}
.testimonial-user strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial-user span { color: var(--gray-500); font-size: 13px; }

/* ============ FAQ ============ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); margin-bottom: 14px;
  overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-q {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 700; color: var(--navy); font-size: 16px;
}
.faq-q::after {
  content: '+'; flex: none;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 400; transition: var(--transition);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 24px;
  color: var(--gray-500); transition: max-height 0.4s, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 24px 22px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white); padding: 70px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(224,162,56,0.2), transparent 50%);
}
.cta-banner .container { position: relative; z-index: 2; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(26px, 3.5vw, 40px); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; max-width: 700px; margin-inline: auto; }
.cta-banner .hero-cta { justify-content: center; margin-bottom: 0; }

/* ============ FOOTER ============ */
.footer {
  background: var(--gray-900); color: rgba(255,255,255,0.75);
  padding: 70px 0 30px; font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white); font-size: 16px; margin-bottom: 18px;
  position: relative; padding-bottom: 12px;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 40px; height: 3px; background: var(--gold); border-radius: 100px;
}
.footer-about .logo img { height: 60px; background: var(--white); padding: 8px; border-radius: 10px; margin-bottom: 18px; }
.footer-about p { margin-bottom: 18px; line-height: 1.8; }
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: rgba(255,255,255,0.75); display: inline-flex; align-items: center; gap: 6px; }
.footer-list a:hover { color: var(--gold); padding-right: 4px; }
.footer-contact-item {
  display: flex; align-items: start; gap: 10px; margin-bottom: 14px;
}
.footer-contact-item .icon {
  width: 38px; height: 38px; border-radius: 50%; flex: none;
  background: rgba(224,162,56,0.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.footer-contact-item a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.footer-social a:hover { background: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  font-size: 13px;
}

/* ============ FLOATING CTAs ============ */
.float-ctas {
  position: fixed; left: 18px; bottom: 18px; z-index: 999;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); color: var(--white); }
.float-btn.whatsapp { background: var(--green); }
.float-btn.call { background: var(--gold); animation: pulse 2s infinite; }

.float-btn .tooltip {
  position: absolute; left: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--navy); color: var(--white); padding: 6px 12px;
  border-radius: 8px; font-size: 13px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.float-btn:hover .tooltip { opacity: 1; left: calc(100% + 6px); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(224,162,56,0.7); }
  70% { box-shadow: 0 0 0 18px rgba(224,162,56,0); }
  100% { box-shadow: 0 0 0 0 rgba(224,162,56,0); }
}

/* ============ INNER PAGE HEADER ============ */
.page-header {
  background: linear-gradient(135deg, rgba(15,23,42,0.92), rgba(33,44,49,0.88)),
    url('../img/works/work-5.webp') center/cover no-repeat;
  color: var(--white); padding: 100px 0 70px; text-align: center;
}
.page-header h1 { color: var(--white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-header p { font-size: 17px; opacity: 0.9; max-width: 720px; margin: 0 auto 14px; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.85); flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ============ CONTENT PAGES ============ */
.content-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start;
}
.content-main h2 { font-size: 28px; margin: 28px 0 14px; color: var(--navy); }
.content-main h3 { font-size: 22px; margin: 22px 0 12px; color: var(--navy); }
.content-main p { margin-bottom: 14px; color: var(--gray-700); }
.content-main ul, .content-main ol { padding-right: 22px; margin-bottom: 16px; }
.content-main li { margin-bottom: 8px; color: var(--gray-700); }
.content-main img { border-radius: var(--radius); margin: 18px 0; }
.content-main blockquote {
  background: var(--light); border-right: 4px solid var(--gold);
  padding: 16px 22px; border-radius: 10px; margin: 18px 0;
  color: var(--gray-700); font-style: italic;
}
.sidebar {
  position: sticky; top: 100px;
  background: var(--white); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.sidebar h4 {
  font-size: 18px; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gold); color: var(--navy);
}
.sidebar-list { list-style: none; margin-bottom: 24px; }
.sidebar-list li { margin-bottom: 4px; }
.sidebar-list a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--gray-700); font-size: 14px; font-weight: 600;
  border: 1px solid transparent;
}
.sidebar-list a:hover, .sidebar-list a.active {
  background: rgba(224,162,56,0.08); color: var(--gold);
  border-color: rgba(224,162,56,0.3);
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--navy), var(--dark));
  color: var(--white); padding: 24px; border-radius: var(--radius);
  text-align: center; margin-top: 16px;
}
.sidebar-cta h4 { color: var(--white); border: none; padding: 0; }
.sidebar-cta p { font-size: 14px; opacity: 0.85; margin: 8px 0 14px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ============ PRICING TABLE ============ */
.pricing-table {
  width: 100%; border-collapse: collapse; margin: 18px 0;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--navy); color: var(--white);
  padding: 14px; text-align: right; font-weight: 700;
}
.pricing-table td {
  padding: 14px; border-bottom: 1px solid var(--gray-100); color: var(--gray-700);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) { background: var(--light); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 400px; }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: relative; top: 0; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .topbar-info { gap: 12px; font-size: 13px; }
  .nav { display: none; position: fixed; top: 80px; right: 0; left: 0;
    flex-direction: column; background: var(--white); padding: 20px;
    box-shadow: var(--shadow-lg); max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: 14px; border-bottom: 1px solid var(--gray-100); }
  .nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; padding: 0 14px; min-width: 0; background: var(--light);
    border-radius: 8px; margin-top: 4px; display: none;
  }
  .nav .has-dropdown.open .dropdown { display: block; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { padding: 60px 0 70px; min-height: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature { padding: 22px 14px; }
  .ba-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-ctas { left: 14px; bottom: 14px; }
  .float-btn { width: 52px; height: 52px; font-size: 24px; }
  .logo-text { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .btn { padding: 13px 20px; font-size: 14px; }
  .section-head h2 { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ============ HELPERS ============ */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 20px; } .mt-3 { margin-top: 30px; } .mt-4 { margin-top: 40px; }
.mb-2 { margin-bottom: 20px; } .mb-3 { margin-bottom: 30px; } .mb-4 { margin-bottom: 40px; }
