/* ==========================================================================
   HOME INTEND — ARCHITECTURAL BLUEPRINT MEETS WARM HOME
   Official Design System & Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600&family=Poppins:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Brand Color Palette */
  --ink-navy: #152229;
  --ink-navy-dark: #0e171c;
  --ink-navy-card: #1c2c35;
  --ink-navy-hover: #223742;

  --brass-gold: #C79A54;
  --brass-gold-light: #dfb576;
  --brass-gold-dark: #a87d3b;
  --brass-glow: rgba(199, 154, 84, 0.28);

  --muted-clay: #A2694B;
  --muted-clay-light: #bd7f5f;

  --warm-offwhite: #F2ECDE;
  --warm-offwhite-alt: #eae3d2;
  --warm-offwhite-border: #dcd3be;
  
  --text-dark: #2a1d16;
  --text-light: #F2ECDE;
  --text-muted-dark: #786c63;
  --text-muted-light: #a4b3bc;

  --blueprint-line: rgba(199, 154, 84, 0.35);
  --blueprint-grid: rgba(199, 154, 84, 0.08);

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Elevation */
  --shadow-navy: 0 14px 35px rgba(10, 18, 23, 0.45);
  --shadow-light: 0 10px 30px rgba(70, 50, 35, 0.08);
  --shadow-gold: 0 0 25px rgba(199, 154, 84, 0.22);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--ink-navy);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--brass-gold);
  color: var(--ink-navy);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--ink-navy);
}
::-webkit-scrollbar-thumb {
  background: var(--brass-gold-dark);
  border-radius: 4px;
}

/* Container */
.container {
  width: min(92%, 1240px);
  margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-gold);
  opacity: 0.85;
}

/* Blueprint Grid Background Utility */
.blueprint-grid-bg {
  background-image: 
    linear-gradient(var(--blueprint-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint-grid) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Blueprint Paper Texture Utility */
.blueprint-paper-bg {
  background-color: var(--warm-offwhite);
  color: var(--text-dark);
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(199, 154, 84, 0.08) 0%, transparent 35%),
    linear-gradient(rgba(199, 154, 84, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 154, 84, 0.05) 1px, transparent 1px);
  background-size: 100% 100%, 28px 28px, 28px 28px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.btn-brass {
  background: linear-gradient(135deg, var(--brass-gold) 0%, var(--brass-gold-dark) 100%);
  color: #12191d;
  font-weight: 700;
  box-shadow: 0 6px 20px var(--brass-glow);
  border-color: var(--brass-gold-light);
}

.btn-brass:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(199, 154, 84, 0.4);
  filter: brightness(1.08);
}

.btn-outline-brass {
  background: transparent;
  color: var(--brass-gold);
  border: 1px solid var(--brass-gold);
}

.btn-outline-brass:hover {
  background: rgba(199, 154, 84, 0.12);
  color: var(--brass-gold-light);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink-navy);
  color: var(--warm-offwhite);
  border: 1px solid var(--brass-gold);
}

.btn-dark:hover {
  background: var(--ink-navy-card);
  color: var(--brass-gold);
  transform: translateY(-2px);
}

/* Section Common */
.section {
  padding: 85px 0;
  position: relative;
}

.section-head {
  margin-bottom: 3.5rem;
}

.section-head.center {
  text-align: center;
}

.section-head .sub-tag {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-gold);
  display: block;
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 600;
}

.section-head p {
  max-width: 680px;
  margin-top: 0.65rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ==========================================================================
   HEADER SECTION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(21, 34, 41, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(199, 154, 84, 0.2);
  padding: 0.9rem 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Custom Logo Styled as Provided */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.logo-symbol {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--warm-offwhite);
  line-height: 1;
}

.logo-main span {
  color: var(--brass-gold);
}

.logo-tagline {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--brass-gold);
  font-style: italic;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--brass-gold);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--brass-gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brass-gold);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION (SPLIT BLUEPRINT & WARM 3D INTERIOR)
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem 0;
  overflow: hidden;
  background: var(--ink-navy);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 3rem;
  align-items: center;
}

/* Left Blueprint Blueprint Pane */
.hero-blueprint-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-right: 1rem;
}

.blueprint-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px dashed var(--blueprint-line);
  padding-bottom: 0.6rem;
  margin-bottom: 0.2rem;
}

.hero-title {
  font-size: clamp(2.8rem, 4.2vw, 4.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--warm-offwhite);
}

.hero-title span {
  color: var(--brass-gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  max-width: 480px;
}

.hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.hero-highlights-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.65rem;
  border-top: 1px dashed var(--blueprint-line);
}

.highlight-box {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.highlight-box i {
  color: var(--brass-gold);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.highlight-box span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--warm-offwhite);
  line-height: 1.35;
}

/* Right Interactive Blueprint-to-Warm Render Showcase */
.hero-visual-right {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--brass-gold);
  box-shadow: var(--shadow-navy), var(--shadow-gold);
  background: var(--ink-navy-dark);
}

.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-blueprint-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(21, 34, 41, 0.88);
  border: 1px solid var(--brass-gold);
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--brass-gold);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.hero-interactive-hint {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(21, 34, 41, 0.88);
  border: 1px solid rgba(199, 154, 84, 0.4);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--warm-offwhite);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  z-index: 5;
}

/* ==========================================================================
   TRUST STRIP SECTION (WARM OFF-WHITE)
   ========================================================================== */

.trust-strip {
  background-color: var(--warm-offwhite);
  color: var(--text-dark);
  padding: 2.8rem 0;
  border-top: 1px solid var(--warm-offwhite-border);
  border-bottom: 1px solid var(--warm-offwhite-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--warm-offwhite-border);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(199, 154, 84, 0.15);
  border: 1px solid var(--brass-gold);
  color: var(--brass-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.trust-item h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.trust-item p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SERVICES SECTION ("SPACES WE DESIGN")
   ========================================================================== */

.services-section {
  background-color: var(--ink-navy);
  color: var(--text-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--ink-navy-card);
  border: 1px solid rgba(199, 154, 84, 0.25);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--brass-gold);
  box-shadow: var(--shadow-navy), var(--shadow-gold);
}

.service-media {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #0e171c;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-blueprint-overlay {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--brass-gold);
  background: rgba(21, 34, 41, 0.85);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--blueprint-line);
}

.service-body {
  padding: 1.15rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(199, 154, 84, 0.15);
}

.service-body h3 {
  font-size: 1.15rem;
  color: var(--warm-offwhite);
}

.service-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--brass-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-gold);
  font-size: 0.75rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-arrow {
  background: var(--brass-gold);
  color: var(--ink-navy);
}

/* ==========================================================================
   DESIGN JOURNEY SECTION (WARM OFF-WHITE TIMELINE)
   ========================================================================== */

.journey-section {
  background-color: var(--warm-offwhite);
  color: var(--text-dark);
  border-top: 1px solid var(--warm-offwhite-border);
  border-bottom: 1px solid var(--warm-offwhite-border);
  position: relative;
}

.timeline-compass-watermark {
  position: absolute;
  top: 3.5rem;
  right: 5%;
  width: 110px;
  height: 110px;
  opacity: 0.25;
  pointer-events: none;
}

.journey-timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 2rem;
}

/* Connecting Line */
.journey-timeline-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: dashed var(--brass-gold-dark);
  border-top: 1.5px dashed var(--brass-gold);
  z-index: 0;
}

.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--warm-offwhite);
  border: 1.5px solid var(--brass-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass-gold-dark);
  font-size: 1.5rem;
  box-shadow: var(--shadow-light);
  margin-bottom: 1rem;
  position: relative;
}

.step-num-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--brass-gold-dark);
  color: var(--warm-offwhite);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-step h3 {
  font-size: 1.35rem;
  color: var(--text-dark);
  margin-bottom: 0.45rem;
}

.journey-step p {
  font-size: 0.86rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
  max-width: 220px;
}

/* ==========================================================================
   PORTFOLIO SECTION ("EXPLORE OUR WORK")
   ========================================================================== */

.portfolio-section {
  background-color: var(--ink-navy);
  color: var(--text-light);
}

.portfolio-tiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.portfolio-tile {
  position: relative;
  height: 340px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 84, 0.25);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.portfolio-tile:hover {
  transform: translateY(-6px);
  border-color: var(--brass-gold);
  box-shadow: var(--shadow-navy), var(--shadow-gold);
}

.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-tile:hover img {
  transform: scale(1.08);
}

.portfolio-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 23, 28, 0.92) 0%, rgba(14, 23, 28, 0.2) 60%, transparent 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-tile-overlay h3 {
  font-size: 1.25rem;
  color: var(--warm-offwhite);
}

.portfolio-tile-overlay span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--brass-gold);
}

/* ==========================================================================
   WHY CHOOSE HOME INTEND (WARM OFF-WHITE)
   ========================================================================== */

.why-section {
  background-color: var(--warm-offwhite);
  color: var(--text-dark);
  border-top: 1px solid var(--warm-offwhite-border);
  border-bottom: 1px solid var(--warm-offwhite-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--warm-offwhite-border);
  border-radius: 14px;
  padding: 2rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-fast);
}

.benefit-card:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-light);
  border-color: var(--brass-gold);
}

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(199, 154, 84, 0.12);
  border: 1px solid var(--brass-gold);
  color: var(--brass-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.28rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS SECTION (WARM NAVY)
   ========================================================================== */

.testimonials-section {
  background-color: var(--ink-navy);
  color: var(--text-light);
}

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

.testimonial-card {
  background: var(--ink-navy-card);
  border: 1px solid rgba(199, 154, 84, 0.25);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-navy);
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--brass-gold);
  line-height: 0.8;
  opacity: 0.4;
  margin-bottom: 0.8rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--warm-offwhite);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px dashed rgba(199, 154, 84, 0.2);
  padding-top: 0.85rem;
}

.testimonial-author strong {
  font-size: 0.95rem;
  color: var(--brass-gold);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

/* ==========================================================================
   FAQ SECTION (WARM OFF-WHITE WITH CENTRAL ELEVATION SKETCH)
   ========================================================================== */

.faq-section {
  background-color: var(--warm-offwhite);
  color: var(--text-dark);
  border-top: 1px solid var(--warm-offwhite-border);
  border-bottom: 1px solid var(--warm-offwhite-border);
}

.faq-layout-grid {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  gap: 2rem;
  align-items: center;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-sketch-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.faq-sketch-center svg {
  width: 100%;
  max-width: 180px;
  opacity: 0.85;
}

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--warm-offwhite-border);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item[open] {
  background: #ffffff;
  border-color: var(--brass-gold);
  box-shadow: var(--shadow-light);
}

.faq-question {
  padding: 1.1rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.1rem;
  color: var(--brass-gold-dark);
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.25rem 1.1rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER SECTION (DARK NAVY)
   ========================================================================== */

.site-footer {
  background-color: var(--ink-navy-dark);
  color: var(--text-light);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(199, 154, 84, 0.2);
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.45fr) minmax(360px, 1.25fr) minmax(150px, 0.65fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding-bottom: 3.25rem;
  border-bottom: 1px solid rgba(199, 154, 84, 0.15);
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  max-width: 390px;
  line-height: 1.7;
}

.footer-social-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.social-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink-navy-card);
  border: 1px solid rgba(199, 154, 84, 0.3);
  color: var(--brass-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-circle:hover {
  background: var(--brass-gold);
  color: var(--ink-navy);
}

.footer-main-grid > .footer-col:last-child {
  justify-self: end;
  min-width: 150px;
}

.footer-col h4 {
  font-size: 1.15rem;
  color: var(--warm-offwhite);
  margin-bottom: 1.15rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: var(--brass-gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  color: var(--text-muted-light);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brass-gold);
}

.footer-contact-list li {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.62;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}

.footer-contact-list li > i {
  color: var(--brass-gold);
  flex: 0 0 24px;
  width: 24px;
  min-width: 24px;
  margin-top: 4px;
  text-align: center;
}

.footer-contact-list li > span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.footer-contact-list li > span a {
  color: var(--text-muted-light);
  text-decoration: none;
}

.footer-contact-list li > span a:hover {
  color: var(--brass-gold);
}
.footer-bottom-row {
  padding-top: 1.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

/* ==========================================================================
   MODALS & FLOATING WIDGETS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 23, 28, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--ink-navy);
  border: 1px solid var(--brass-gold);
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.2rem;
  box-shadow: var(--shadow-navy), var(--shadow-gold);
  position: relative;
  transform: scale(0.96);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted-light);
  font-size: 1.4rem;
  cursor: pointer;
}

.modal-close-btn:hover {
  color: var(--brass-gold);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--warm-offwhite);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: var(--ink-navy-card);
  border: 1px solid rgba(199, 154, 84, 0.3);
  border-radius: 8px;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--brass-gold);
  box-shadow: 0 0 10px var(--brass-glow);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

@media (max-width: 1100px) {
  .footer-main-grid {
    grid-template-columns: 1.25fr 1.15fr 0.7fr;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .portfolio-tiles-grid, .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .journey-timeline-grid::before {
    display: none;
  }
  .faq-layout-grid {
    grid-template-columns: 1fr;
  }
  .faq-sketch-center {
    display: none;
  }
  .footer-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .trust-item:not(:last-child)::after {
    display: none;
  }
  .services-grid, .portfolio-tiles-grid, .benefits-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .journey-timeline-grid {
    grid-template-columns: 1fr;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== 
   ORIGINAL HOME INTEND HI LOGO — SOURCE ARTWORK UNCHANGED
   The uploaded logo image is displayed exactly as supplied. Only its frame,
   sizing and surrounding page colours are styled so the mark stands out.
   ========================================================================== */
.original-logo-frame {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(199, 154, 84, 0.72);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 0 0 3px rgba(199, 154, 84, 0.07);
}

.original-hi-logo {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .original-logo-frame {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }
  .original-hi-logo {
    width: 100%;
    height: 100%;
  }
}


/* Footer polish after removal of the secondary logo stamp */
@media (max-width: 768px) {
  .site-footer {
    padding-top: 3.5rem;
  }
  .footer-main-grid {
    gap: 2.25rem;
    padding-bottom: 2.5rem;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-main-grid > .footer-col:last-child {
    justify-self: start;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
}

/* Fix Contact Us address alignment */
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list li > i {
  flex: 0 0 24px;
  width: 24px;
  margin-top: 4px;
}

.footer-contact-list li > span {
  flex: 1;
  min-width: 0;
}

.footer-contact-list li > span a {
  white-space: nowrap;
}
