/* =========================================
   GEL PROPERTIES - GLOBAL STYLES
========================================= */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--dark-900);
  color: var(--text-primary);
  line-height: 1.6;
  padding-top: var(--header-height);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   GLOBAL BRAND VARIABLES
============================== */
:root {
  /* ================= GOLD SYSTEM ================= */

  --gold-700: #95692a; /* darkest bronze edge */
  --gold-600: #a8772f;
  --gold-500: #caa24a; /* primary accent gold */
  --gold-400: #e6d98a; /* highlight */
  --gold-300: #f3ebbd; /* soft glow */

  --gold-gradient: linear-gradient(
    135deg,
    #9e6f2c 0%,
    #caa24a 35%,
    #e6d98a 50%,
    #caa24a 65%,
    #9e6f2c 100%
  );
  --gold-glow: rgba(202, 162, 74, 0.35);

  --container-standard: 1200px;
  --container-wide: 1400px;
  --container-ultra: 1600px;
  --header-height: 95px;

  --side-padding-desktop: 80px;
  --side-padding-tablet: 50px;
  --side-padding-mobile: 25px;

  /* Core Background Layers */
  --dark-900: #0b0b0c; /* Deepest background (main body) */
  --dark-800: #111112; /* Primary section background */
  --dark-700: #171718; /* Secondary section background */

  /* Surface Layers */
  --dark-600: #1e1f21; /* Cards / Elevated containers */
  --dark-500: #252628; /* Hover state surface */

  /* Borders & Subtle Dividers */
  --dark-border: #2c2d30;

  --text-primary: #f2f2f2;
  --text-secondary: #b3b3b3;
  --text-muted: #8a8a8a;

  --hero-overlay: linear-gradient(
    to bottom,
    rgba(11, 11, 12, 0.3),
    rgba(11, 11, 12, 0.7)
  );
}

/* ================= GLOBAL CONTAINERS ================= */
.container,
.container-wide,
.container-ultra {
  width: 90%;
  margin: 0 auto;
}

.container {
  max-width: var(--container-standard);
}

.container-wide {
  max-width: var(--container-wide);
}

.container-ultra {
  max-width: var(--container-ultra);
}

/* GLOBAL SECTION SPACING */
section {
  padding: 100px 0;
}

@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }
}

/* ==============================
   BUTTON SYSTEM (HIERARCHY)
============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 40px;
  text-decoration: none;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

/* --------------------------------
   PRIMARY – Gold Fill
---------------------------------*/
.btn-primary {
  background: var(--gold-gradient);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(202, 162, 74, 0.35);
}

/* --------------------------------
   SECONDARY – Gold Outline
---------------------------------*/
.btn-secondary {
  background: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
}

.btn-secondary:hover {
  background: var(--gold-gradient);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(202, 162, 74, 0.35);
}

/* --------------------------------
   TERTIARY – Subtle Dark Button
---------------------------------*/
.btn-tertiary {
  background: var(--dark-600);
  color: var(--text-primary);
  border: 1px solid var(--dark-border);
}

.btn-tertiary:hover {
  background: var(--dark-500);
  transform: translateY(-3px);
}

/* --------------------------------
   TEXT LINK CTA (Reusable)
---------------------------------*/
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  transition: 0.3s ease;
}

.link-cta .arrow {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.link-cta:hover .arrow {
  animation: none;
  transform: translateX(8px);
}

/* Responsive Button Stability */
.btn-primary,
.btn-secondary {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .btn {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}

/* =========================================
   UNIFIED PAGE HERO
   ========================================= */

.page-hero {
  position: relative;
  width: 100%;
  min-height: 50vh; /* consistent vertical presence */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px; /* replaces inconsistent 140px/60px setups */
  color: var(--text-primary);
  overflow: hidden;
}

/* Background Image Layer */
.page-hero .hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Content Layer */
.page-hero .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

/* Headline */
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

/* Subtext */
.page-hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Global Hero Overlay - Unified Style */
.global-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--hero-overlay);
  z-index: 2; /* Ensures it sits between the background and the text */
}

/* ==============================
   CARD SYSTEM (UNIVERSAL ELEVATED CONTAINERS)
============================== */

.card {
  background: var(--dark-600);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  overflow: hidden;

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* Hover modifier */
.card.hoverable:hover {
  background: var(--dark-500);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* Image container */
.card-image {
  position: relative;
  overflow: hidden;
}

/* Image */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition: transform 0.45s ease;
  will-change: transform;
}

/* Image zoom on card hover */
.card:hover .card-image img {
  transform: scale(1.05);
}

/* Image overlay */
.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    rgba(0, 0, 0, 0.05) 100%
  );
  opacity: 0.4;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* Overlay hover */
.card:hover .image-overlay {
  opacity: 0;
}

.card-body {
  padding: 1.5rem;
}

.section-dark {
  background: var(--dark-800);
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

p {
  color: var(--text-secondary);
}

/* ==============================
   TYPOGRAPHY RESPONSIVE
============================== */

@media (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

/* =============================
   UTILITIES
============================= */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* new reusable hover class */
.gold-hover:hover {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ================================
   LOGO PRELOADER
================================ */

#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 140px;
  margin-bottom: 25px;
  animation: logoPulse 2s ease-in-out infinite;
}

/* Gold loading line */

.loader-line {
  width: 160px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  margin: auto;
  overflow: hidden;
  border-radius: 3px;
}

.loader-line::after {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  background: var(--gold-gradient);
  animation: loadingMove 1.6s infinite;
}

/* Animations */

@keyframes loadingMove {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(250%);
  }
}

@keyframes logoPulse {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
}

/* HEADER */
header {
  position: fixed;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  top: 0;
  background: rgba(11, 11, 12, 0.95);
  backdrop-filter: blur(8px);
  padding: 20px;
  z-index: 999;
}

.nav-container {
  width: 90%;
  max-width: var(--container-ultra);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  /* base logical size */
  width: auto;
  display: block;
  transform: scale(1.15);
  /* visually bigger */
  transform-origin: left center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: 0.3s;
}

/* =========================
   ACTIVE NAV LINK
========================= */

#nav-links li a.active {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

#nav-links li a.active::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 6px;
  background: var(--gold-gradient);
}

/* ==============================
   HAMBURGER MENU
============================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s ease;
}

/* ==============================
   HEADER RESPONSIVE
============================== */

@media (min-width: 1400px) {
  .logo img {
    transform: scale(1.25);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  #nav-links {
    position: absolute;
    top: var(--header-height);
    right: 5%;
    background: var(--dark-800);
    flex-direction: column;
    gap: 20px;
    width: 220px;
    padding: 25px;
    border-radius: 10px;
    display: none;
    z-index: 10000;
  }

  #nav-links.active {
    display: flex;
  }
}

/* ==============================
   HOME HERO SLIDESHOW - FASTER CINEMATIC
============================== */
.hero-slideshow {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Poppins", sans-serif;
}

@supports (height: 100svh) {
  .hero-slideshow {
    min-height: calc(100svh - var(--header-height));
  }
}

/* Slides */
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition:
    opacity 1.2s ease,
    transform 10s ease;
}

/* Active slide */
.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1.05);
}

/* ==============================
   HOME HERO CONTENT - PREMIUM REDESIGN
============================== */

.hero-slideshow .hero-content {
  position: relative;
  z-index: 10;
  color: var(--text-primary);
}

/* Small gold tagline */
.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Main Heading */
.hero-slideshow h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

/* Paragraph */
.hero-slideshow p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.7;
}

/* Add subtle fade-in animation */
.hero-content {
  animation: heroFade 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes heroFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==============================
   HERO RESPONSIVE
============================== */

@media (max-width: 1024px) {
  .hero-slideshow h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .hero-slideshow .hero-content {
    padding-left: 0;
    max-width: 100%;
    text-align: left;
  }

  .hero-slideshow h1 {
    font-size: 2rem;
  }

  .hero-slideshow p {
    font-size: 1rem;
    max-width: 100%;
  }
}

@media (max-height: 650px) and (min-width: 900px) {
  .hero-slideshow {
    height: calc(100vh - var(--header-height));
    min-height: 480px;
    align-items: flex-start;
    padding-top: 80px;
  }

  .hero-slideshow h1 {
    font-size: 2.3rem;
  }

  .hero-slideshow p {
    font-size: 0.95rem;
    margin-bottom: 22px;
  }
}

/* ==============================
   FEATURED ABOUT - PREMIUM EDITORIAL
============================== */

.featured-about {
  position: relative;
  background: var(--dark-800);
  overflow: hidden;
}

/* subtle radial depth glow */
.featured-about::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(202, 162, 74, 0.08) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
  z-index: 0;
}

.featured-about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

/* ================= TEXT SIDE ================= */

.about-text {
  max-width: 520px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.featured-about h2 {
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 600;
}

.gold-accent {
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 20px;
  font-weight: 500;
}

.featured-about p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ================= IMAGE SIDE ================= */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

/* subtle gold edge highlight */
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(202, 162, 74, 0.25);
  pointer-events: none;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .featured-about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-text {
    max-width: 100%;
  }

  .featured-about h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .featured-about {
    padding: 90px 0;
  }
}
/* ==============================
   FEATURED PROJECTS - PREMIUM STYLE
============================== */

.featured-projects {
  background: var(--dark-700);
  color: var(--text-primary);
}

.featured-projects .section-title {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
}

/* Grid Layout */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

/* Project Card Specific Styles */

.project-card .card-image {
  height: 250px;
}

.project-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.project-card p {
  font-size: 0.95rem;
  color: #d0d0d0;
  margin-bottom: 18px;
  line-height: 1.5;
}
/* ==============================
   FEATURED PROJECTS TEXT CTA
============================== */

.projects-cta {
  margin-top: 50px;
}

/* Base Style */
.projects-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  transition: 0.3s ease;
}

/* Arrow Styling */
.projects-link .arrow {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Subtle Attention Animation */
@keyframes arrowPulse {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}

.projects-link .arrow {
  animation: arrowPulse 1.8s ease-in-out infinite;
}

/* Stronger Hover Effect */
.projects-link:hover .arrow {
  transform: translateX(8px);
  animation: none;
}

/* ==============================
   FEATURED PROJECTS RESPONSIVE
============================== */

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   WHY US SECTION
============================== */

.why-us {
  background: var(--dark-800);
  color: var(--text-primary);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--dark-600);
  border: 1px solid var(--dark-border);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: 0.4s ease;
}

.why-card:hover {
  background-color: var(--dark-500);
  transform: translateY(-8px);
  border: 1px solid rgba(202, 162, 74, 0.4);
}

.why-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ==============================
   WHY US RESPONSIVE
============================== */

@media (max-width: 768px) {
  .why-us {
    padding: 70px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   CTA CONTACT (STRUCTURED)
============================== */

.cta-contact {
  padding: 100px 0;
  background: var(--dark-700);
  color: var(--text-primary);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */
.cta-left h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-left p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-benefits {
  list-style: none;
  padding: 0;
}

.cta-benefits li {
  margin-bottom: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Form Card */
/* ==============================
   CTA FORM STRUCTURE FIX
============================== */

.cta-form-card {
  background-color: var(--dark-600);
  border: 1px solid var(--dark-border);
  padding: 40px;
  border-radius: 14px;
  max-width: 500px;
  /* prevent sideways expansion */
  width: 100%;
  margin: 0 auto;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Row for multiple inputs */
.cta-form .form-row {
  display: flex;

  gap: 15px;
}

.form-row .form-group {
  flex: 1;
  /* split equally */
}

.form-group input,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  background-color: var(--dark-800);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

/* Only allow vertical resizing for textarea */
.form-group textarea {
  resize: vertical;
  min-height: 100px;
  /* optional starting height */
  max-height: 300px;
  /* optional limit */
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500);
}

/* ==============================
   CTA RESPONSIVE
============================== */
@media (max-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-form-card {
    max-width: 600px;
  }

  /* Stack inputs sooner for comfort */
  .cta-form .form-row {
    flex-direction: column;
  }
}

/* Small tablets & large phones */
@media (max-width: 768px) {
  .cta-grid {
    gap: 40px;
  }

  .cta-form-card {
    padding: 30px;
  }
}

/* ==============================
   FOOTER - FULL WIDTH
============================== */

.site-footer {
  background: var(--dark-900);
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 40px;
  font-family: "Poppins", sans-serif;
  width: 100%;
  box-sizing: border-box;
}

/* ==============================
   GRID LAYOUT
============================== */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  max-width: var(--container-ultra);
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
}

/* ==============================
   BRANDING
============================== */

.footer-branding .footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-branding p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ==============================
   HEADINGS
============================== */

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ==============================
   LINKS (Base)
============================== */

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact a,
.footer-bottom a {
  text-decoration: none;
  color: var(--text-secondary);
  transition: 0.3s ease;
}

/* ==============================
   CONTACT TEXT
============================== */

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

/* ==============================
   LINK COLORS (Gold System)
============================== */

.footer-links ul li a:hover,
.footer-contact a,
.footer-bottom a {
  color: var(--gold-500);
}

.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--gold-400);
}

/* ==============================
   SOCIAL ICONS
============================== */

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-social .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--text-secondary);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.footer-social .social-icons a:hover {
  background: var(--gold-gradient);
  color: var(--text-primary);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(202, 162, 74, 0.25);
}

/* ==============================
   FOOTER BOTTOM
============================== */

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid var(--dark-border);
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==============================
   RESPONSIVE DESIGN
============================== */

/* -------- Tablet & Small Laptop -------- */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
  }

  .footer-social .social-icons {
    justify-content: flex-start;
  }
}

/* -------- Mobile -------- */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }

  .footer-branding {
    margin-bottom: 20px;
  }
}

/* -------- Small Phones -------- */

@media (max-width: 480px) {
  .footer-grid {
    padding: 0 15px;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

/* ============================= PROJECTS PAGE ============================= */

/* ==============================
   PROJECTS PAGE - COMPACT GRID
============================== */
/* Grid */

.projects-grid-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

/* Image container sizing */
.project-card-page .card-image {
  display: block;
  height: clamp(220px, 30vw, 260px);
}

/* Typography */

.project-card-page h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

/* Description */

.project-highlight {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Metadata */

.project-meta {
  display: grid;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.project-meta span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Project link */

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  transition: 0.3s ease;
}

/* Arrow styling */

.project-link .arrow {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: transform 0.3s ease;
}

/* Arrow animation */

@keyframes arrowPulse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
  100% {
    transform: translateX(0);
  }
}

.project-link .arrow {
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.project-link:hover .arrow {
  animation: none;
  transform: translateX(8px);
}

/* Touch device behavior */

@media (hover: none) {
  .project-card-page:hover {
    transform: none;
    box-shadow: none;
  }

  .project-card-page:active {
    transform: scale(0.98);
  }
}

/* Responsive */

@media (max-width: 768px) {
  .projects-page {
    padding: 70px 0;
  }

  .projects-grid-page {
    gap: 35px;
  }
}

@media (max-width: 480px) {
  .projects-page {
    padding: 60px 0;
  }

  .projects-grid-page {
    gap: 25px;
  }
}

/* ============================= OAK RIDGE ESTATE JUJA PAGE ============================= */
/* =============================
   HERO VIDEO FULLSCREEN (REFINED)
============================= */

.hero-video {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@supports (height: 100svh) {
  .hero-video {
    min-height: calc(100svh - var(--header-height));
  }
}

.hero-video .video-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

/* Improved cover method */
.hero-video .video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-video .hero-text {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--text-primary);
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

/* =============================
   RESPONSIVE TYPOGRAPHY
============================= */

.hero-video h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.hero-video p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin-bottom: 28px;
  color: var(--text-secondary);
}

/* HERO BUTTON REFINEMENT */

.hero-video .btn-primary {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 40px;
}

/* Tablet */
@media (max-width: 768px) {
  .hero-video .btn-primary {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-video .btn-primary {
    padding: 12px 22px;
    font-size: 0.9rem;
    width: auto;
    max-width: 90%;
  }
}

/* =========================================
   PROJECT INTRO + VIDEO SECTION
========================================= */

.project-intro-section {
  padding: 120px 0;
}

.intro-video-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ================= LEFT SIDE ================= */

.project-intro {
  max-width: 600px;
}

.project-intro h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
}

.project-intro p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ================= RIGHT SIDE ================= */

.project-video {
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--dark-600);
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .intro-video-grid {
    gap: 60px;
  }

  .project-intro h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 900px) {
  .intro-video-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .project-intro {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .project-intro-section {
    padding: 90px 0;
  }
}

@media (max-width: 480px) {
  .project-intro-section {
    padding: 70px 0;
  }
}

/* =========================================
   PROJECT FEATURES - DARK PREMIUM
========================================= */

.project-features-dark {
  background-color: var(--dark-800);
}

/* Ensure the inner content stays inside the global container */
.features-container {
  width: 90%;
  max-width: var(--container-standard);
  margin: 0 auto;
}

.features-header {
  text-align: left;
  margin-bottom: 50px;
  /* spacing before the features list */
}

.features-header h2 {
  font-size: 2.4rem;
  font-weight: 500;
}

/* Two-column list with horizontal lines */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 60px;
  /* row-gap 20px, column-gap 60px */
}

.features-list li {
  position: relative;
  padding-left: 35px;
  padding-bottom: 10px;
  /* spacing under each item */
  font-size: 1.08rem;
  border-bottom: 1px solid var(--dark-border);
  color: var(--text-secondary);
  /* subtle line */
}

/* Gold bullet */
.features-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 600;

  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.features-list li strong {
  font-weight: 500;
}

/* Remove border for last item in each column */
.features-list li:nth-last-child(-n + 2) {
  border-bottom: none;
}

/* Responsive */

@media (max-width: 992px) {
  .features-list {
    grid-template-columns: 1fr;
    /* single column on tablet/mobile */
  }

  .features-list li {
    border-bottom: 1px solid var(--dark-border);
    padding-bottom: 18px;
  }

  .features-list li:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .project-features-dark {
    padding: 60px 8%;
    /* reduced from 100px */
  }
}

@media (max-width: 480px) {
  .project-features-dark {
    padding: 50px 6%;
    /* reduced from 80px */
  }
}

/* =========================================
   PROJECT GALLERY SECTION
========================================= */

.project-gallery {
  padding: 100px 0;
  background-color: var(--dark-900);
}

/* Section Title */
.project-gallery h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: var(--text-primary);
}

/* =========================================
   GRID LAYOUT
========================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* =========================================
   GALLERY IMAGES
========================================= */

.gallery-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.gallery-img:focus {
  outline: 2px solid var(--gold-500);
  outline-offset: 4px;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Large Tablets / Small Laptops */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .project-gallery {
    padding: 80px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

/* Large Phones */
@media (max-width: 768px) {
  .gallery-grid {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .project-gallery {
    padding: 70px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* =========================================
   LIGHTBOX
========================================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(11, 11, 12, 0.97);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 95vw;
  max-height: 95vh;
  object-fit: contain;
}

/* Controls */
.close-lightbox,
.prev,
.next {
  position: absolute;
  color: var(--text-primary);
  font-size: 26px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  padding: 10px 14px;
  border-radius: 6px;
  transition: 0.25s ease;
}

.close-lightbox:hover,
.prev:hover,
.next:hover {
  background: var(--dark-600);
}

.close-lightbox {
  top: 30px;
  right: 40px;
}

.prev {
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================
   MOBILE LIGHTBOX IMPROVEMENTS
========================= */

@media (max-width: 768px) {
  /* Hide controls on phone */
  .close-lightbox,
  .prev,
  .next {
    display: none;
  }
}

/* =========================================
   PROJECT CTA - DARK PREMIUM
========================================= */

.project-cta-dark {
  padding: 20px 0 100px 0;
  /* reduced top spacing */
  background: var(--dark-800);
  text-align: center;
}

.cta-content {
  max-width: 750px;
  margin: 0 auto;
}

.project-cta-dark h2 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.project-cta-dark p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .project-cta-dark {
    padding: 80px 0;
  }

  .project-cta-dark h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 576px) {
  .project-cta-dark {
    padding: 70px 0;
  }

  .project-cta-dark h2 {
    font-size: 1.9rem;
  }

  .project-cta-dark p {
    font-size: 0.95rem;
  }
}

/* ==============================
   BLOG LISTING
============================== */

.blog-listing {
  padding: 100px 0;
  background: var(--dark-800);
}

/* FEATURED BLOG */

.blog-featured {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}

.blog-featured .blog-image {
  flex: 1.2;
  height: 400px;
}

.blog-featured .blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10px;
}

.blog-featured .blog-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.blog-featured .blog-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* SECONDARY BLOG GRID */

.blog-secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

/* BLOG IMAGE */

.blog-image {
  position: relative;
  height: 240px;
}

/* BLOG DATE TAG */

.blog-date {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: #000;
  border-radius: 10px;
  z-index: 5;
  white-space: nowrap;
}

/* CLICKABLE IMAGE OVERLAY */

.image-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
}

/* BLOG CONTENT */

.blog-category {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 500;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.blog-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

/* BLOG LINK BUTTON */

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-primary);
}

.blog-link .arrow {
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.blog-link:hover .arrow {
  transform: translateX(6px);
}

/* ==============================
   EDITORIAL ENDING
============================== */

.blog-editorial-end {
  margin-top: 100px;
  padding-top: 60px;
  text-align: center;
  position: relative;
}

.editorial-divider {
  width: 80px;
  height: 2px;
  margin: 0 auto 30px;
  background: var(--gold-gradient);
}

.editorial-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.editorial-subtext {
  max-width: 600px;
  margin: 0 auto 35px;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 992px) {
  .blog-featured {
    flex-direction: column;
  }

  .blog-featured .blog-content {
    padding: 25px;
  }

  .blog-featured .blog-image {
    height: 300px;
  }

  .blog-featured .blog-content h3 {
    font-size: 1.6rem;
  }
}

/* Fold devices unfolded */

@media (min-width: 700px) and (max-width: 900px) {
  .blog-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-featured .blog-image {
    height: 220px;
  }

  .blog-featured .blog-content h3 {
    font-size: 1.4rem;
  }

  .blog-featured .blog-content p {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .blog-listing {
    padding: 70px 0;
  }

  .blog-secondary-grid {
    gap: 25px;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
}

/* ==============================
   BLOG POST HERO
============================== */

.page-hero--post .hero-content {
  max-width: 900px;
}

.post-category {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--gold-500);
}

.post-meta {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ==============================
   BLOG POST SHEET
============================== */

.post-sheet {
  background: var(--dark-600);
  margin-top: -80px;
  padding: 80px 60px;
  border-radius: 24px;
  border: 1px solid var(--dark-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 5;
}

.post-sheet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  border-radius: 10px;
  background: var(--gold-gradient);
}

/* ==============================
   BLOG POST CONTENT
============================== */
.post-content-section {
  background: var(--dark-800);
  padding: 100px 0;
  position: relative;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-content p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.post-content .lead {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 500;
}

.post-content h2 {
  margin: 40px 0 20px;
  font-size: 1.6rem;
}

.post-image-block {
  margin: 40px 0;
  border-radius: 16px;
  overflow: hidden;
}

.post-image-block img {
  width: 100%;
  display: block;
}

blockquote {
  margin: 40px 0;
  padding: 30px;
  background:
    var(--gold-gradient) left/4px 100% no-repeat,
    var(--dark-700);
  font-style: italic;
  color: var(--text-secondary);
  border-radius: 12px;
  border: 1px solid var(--dark-border);
}

.post-author {
  margin-top: 80px;
  padding: 40px;
  background: var(--dark-600);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  text-align: center;
}

/* ============================= CONTACT PAGE ============================= */

/* =========================================
   PREMIUM CONTACT SECTION
========================================= */

.contact-premium {
  background: var(--dark-800);
}

/* ================= MAIN GRID ================= */

.contact-main {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  /* better visual balance */
  gap: 60px;
  align-items: stretch;
}

/* ================= LEFT SIDE ================= */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-header h2 {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.contact-header p {
  color: var(--text-secondary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--dark-600);
  padding: 14px 22px;
  border-radius: 14px;
  border: 1px solid var(--dark-border);
  transition: 0.3s ease;
}

.contact-item:hover {
  position: relative;
  overflow: hidden;
  background: var(--dark-500);
  transform: translateY(-4px);
  border-color: rgba(202, 162, 74, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.contact-icon {
  width: 45px;
  /* reduced size */
  height: 45px;
  /* reduced size */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-700);
  border: 1px solid var(--dark-border);
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: var(--dark-600);
  border: 1px solid rgba(202, 162, 74, 0.6);
  transform: scale(1.05);
}

.contact-icon i {
  font-size: 1rem;
  background: var(--gold-gradient);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;
}

.phone-flip {
  transform: scaleX(-1);
}

.contact-item h4 {
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-item a,
.contact-item span {
  text-decoration: none;
}

/* ================= RIGHT SIDE (FORM) ================= */

.contact-form-wrapper {
  background: var(--dark-600);
  border: 1px solid var(--dark-border);
  padding: 30px;
  border-radius: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 22px;
  border-radius: 14px;
  background: var(--dark-800);
  border: 1px solid var(--dark-border);
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ================= MAP ================= */

.contact-map {
  margin-top: 100px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  border: 1px solid var(--dark-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 1024px) {
  .contact-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-info,
  .contact-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    height: 100%;
  }
}

.contact-details {
  width: 100%;
  max-width: 500px;
}

.contact-item {
  text-align: left;
  /* keeps content aligned properly inside */
}

.contact-form-wrapper {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.contact-map {
  margin-top: 80px;
}

@media (max-width: 768px) {
  .contact-premium {
    padding: 90px 0 70px;
  }

  .contact-form-wrapper {
    padding: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .contact-premium {
    padding: 70px 0 60px;
  }

  .contact-details {
    gap: 18px;
  }

  .contact-item {
    padding: 12px 16px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .contact-map iframe {
    height: 280px;
    border-radius: 14px;
  }
}
