/* ============================================================
   Brothers Group — Main Stylesheet
   Construction & Engineering Company
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  /* Primary Theme */
  --orange:    #38bdf8;
  --orange-dk: #0284c7;
  --navy:      #0f4c81;
  --dark:      #082f49;
  --light:     #f0f9ff;
  --white:     #ffffff;
  --gray:      #64748b;
  --gray-lt:   #dbeafe;
  --text:      #334155;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(8,47,73,.12);
  --shadow-lg: 0 16px 48px rgba(8,47,73,.18);
  --transition: .3s ease;
}

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

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

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

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utility ──────────────────────────────────────────────── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 90px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247,148,29,.1);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.section-title span { color: var(--orange); }

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,148,29,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--orange);
  transform: translateY(-2px);
}

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

/* ── ─────────────────────────────────────────────────────── */
/* NAVBAR                                                      */
/* ─────────────────────────────────────────────────────────── */
/* ========================================
   NAVBAR
======================================== */

#navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:72px;
    background:#082f49;
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all .3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

#navbar.scrolled{
    height: 90px;
    background: rgba(8,47,73,.98);
    box-shadow: 0 4px 20px rgba(0,0,0,.12);
}

.nav-inner{
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* ========================================
   LOGO
======================================== */

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

.logo-img{
    width:42px;
    height:42px;
    object-fit:contain;
    display: block;
}

.logo-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-text span:first-child{
    font-family: 'Montserrat', sans-serif;
    font-size:0.95rem;
    font-weight:800;
    line-height:1;
    color: #ffffff;
    letter-spacing: .02em;
}

.logo-text span:last-child{
     font-size:.52rem;
    letter-spacing:.12em;
    margin-top:3px;
    font-weight: 500;
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-top: 6px;
}

/* ========================================
   NAVIGATION LINKS
======================================== */

.nav-links{
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li{
    margin: 0;
}

.nav-links a{
    color: #ffffff;
    text-decoration: none;
   font-size:.95rem;
    font-weight:600;
    transition: .3s ease;
}

.nav-links a:hover{
    color: #38bdf8;
}

/* Active Page */

.nav-links a.active{
    color: #38bdf8;
}

/* ========================================
   CTA BUTTON
======================================== */

.nav-cta{
    background: linear-gradient(
        135deg,
        #38bdf8,
        #0284c7
    );
    color: #ffffff !important;
    padding:10px 18px;
    font-size:.9rem;
    border-radius:8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta:hover{
    transform: translateY(-2px);
}

/* ========================================
   MOBILE MENU BUTTON
======================================== */

.nav-toggle{
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span{
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
}

/* ========================================
   PAGE OFFSET
======================================== */

.hero,
.page-banner{
    margin-top:72px;
}

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

@media(max-width:1200px){

    .logo-text span:first-child{
        font-size:1.6rem;
    }

    .nav-links{
        gap:22px;
    }
}

@media(max-width:992px){

    .nav-toggle{
        display:flex;
    }

    .nav-links{
        display:none;
    }

    .logo-img{
        width:55px;
        height:55px;
    }

    .logo-text span:first-child{
        font-size:1.4rem;
    }

    .logo-text span:last-child{
        font-size:.65rem;
    }
}
/* ── ─────────────────────────────────────────────────────── */
/* HERO SECTION                                                */
/* ─────────────────────────────────────────────────────────── */
.hero {
    position: relative;
     min-height:calc(100vh - 72px);
    margin-top:72px;
    padding-top:0;
    display: flex;
    align-items: center;
    overflow: hidden;

    
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-road-construction.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,47,73,.92) 0%,
    rgba(15,76,129,.85) 50%,
    rgba(56,189,248,.35) 100%
  );
}

/* animated diagonal lines overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(56,189,248,.04) 60px,
    rgba(56,189,248,.04) 62px
  );
  z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-top:0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56,189,248,.2);
  border: 1px solid rgba(247,148,29,.4);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-top: 20px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span { color: var(--orange); }

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255,255,255,.78);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.8;
}

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

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-wheel {
  width: 26px; height: 40px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 13px;
  position: relative;
}
.scroll-wheel::after {
  content: '';
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%; transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ── ─────────────────────────────────────────────────────── */
/* STATS STRIP                                                 */
/* ─────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--dark);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 40px 30px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

.stat-item:last-child { border-right: none; }

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247,148,29,.06), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stat-item:hover::before { opacity: 1; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* ── ─────────────────────────────────────────────────────── */
/* ABOUT PREVIEW                                               */
/* ─────────────────────────────────────────────────────────── */
.about-preview { background: var(--light); }

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

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

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-img-badge strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.about-img-badge span {
  font-size: .78rem;
  opacity: .9;
  font-weight: 500;
  letter-spacing: .05em;
}

.about-text .section-label { margin-top: 0; }

.about-text p {
  color: var(--gray);
  margin: 20px 0 28px;
  line-height: 1.85;
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}

.about-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
}

.about-checks li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── ─────────────────────────────────────────────────────── */
/* WHY CHOOSE US                                               */
/* ─────────────────────────────────────────────────────────── */
.why-choose { background: var(--white); }

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

.why-card {
  padding: 36px 28px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.why-card:hover::after { transform: scaleX(1); }

.why-icon {
  width: 58px; height: 58px;
  background: rgba(247,148,29,.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--orange);
  transform: rotate(5deg) scale(1.05);
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-card p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.75;
}

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

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15,23,42,.07);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

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

.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-img img { transform: scale(1.07); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.5), transparent);
}

.service-body {
  padding: 26px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-body p {
  font-size: .87rem;
  color: var(--gray);
  line-height: 1.75;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 600;
  margin-top: 18px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }
.service-link::after { content: '→'; }

/* ── ─────────────────────────────────────────────────────── */
/* PROJECTS PREVIEW                                            */
/* ─────────────────────────────────────────────────────────── */
.projects-preview { background: var(--dark); }
.projects-preview .section-title { color: var(--white); }
.projects-preview .section-desc  { color: rgba(255,255,255,.55); }

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

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

.project-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transform: translateY(20px);
  opacity: .85;
  transition: var(--transition);
}
.project-card:hover .project-overlay {
  transform: translateY(0);
  opacity: 1;
}

.project-tag {
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  align-self: flex-start;
  margin-bottom: 10px;
}

.project-overlay h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.project-overlay p {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}

/* ── ─────────────────────────────────────────────────────── */
/* CLIENTS CAROUSEL                                            */
/* ─────────────────────────────────────────────────────────── */
.clients-strip {
  background: var(--light);
  padding: 60px 0;
  overflow: hidden;
}

.clients-strip .section-label { display: block; margin-bottom: 8px; }

.clients-strip h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 16px 28px;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  transition: var(--transition);
}
.client-logo-item:hover {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(247,148,29,.15);
}
/* ====================================
   CLIENT LOGOS
==================================== */

.clients-logo-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:24px;
}

.client-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    transition:.3s ease;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.client-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.client-logo{
    width:110px;
    height:80px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.client-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.3s ease;
}

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

.client-card h4{
    font-size:1.1rem;
    font-weight:700;
    margin-bottom:8px;
    color:var(--dark);
}

.client-card p{
    font-size:.85rem;
    color:var(--gray);
    line-height:1.6;
}

.more-logo{
    width:80px;
    height:80px;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #38bdf8,
        #0284c7
    );
    color:#fff;
    font-size:2rem;
    font-weight:700;
}
/* ── ─────────────────────────────────────────────────────── */
/* CTA SECTION                                                 */
/* ─────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #e67e00 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,.04) 0,
    rgba(255,255,255,.04) 1px,
    transparent 1px,
    transparent 60px
  );
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-text p { color: rgba(255,255,255,.8); font-size: 1rem; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

.btn-cta-white {
  background: var(--white);
  color: var(--orange);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: .95rem;
  cursor: pointer;
}
.btn-cta-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.5);
  transition: var(--transition);
  font-family: var(--font-body);
  font-size: .95rem;
  cursor: pointer;
}
.btn-cta-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── ─────────────────────────────────────────────────────── */
/* PAGE BANNER (inner pages)                                   */
/* ─────────────────────────────────────────────────────────── */
.page-banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,.9), rgba(247,148,29,.4));
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.65);
  font-size: .88rem;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ── ─────────────────────────────────────────────────────── */
/* ABOUT PAGE                                                  */
/* ─────────────────────────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.overview-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.mission-vision {
  background: var(--dark);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}

.mv-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}
.mv-card:hover {
  background: rgba(247,148,29,.07);
  border-color: rgba(247,148,29,.3);
}

.mv-icon {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.mv-card p { color: rgba(255,255,255,.65); line-height: 1.85; }

/* Core Values */
.values-section { background: var(--light); }

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

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(15,23,42,.06);
  transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.value-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(247,148,29,.15);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p { font-size: .87rem; color: var(--gray); line-height: 1.75; }

/* Timeline */
.timeline-section { background: var(--white); }

.timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--navy));
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 40px;
}

.timeline-dot {
  position: absolute;
  left: -50px;
  top: 4px;
  width: 20px; height: 20px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--orange);
}

.timeline-year {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-item p { font-size: .9rem; color: var(--gray); }

/* ── ─────────────────────────────────────────────────────── */
/* SERVICES PAGE                                               */
/* ─────────────────────────────────────────────────────────── */
.services-full { background: var(--white); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-lt);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.sd-num {
  position: absolute;
  top: -20px; left: -20px;
  width: 64px; height: 64px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.service-detail-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.service-detail-text p {
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 20px;
}

.service-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 24px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy);
}
.benefit-item::before {
  content: '✓';
  width: 18px; height: 18px;
  background: rgba(247,148,29,.15);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── ─────────────────────────────────────────────────────── */
/* PROJECTS PAGE                                               */
/* ─────────────────────────────────────────────────────────── */
.projects-section { background: var(--white); }

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: center;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--gray-lt);
  color: var(--gray);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.projects-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.proj-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(15,23,42,.07);
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}
.proj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.proj-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.proj-card:hover .proj-img img { transform: scale(1.07); }

.proj-body { padding: 22px 20px; }
.proj-tag {
  background: rgba(247,148,29,.12);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 10px;
}

.proj-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.proj-meta {
  display: flex;
  gap: 16px;
  font-size: .8rem;
  color: var(--gray);
}
.proj-meta span { display: flex; align-items: center; gap: 5px; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(.92);
  transition: transform .3s;
}
.modal-overlay.open .modal-box { transform: scale(1); }

.modal-img { height: 320px; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }

.modal-content { padding: 36px; }
.modal-content h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.modal-content p { color: var(--gray); line-height: 1.8; margin-bottom: 12px; }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── ─────────────────────────────────────────────────────── */
/* GALLERY PAGE                                                */
/* ─────────────────────────────────────────────────────────── */
.gallery-section { background: var(--white); }

.masonry-grid {
  columns: 3;
  column-gap: 20px;
  margin-top: 56px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .5s;
}
.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(247,148,29,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  font-size: 2rem;
  color: var(--white);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(.9);
  transition: transform .3s;
}
.lightbox.open img { transform: scale(1); }

.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-close:hover { background: var(--orange); }

.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-prev:hover, .lb-next:hover { background: var(--orange); }

/* ── ─────────────────────────────────────────────────────── */
/* CLIENTS PAGE                                                */
/* ─────────────────────────────────────────────────────────── */
.clients-section { background: var(--white); }

.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.client-card {
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: var(--transition);
}
.client-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(247,148,29,.12);
  transform: translateY(-4px);
}

.client-initial {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
}

.client-card h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}

/* Testimonials */
.testimonials-section { background: var(--light); }

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

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(15,23,42,.06);
  position: relative;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.testi-quote {
  font-size: 3.5rem;
  color: var(--orange);
  font-family: Georgia, serif;
  line-height: .7;
  margin-bottom: 16px;
}

.testi-text {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  font-size: .9rem;
  flex-shrink: 0;
}

.testi-author h4 {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}
.testi-author span { font-size: .78rem; color: var(--gray); }

/* ── ─────────────────────────────────────────────────────── */
/* CONTACT PAGE                                                */
/* ─────────────────────────────────────────────────────────── */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info > p { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }

.info-cards { display: flex; flex-direction: column; gap: 20px; }

.info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  width: 48px; height: 48px;
  background: rgba(247,148,29,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--orange);
}

.info-card h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card p, .info-card a {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
  display: block;
}
.info-card a:hover { color: var(--orange); }

/* Contact Form */
.contact-form-wrap {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(247,148,29,.12);
}

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

.form-error {
  font-size: .78rem;
  color: #ef4444;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #ef4444; }

.form-group.error .form-error { display: block; }

.form-success {
  display: none;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: #16a34a;
  font-size: .9rem;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* Map */
.map-section { background: var(--light); padding: 60px 0; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── ─────────────────────────────────────────────────────── */
/* FOOTER                                                      */
/* ─────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .logo-text span:first-child { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-text span:last-child  { color: var(--orange); }

.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  line-height: 1.85;
  margin: 20px 0 24px;
  max-width: 280px;
}

.social-icons { display: flex; gap: 10px; }

.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--orange);
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.fc-icon {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255,255,255,.55);
  font-size: .87rem;
  line-height: 1.7;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255,255,255,.35);
  font-size: .82rem;
}

.footer-bottom span { color: var(--orange); }

/* ── ─────────────────────────────────────────────────────── */
/* BACK TO TOP                                                 */
/* ─────────────────────────────────────────────────────────── */
#back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(247,148,29,.4);
}
#back-top.show { opacity: 1; pointer-events: all; }
#back-top:hover { background: var(--orange-dk); transform: translateY(-3px); }

/* ── ─────────────────────────────────────────────────────── */
/* SCROLL REVEAL                                               */
/* ─────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* stagger delays */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ── ─────────────────────────────────────────────────────── */
/* RESPONSIVE                                                  */
/* ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid,
  .overview-grid    { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge  { right: 0; bottom: -16px; }
  .why-grid,
  .services-grid,
  .projects-grid,
  .values-grid,
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail   { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .projects-full-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid     { columns: 2; }
  .clients-logo-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid     { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .mv-grid          { grid-template-columns: 1fr; }
}

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

  .nav-links, .nav-cta {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark);
    padding: 20px;
    gap: 4px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none !important;
  }

  .nav-toggle { display: flex; }

  .why-grid,
  .services-grid,
  .projects-grid,
  .values-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }

  .cta-inner { flex-direction: column; text-align: center; }

  .masonry-grid { columns: 1; }

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

  .projects-full-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .about-checks { grid-template-columns: 1fr; }

  .service-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .page-banner { height: 260px; }
  .page-banner h1 { font-size: 1.6rem; }
  .modal-content { padding: 24px; }
  .contact-form-wrap { padding: 28px 20px; }
}
