/* =============================================
   GMG CONTRACTS LTD — SHARED STYLESHEET
   ============================================= */

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

:root {
  --primary:      #1c2b3a;
  --accent:       #e85d04;
  --accent-hover: #c44d00;
  --light:        #f8f9fa;
  --white:        #ffffff;
  --dark:         #1a202c;
  --body-text:    #4a5568;
  --muted:        #718096;
  --border:       #e2e8f0;
  --shadow:       0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.13);
  --radius:       8px;
  --radius-lg:    16px;
  --ease:         0.3s ease;
  --container:    1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--body-text); line-height: 1.8; }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 90px 0; }
.section--dark { background: var(--primary); }
.section--light { background: var(--light); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--muted);
}
.section--dark .section-header h2 { color: var(--white); }
.section--dark .section-header p  { color: rgba(255,255,255,0.65); }
.section--dark .section-header .overline { color: #fb923c; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,93,4,0.32);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.navbar--solid {
  background: var(--primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}
.nav-logo img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text .name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text .tag {
  display: block;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--ease);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links .btn { padding: 9px 22px; font-size: 0.83rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: all var(--ease);
  border-radius: 2px;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--primary);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('images/imgi_4_house-in-dowra.jpg') center/cover;
  opacity: 0.12;
}
.page-hero .container { position: relative; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.page-hero .breadcrumb a:hover { color: #fb923c; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
}

/* =============================================
   HERO (home page)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/imgi_4_house-in-dowra.jpg') center/cover no-repeat;
  opacity: 0.3;
  transform: scale(1.04);
  transition: transform 7s ease, opacity 1s ease;
}
.hero-bg.ready { transform: scale(1); opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(28,43,58,0.92) 0%,
    rgba(28,43,58,0.65) 60%,
    rgba(232,93,4,0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 1.5rem 80px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(232,93,4,0.18);
  border: 1px solid rgba(232,93,4,0.38);
  color: #fdba74;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-pill::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 680px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-content h1 em {
  font-style: normal;
  color: #fb923c;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.hero-stat .num sup { font-size: 1.2rem; color: #fb923c; }
.hero-stat .lbl {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.52);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 5px;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  background: rgba(232,93,4,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: 0.83rem;
  font-weight: 600;
  margin-top: 18px;
  transition: gap var(--ease);
}
.service-card:hover .service-link { gap: 9px; }

/* Service detail (full page) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.service-detail-content .overline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.service-detail-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 16px;
}
.service-detail-content p { margin-bottom: 16px; }
.detail-list { margin: 20px 0 28px; }
.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--body-text);
}
.detail-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: rgba(232,93,4,0.1);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-float {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 195px; height: 195px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  top: 32px; left: -20px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge .num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.88;
}

.about-content .overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 18px; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}
.feature-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(232,93,4,0.1);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =============================================
   PROJECTS / GALLERY
   ============================================= */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.65);
  background: transparent;
  font-size: 0.83rem;
  font-weight: 500;
  transition: all var(--ease);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.filter-btn--light {
  border-color: var(--border);
  color: var(--muted);
}
.filter-btn--light:hover,
.filter-btn--light.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 22px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.gallery-label span {
  color: #fb923c;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Simple home projects grid */
.projects-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.projects-preview .proj {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.projects-preview .proj.wide {
  grid-column: span 2;
}
.projects-preview .proj img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.projects-preview .proj:hover img { transform: scale(1.07); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,43,58,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.projects-preview .proj:hover .proj-overlay { opacity: 1; }
.proj-overlay h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.proj-overlay span {
  display: block;
  color: #fb923c;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   PROPERTIES
   ============================================= */
.properties-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.prop-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--ease), box-shadow var(--ease);
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.prop-img {
  position: relative;
  height: 230px;
  overflow: hidden;
}
.prop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.prop-card:hover .prop-img img { transform: scale(1.05); }
.prop-badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 4px 13px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.prop-badge.sale    { background: var(--accent); }
.prop-badge.rent    { background: #2563eb; }
.prop-badge.commercial { background: #7c3aed; }
.prop-badge.holiday { background: #059669; }

.prop-body { padding: 22px; }
.prop-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.prop-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.prop-meta {
  display: flex;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.prop-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--muted);
}
.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.prop-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
}
.prop-price sub {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #bf4500 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}
.cta-inner h2 { color: var(--white); margin-bottom: 10px; }
.cta-inner p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 520px; }
.cta-btn-group { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-info > p { margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(232,93,4,0.09);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-item-body label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 3px;
}
.contact-item-body p {
  color: var(--dark);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}
.contact-item-body a { color: var(--dark); transition: color var(--ease); }
.contact-item-body a:hover { color: var(--accent); }

.contact-form {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,93,4,0.1);
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}
.footer-brand img {
  height: 46px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}
.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.85;
}
.footer-brand .reg {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.footer-col li { margin-bottom: 11px; }
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  transition: color var(--ease);
}
.footer-col a:hover { color: #fb923c; }
.footer-address {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.75;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom p { color: rgba(255,255,255,0.32); margin: 0; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center  { text-align: center; }
.mt-12  { margin-top: 12px; }
.mt-20  { margin-top: 20px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }
.mb-0   { margin-bottom: 0; }
.accent { color: var(--accent); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid    { grid-template-columns: 1fr; gap: 50px; }
  .about-images  { max-width: 540px; margin: 0 auto; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail.reverse { direction: ltr; }
  .service-detail-img { height: 280px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .projects-preview { grid-template-columns: 1fr 1fr; }
  .projects-preview .proj.wide { grid-column: span 2; }
}

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

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 80px 2rem 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 18px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    text-align: center;
  }
  .nav-links a::after { display: none; }
  .nav-links .btn { margin-top: 20px; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-stats { gap: 28px; }
  .hero-stat .num { font-size: 1.9rem; }

  .gallery-grid { grid-template-columns: 1fr; }
  .projects-preview { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .projects-preview .proj.wide { grid-column: span 1; }

  .footer-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btn-group { justify-content: center; }

  .about-img-float { display: none; }
  .about-badge { left: 10px; }

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

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

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

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .properties-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}
