/* =========================
   NAVBAR
========================= */

.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  backdrop-filter: blur(16px);

  background:
    rgba(13, 13, 13, 0.4);

  border-bottom:
    1px solid var(--color-border);
}

.navbar {
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-links a.active,
.mobile-links a.active {
    color: var(--color-accent);
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo img{
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text{
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;       /* Dev */
    letter-spacing: 1px;
}

.logo-text span{
    color: var(--color-accent);   /* Interio */
}

.logo:hover{
    opacity: 0.9;
}
.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  position: relative;

  font-size: var(--fs-xs);

  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: var(--color-muted);

  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';

  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0%;
  height: 1px;

  background: var(--color-accent);

  transition: var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}
/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;

  position: relative;

  width: 40px;
  height: 40px;

  background: transparent;

  border: none;

  cursor: pointer;

  z-index: 10000;
}

.menu-toggle span {
  display: block;

  width: 100%;
  height: 1.5px;

  background: var(--color-text);

  margin: 5px 0;

  transition: var(--transition-fast);
}
/* TOGGLE ACTIVE */

.menu-toggle.active span:first-child {
  transform:
    rotate(45deg)
    translateY(5px);
}

.menu-toggle.active span:last-child {
  transform:
    rotate(-45deg)
    translateY(-5px);
}
.mobile-menu {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background:
    rgba(5,5,5,0.98);

  backdrop-filter: blur(20px);

  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 1.4rem;
}

.mobile-links a {
  position: relative;

  font-family: var(--font-heading);

  font-size: clamp(1.6rem, 6vw, 2.4rem);

  font-weight: 400;

  color: var(--color-text);

  transition: var(--transition-fast);
}

.mobile-links a:hover {
  color: var(--color-accent);
}

/* =========================
   MOBILE NAV DROPDOWN — PROJECTS
========================= */

.mobile-nav-item-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 400;
  color: var(--color-text);
  transition: var(--transition-fast);
}

.mobile-dropdown-trigger:hover {
  color: var(--color-accent);
}

.mobile-dropdown-trigger .nav-caret {
  width: 14px;
  height: 14px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-item-dropdown.open .mobile-dropdown-trigger .nav-caret {
  transform: rotate(225deg);
}

.mobile-dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;

  max-height: 0;
  overflow: hidden;
  opacity: 0;

  transition:
    max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
}

.mobile-nav-item-dropdown.open .mobile-dropdown-menu {
  max-height: 220px;
  opacity: 1;
}

.mobile-dropdown-menu a {
  font-size: clamp(1rem, 4vw, 1.3rem);
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.mobile-dropdown-menu a:hover {
  color: var(--color-accent);
}
/* =========================
   HERO
========================= */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top right,
      rgba(198, 161, 110, 0.12),
      transparent 30%
    ),
    var(--color-bg);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: var(--space-2xl);
}

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-label {
  display: inline-block;

  margin-bottom: var(--space-md);

  color: var(--color-accent);

  letter-spacing: 0.18em;
  text-transform: uppercase;

  font-size: var(--fs-xs);
}

.hero-title {
  font-family: var(--font-heading);

  font-size: var(--fs-hero);
  line-height: 0.95;

  font-weight: 500;

  max-width: 10ch;
}

.hero-title span {
  color: var(--color-accent);

  font-style: italic;
}

.hero-description {
  margin-top: var(--space-lg);

  max-width: 55ch;

  color: var(--color-muted);

  line-height: 1.8;

  font-size: var(--fs-md);
}

.hero-actions {
  margin-top: var(--space-xl);

  display: flex;
  gap: 1.5rem;

  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;   /* was relying on a fixed 720px height */
}

.hero-image {
  width: 100%;
  height: 100%;          /* was: height: 720px; */
  object-fit: cover;
}

.hero-image-wrapper::after {
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.4),
      transparent
    );
}
/* =========================
   PROJECTS
========================= */

.projects {
  position: relative;
}

.section-heading {
  max-width: 700px;

  margin-bottom: 6rem;
}

.section-label {
  display: inline-block;

  margin-top: 4rem;
  margin-bottom: 2rem;

  color: var(--color-accent);

  letter-spacing: 0.22em;
  text-transform: uppercase;

  font-size: 0.95rem;

  font-weight: 500;
}
.section-label::before {
  content: '';

  display: inline-block;

  width: 50px;
  height: 1px;

  background: var(--color-accent);

  margin-right: 14px;

  vertical-align: middle;
}

.section-title {
  font-family: var(--font-heading);

  font-size: clamp(3rem, 6vw, 6rem);

  line-height: 1;

  font-weight: 500;
}

.projects-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 2rem;
}

.project-card {
  position: relative;

  border-radius: var(--radius-lg);

  background: #111;

  cursor: pointer;
  border:
  1px solid rgba(255,255,255,0.04);
}

.project-image-wrapper {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.project-image {
  width: 100%;
  height: 100%;          /* was: height: 560px; */
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image {
  transform: scale(1.04);
}

.project-content {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 100%;

  padding: 3rem;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.92),
      rgba(0,0,0,0.35),
      transparent
    );
}

.project-category {
  display: inline-block;

  margin-bottom: 0.6rem;

  color: var(--color-accent);

  letter-spacing: 0.12em;
  text-transform: uppercase;

  font-size: 0.75rem;
}

.project-name {
  font-family: var(--font-heading);

  font-size: clamp(2.8rem, 4vw, 4.5rem);

  line-height: 0.95;

  font-weight: 500;

  max-width: 8ch;
}
/* =========================
   EDITORIAL SECTION
========================= */
.editorial {
  padding-top: 10rem;
}
.editorial-grid {
  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 6rem;

  align-items: center;
}

.editorial-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 520px;        /* fixed, screen-width independent */
  max-width: 560px;     /* keeps it from going edge-to-edge on wide screens */
}

.editorial-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-content {
  max-width: 540px;
  padding-right:4rem ;
}

.editorial-title {
  margin-top: 1.5rem;

  font-family: var(--font-heading);

  font-size: clamp(3rem, 5vw, 5.5rem);

  line-height: 0.95;

  font-weight: 500;
}

.editorial-description {
  margin-top: 2rem;

  color: var(--color-muted);

  line-height: 1.9;

  font-size: 1.05rem;

  max-width: 48ch;
}

.editorial-link {
  display: inline-block;

  margin-top: 3rem;

  color: var(--color-accent);

  letter-spacing: 0.14em;
  text-transform: uppercase;

  font-size: 0.85rem;

  position: relative;
}

.editorial-link::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -10px;

  width: 100%;
  height: 1px;

  background: var(--color-accent);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.5s ease;
}

.editorial-link:hover::after {
  transform: scaleX(1);
}
/* ── Before / After section ── */
.before-after {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Two-column layout */
.ba-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* ── LEFT column ── */
.ba-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ba-title {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem) !important;
  line-height: 1.2 !important;
}

.ba-description {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-top: 1.4rem;
  max-width: 450px;
  font-weight: 300;
}

/* ── RIGHT column ── */
.ba-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ── Selector pills — above slider ── */
.ba-selector {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.ba-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.ba-thumb img,
.ba-thumb .ba-thumb-img,
.ba-thumb .ba-thumb-num { display: none; }

.ba-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(198,161,110,0.5);
  color: rgba(255,255,255,0.8);
}

.ba-thumb.active {
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  background: rgba(198,161,110,0.08);
}

/* hide pair label if it still exists in HTML */
.ba-pair-label { display: none; }

/* ── Slider wrapper ── */
.ba-slider-wrap {
  position: relative;
  width: 100%;
}

.ba-edge-label {
  position: absolute;
  top: 14px;
  z-index: 8;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
}

.ba-edge-before { left: 14px; }
.ba-edge-after  { right: 14px; }

/* ── Main slider ── */
.comparison-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 220px);
  min-height: 420px;
  max-height: 680px;
  overflow: hidden;
  border-radius: 16px;
  cursor: ew-resize;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  display: block;
}

.before-layer {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slider-line {
  position: absolute;
  top: 0; left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.75);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-button {
  position: absolute;
  top: 50%; left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.slider-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  -webkit-appearance: none;
}

/* ── Studio slider (matches .comparison-slider card sizing) ── */
.studio-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: 80vh;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-soft);
}

.studio-slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.studio-slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
}

.studio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.studio-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.studio-nav-btn:hover {
  background: var(--color-accent);
  color: #000;
}

.studio-nav-prev { left: 16px; }
.studio-nav-next { right: 16px; }

.studio-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (max-width: 900px) {
  .studio-slider-wrap {
    height: 320px;
    min-height: 320px;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .before-after {
    min-height: auto;
  }
  .ba-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ba-title {
    font-size: 1.8rem !important;
  }
  .comparison-slider {
    height: 320px;
    min-height: 320px;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ba-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ba-title {
    font-size: 1.8rem !important;
  }

  .comparison-slider {
    height: 300px;
  }
}
/* =========================
   FOUNDER SECTION
========================= */

.founder {
  position: relative;
}

.founder-grid {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  gap: 8rem;

  align-items: center;
}

.founder-content {
  max-width: 560px;
}

.founder-title {
  margin-top: 1.5rem;

  font-family: var(--font-heading);

  font-size: clamp(3rem, 5vw, 5.5rem);

  line-height: 0.95;

  font-weight: 500;
}

.founder-description {
  margin-top: 2rem;

  color: var(--color-muted);

  line-height: 1.9;

  font-size: 1.05rem;

  max-width: 50ch;
}

.founder-signature {
  margin-top: 3rem;

  color: var(--color-accent);

  font-family: var(--font-heading);

  font-size: 1.4rem;

  font-style: italic;
}

.founder-image-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;   /* was: a flat 850px height */
}

.founder-image {
  width: 100%;
  height: 100%;          /* was: height: 850px; */
  object-fit: cover;
}
/* BADGE */

.hero-badge {
  position: absolute;

  bottom: -40px;
  left: -40px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    rgba(17,17,17,0.95);

  border:
    1px solid rgba(198,161,110,0.2);

  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: var(--space-md);
}

.badge-number {
  font-family: var(--font-heading);

  font-size: 4rem;

  color: var(--color-accent);
}

.badge-text {
  margin-top: var(--space-sm);

  color: var(--color-muted);

  font-size: var(--fs-xs);

  letter-spacing: 0.08em;
  text-transform: uppercase;

  line-height: 1.5;
}

/* REVEAL PANELS */

.hero-panel {
  position: absolute;

  top: 0;

  width: 50%;
  height: 100%;

  background: #050505;

  z-index: 20;

  animation-duration: 1.8s;
  animation-fill-mode: forwards;

  animation-timing-function:
    cubic-bezier(0.76, 0, 0.24, 1);
}

.left-panel {
  left: 0;

  animation-name: slideLeft;
}

.right-panel {
  right: 0;

  animation-name: slideRight;
}

/* BADGE */

.hero-badge {
  position: absolute;

  bottom: -40px;
  left: -40px;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background:
    rgba(17,17,17,0.95);

  border:
    1px solid rgba(198,161,110,0.2);

  backdrop-filter: blur(12px);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: var(--space-md);
}

.badge-number {
  font-family: var(--font-heading);

  font-size: 4rem;

  color: var(--color-accent);
}

.badge-text {
  margin-top: var(--space-sm);

  color: var(--color-muted);

  font-size: var(--fs-xs);

  letter-spacing: 0.08em;
  text-transform: uppercase;

  line-height: 1.5;
}

/* REVEAL PANELS */

.hero-panel {
  position: absolute;

  top: 0;

  width: 50%;
  height: 100%;

  background: #050505;

  z-index: 20;

  animation-duration: 1.8s;
  animation-fill-mode: forwards;

  animation-timing-function:
    cubic-bezier(0.76, 0, 0.24, 1);
}

.left-panel {
  left: 0;

  animation-name: slideLeft;
}

.right-panel {
  right: 0;

  animation-name: slideRight;
}
/* =========================
   CONTACT SECTION
========================= */
.contact {
  position: relative;
  padding-bottom: 6rem;

  scroll-margin-top: 120px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 4rem;
    align-items: center;   /* ← change from whatever it is to center */
}
.contact-content {
  max-width: 620px;


  justify-content: center;
}

.contact-title {
  margin-top: 0;

  font-family: var(--font-heading);

  font-size: clamp(3rem, 5vw, 5.8rem);

  line-height: 0.95;

  font-weight: 500;

  max-width: 10ch;
}
.contact-description {
  margin-top: 1.8rem;

  color: var(--color-muted);

  line-height: 1.8;

  font-size: 1.05rem;

  max-width: 42ch;
}

.contact-details {
  margin-top: 2.5rem;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 2rem;
}

.contact-heading {
  display: block;

  margin-bottom: 0.6rem;

  color: var(--color-accent);

  text-transform: uppercase;

  letter-spacing: 0.12em;

  font-size: 0.8rem;
}

.contact-item a,
.contact-item p {
  color: var(--color-text);

  font-size: 1rem;

  opacity: 0.9;
}

/* FORM */

.contact-form-wrapper {
  padding: 3rem;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: var(--radius-lg);

  background: rgba(255,255,255,0.015);

  backdrop-filter: blur(10px);

  max-width: 680px;

  margin-left: auto;
}

.contact-form {
  display: flex;
  flex-direction: column;

  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 1.3rem 1.5rem;

  background: transparent;

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 16px;

  color: var(--color-text);

  font-size: 1rem;

  font-family: inherit;

  transition: var(--transition-fast);
}

.form-group textarea {
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;

  border-color: var(--color-accent);

  background: rgba(255,255,255,0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.35);
}
/* ESTIMATE MODAL */

.estimate-modal {

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.75);

    backdrop-filter: blur(10px);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

.estimate-modal.active {

    display: flex;
}

.estimate-box {

    width: 90%;
    max-width: 650px;

    background: var(--color-surface);

    padding: 40px;

    border-radius: 30px;

    position: relative;
}

.close-estimate {

    position: absolute;

    top: 15px;
    right: 20px;

    background: none;

    border: none;

    color: white;

    font-size: 2rem;

    cursor: pointer;
}

.estimate-form {

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 30px;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {

    width: 100%;

    padding: 18px 24px;

    border-radius: 20px;

    border: 1px solid var(--color-border);

    background: var(--color-bg);

    color: var(--color-text);

    font-size: 1rem;

    font-family: var(--font-body);

    resize: vertical;

    transition: var(--transition-fast);
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {

    outline: none;

    border-color: var(--color-accent);

    box-shadow: 0 0 0 3px rgba(198, 161, 110, 0.15);
}

.estimate-result {

    margin-top: 30px;

    font-size: 2rem;

    color: var(--color-accent);

    font-weight: 600;
}
.estimate-logo{
    width: 80px;
    display: block;
    margin: 0 auto 20px;
}
/* =========================
   ESTIMATE MODAL
========================= */

.estimate-modal {

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.75);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 9999;

    padding: 20px;
}


.estimate-modal.active {

    display: flex;
}


.estimate-box {

    width: 100%;
    max-width: 600px;

    background: var(--color-surface);

    border-radius: 24px;

    padding: 40px;

    position: relative;

    box-shadow: var(--shadow-soft);
}


.close-estimate {

    position: absolute;

    top: 15px;
    right: 20px;

    background: none;
    border: none;

    color: white;

    font-size: 32px;

    cursor: pointer;
}
/* ESTIMATE RESULT */

.estimate-summary{
    margin-top: 30px;
}

.estimate-package,
.estimate-area{
    color: var(--color-muted);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.estimate-summary h3{
    color: var(--color-accent);
    margin: 20px 0 10px;
    font-size: 1.6rem;
}

.estimate-price{
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.estimate-summary small{
    color: var(--color-muted);
    line-height: 1.6;
}
.estimate-box{
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}
.estimate-success{
    text-align: center;
    padding: 30px 20px;
    color: white;
}

.estimate-success h3{
    color: var(--color-accent);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.estimate-success p{
    color: var(--color-muted);
    line-height: 1.6;
}
.estimate-success{
    text-align:center;
    padding:60px 20px;
}

.success-icon{
    width:80px;
    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(198,161,110,0.15);

    color:var(--color-accent);

    font-size:42px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.estimate-success h3{
    color:var(--color-accent);

    font-size:2rem;

    margin-bottom:15px;
}

.estimate-success p{
    color:var(--color-muted);

    font-size:1rem;
}/* =========================
   YOUTUBE SECTION
========================= */

.youtube-section {
    background: var(--color-bg);
    padding: 80px 0;
}

.youtube-section .section-heading {
    margin-bottom: 12px;
}

.youtube-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;  /* increase from 40px */
    gap: 40px;
}

.youtube-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    max-width: 600px;
    margin: 0;
}

.youtube-subscribe-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.youtube-subscribe-btn:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
}

.youtube-subscribe-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.youtube-card {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition-fast);
    max-width: none;
    margin: 0;
}

.youtube-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    border-color: rgba(var(--color-accent-rgb), 0.3);
}

/* Card top bar mimicking YouTube UI */
.youtube-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    gap: 10px;
}

.youtube-card-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.youtube-card-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--color-accent);
}

.youtube-card-channel-title {
    font-size: 0.8rem;
    color: var(--color-text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.youtube-card-menu {
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

/* 16:9 landscape iframe */
.youtube-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: none;
    border: none;
    display: block;
}

.youtube-link {
    display: block;
    padding: 16px 20px;
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.youtube-link:hover {
    letter-spacing: 1px;
    background: rgba(255,255,255,0.03);
}

/* Dot indicators */
.youtube-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.youtube-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}

.youtube-dot.active {
    background: var(--color-accent);
}

@media (max-width: 1024px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .youtube-section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;   /* enough gap before cards */
        gap: 24px;
    }

    .youtube-subscribe-btn {
        margin-bottom: 8px;   /* extra buffer below button before grid starts */
    }
}
/* =========================
   BLOG PAGE — paste into sections.css
   (replace the existing blog section)
========================= */

/* ── Hero ── */
.blog-hero {
    padding-top: 110px;        /* navbar is ~90px, so 110px clears it snugly */
    padding-bottom: 40px;
    text-align: left;
}

/* Override the global section-label margin-top inside blog-hero only */
.blog-hero .section-label {
    margin-top: 0;
}

.blog-hero .hero-description {
    max-width: 52ch;
    margin-top: 1.4rem;
    color: var(--color-muted);
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: left;          /* stop the centered-wrap issue */
}

/* ── Grid ── */
.blog-grid-section {
    padding-bottom: 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 0;             /* section-spacing already adds top space */
}

/* ── Card — overlay style ── */
.blog-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease;
    aspect-ratio: 4 / 3;      /* keep cards a consistent height */
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

/* The image fills the whole card */
.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover img {
    transform: scale(1.05);
}

/* Dark gradient overlay at bottom */
.blog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.35) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Text sits on top of the gradient */
.blog-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 26px;
    z-index: 2;
}

.blog-category {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 500;
}

.blog-card-body h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
    margin-bottom: 14px;
}

.blog-card-body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    transition: gap 0.25s ease;
}

.blog-card-body a:hover {
    gap: 10px;
}

/* Placeholder / coming-soon card */
.blog-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    z-index: 2;
}

.blog-card-placeholder::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(198, 161, 110, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .blog-hero {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-card {
        aspect-ratio: 3 / 2;
    }
}
/* =========================
   FOOTER
========================= */

.footer {
    background: #1a1a1a;
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 60px;
}

/* Headings */
.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Col 1 — contact */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}
.footer-contact-item a:hover {
    color: var(--color-accent);
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
    color: var(--color-accent);
    opacity: 0.55;
}

/* Embedded map */
.footer-map {
    margin: 10px 0 20px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    filter: grayscale(0.25) contrast(1.05);
    transition: filter 0.3s ease;
}

.footer-map:hover {
    filter: grayscale(0) contrast(1);
}

.footer-map iframe {
    display: block;
    width: 100%;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-social-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #1a1a1a;
}
.footer-social-btn i {
    font-size: 0.85rem;
}
/* Col 2 — links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s, gap 0.2s;
}

.footer-links li a::before {
    content: "›";
    color: var(--color-accent);
    font-size: 1.1rem;
    line-height: 1;
}

.footer-links li a:hover {
    color: var(--color-accent);
    gap: 12px;
}

/* Col 3 — locations */
.footer-locations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-locations li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-locations li::before {
    content: "📍";
    font-size: 0.85rem;
}

/* Col 4 — newsletter */
.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-email-input {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 14px 16px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer-email-input:focus {
    border-color: var(--color-accent);
}

.footer-submit-btn {
    background: var(--color-accent);
    color: #1a1a1a;
    border: none;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    width: 100%;
}

.footer-submit-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

.footer-dev-link {
    color: var(--color-accent);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border: 1px solid rgba(212,175,122,0.3);
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    transition: all 0.25s ease;
    vertical-align: middle;
}

.footer-dev-link:hover {
    background: rgba(212,175,122,0.1);
    border-color: var(--color-accent);
    text-decoration: none;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer {
        padding: 60px 0 0;
    }
}
/* =========================
   TESTIMONIALS SECTION
========================= */

.testimonials {
    position: relative;
}

.testimonials-scroll-wrap {
    position: relative;
}

.testimonials-scroll {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 1.5rem;

    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255,255,255,0.05);
}

.testimonials-scroll::-webkit-scrollbar { height: 5px; }
.testimonials-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}
.testimonials-scroll::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}

/* ── Card ── */
.testimonial-card {
    flex: 0 0 360px;
    scroll-snap-align: start;

    display: flex;
    flex-direction: column;

    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;

    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(198,161,110,0.25);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 0.95rem;
    display: inline-flex;
    gap: 4px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.testimonial-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.9rem;
    flex-shrink: 0;
}

/* Fixed-height preview — always 3 lines, no expand */
.testimonial-preview {
    color: var(--color-muted);
    line-height: 1.75;
    font-size: 0.92rem;
    flex-grow: 1;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More button */
.testimonial-read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 500;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    transition: opacity 0.2s ease;
    text-align: left;
}

.testimonial-read-more:hover { opacity: 0.65; }

.testimonial-author {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255,255,255,0.06);

    display: flex;
    flex-direction: column;
    gap: 4px;

    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-text);
}

.testimonial-location {
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

/* ── Testimonial Modal ── */
.t-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;

    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.t-modal.active {
    display: flex;
}

.t-modal-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;

    background: var(--color-surface);
    border: 1px solid rgba(198,161,110,0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 3rem 2.5rem;

    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) rgba(255,255,255,0.05);
}

.t-modal-box::-webkit-scrollbar { width: 4px; }
.t-modal-box::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 10px;
}

.t-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;

    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-text);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;

    transition: background 0.2s ease, border-color 0.2s ease;
}

.t-modal-close:hover {
    background: rgba(198,161,110,0.15);
    border-color: rgba(198,161,110,0.4);
    color: var(--color-accent);
}

.t-modal-stars {
    color: var(--color-accent);
    font-size: 1rem;
    display: inline-flex;
    gap: 4px;
    margin-bottom: 1.2rem;
}

.t-modal-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    line-height: 1.25;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.t-modal-body {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.t-modal-body p {
    margin: 0 0 1.1rem;
}

.t-modal-body p:last-child {
    margin-bottom: 0;
}

.t-modal-author {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);

    display: flex;
    flex-direction: column;
    gap: 5px;
}

.t-modal-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
}

.t-modal-location {
    color: var(--color-accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 88vw;
    }

    .t-modal-box {
        padding: 2.5rem 1.75rem 2rem;
    }
}

/* =============================================
   ARTICLE / PROJECT CTA SECTION (Concise Version)
   ============================================= */
.article-cta {
    width: 100%;
    margin: 45px 0 0;
    text-align: center;
    padding: 48px 10%;
    background: linear-gradient(
        135deg,
        rgba(198, 161, 110, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    position: relative;
    overflow: hidden;
}

/* Decorative corner accent lines */
.article-cta::before,
.article-cta::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 1px solid var(--color-accent);
    opacity: .15;
    border-radius: 2px;
}

.article-cta::before {
    top: 15px;
    left: 30px;
    border-right: none;
    border-bottom: none;
}

.article-cta::after {
    bottom: 15px;
    right: 30px;
    border-left: none;
    border-top: none;
}

.article-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-family: var(--font-heading);
    color: var(--color-text);
}

.article-cta p {
    opacity: .7;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: var(--color-muted);
}

.cta-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 12px 32px;
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: .85rem;
    text-transform: uppercase;
    border: 1px solid var(--color-accent);
    transition: background .25s, color .25s;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--color-accent);
    color: #111;
}

@media (max-width: 768px) {
    .article-cta {
        padding: 36px 6%;
    }
    .article-cta::before {
        top: 10px;
        left: 15px;
    }
    .article-cta::after {
        bottom: 10px;
        right: 15px;
    }
}