/* ================= GLOBAL RESET ================= */
html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 90px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* GLOBAL FONT */
body {
  font-family: 'Poppins', sans-serif;
}
body {
  background: #FFF8F0;
}

/* ================= UNIVERSAL SYSTEM ================= */

.section-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
/* MAIN CONTAINER (use in all sections) */
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* SECTION SPACING */
.section {
  padding: 80px 0;
}

/* GRID SYSTEM (reusable everywhere) */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* FLEX UTILITIES */
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BUTTON STYLE */
.btn {
  background: #a77b55;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.btn:hover {
  background: #8d6545;
}

/* UNIVERSAL IMAGE FIX */
img {
  width: 100%;
  display: block;
}


/* HIGHLIGHT */
.unhigh {
  color: #a77b55; /* your theme color */
  font-weight: 600;
}

/* ================= FAB BASE ================= */
.fab-container {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);

  transition: 0.3s ease;
}

/* SHOW AFTER HERO */
.fab-container.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* MAIN BUTTON */
.fab-main {
  width: 55px;
  height: 55px;
  background: #b58863;
  color: #fff;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  cursor: pointer;

  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* OPTIONS */
.fab-options {
  position: absolute;
  bottom: 70px;
  right: 0;

  display: flex;
  flex-direction: column;
  gap: 12px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);

  transition: 0.3s;
}

/* ACTIVE OPEN */
.fab-container.active .fab-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* BUTTON STYLE */
.fab-btn {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 20px;

  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);

  transition: 0.3s;
}

/* COLORS */
.call-btn {
  background: #b58863;
}

.whatsapp-btn {
  background: #25D366;
}

/* HOVER */
.fab-btn:hover {
  transform: scale(1.1);
}
.fab-container.active .fab-main {
  transform: rotate(45deg);
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .fab-main {
    width: 50px;
    height: 50px;
  }

  .fab-btn {
    width: 45px;
    height: 45px;
  }

  .fab-container {
    right: 10px;
    bottom: 15px;
  }
}

/* ================= iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {
  .fab-container {
    bottom: calc(15px + env(safe-area-inset-bottom));
  }
}



/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 12px 25px;
  padding-right: 50px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

/* LOGO */
.logo {
  margin-left: 10px;
  width: 120px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  margin-right: 50px;
  gap: 35px;
}

/* LINK STYLE */
.nav-links a {
  position: relative;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* HOVER */
.nav-links a:hover {
  color: #b58863;
}

/* UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #b58863;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 3px;
  transition: 0.3s;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 900px) {

  /* SHOW MENU BUTTON */
  .menu-toggle {
    display: flex;
  }

  /* 🔥 REMOVE INVISIBLE SPACE ISSUE */
  .nav-links {
    position: absolute; /* changed from relative */
    top: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95);

    width: 90%;
    margin: 0 auto;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);

    border-radius: 20px;
    padding: 15px 0;

    flex-direction: column;
    align-items: center;
    gap: 20px;

    opacity: 0;
    pointer-events: none;

    transition: all 0.35s ease;
    z-index: 999;
  }

  /* ACTIVE */
  .nav-links.active {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
  }

  /* LINKS */
  .nav-links li a {
    font-size: 16px;
    font-weight: 500;
    color: #333;
  }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 600px) {

  .navbar {
    width: 92%;
    padding: 10px 20px;
  }

  .logo {
    width: 100px;
  }

  .nav-links {
    width: 95%;
  }
}

/* ================= iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {
  .navbar {
    top: calc(15px + env(safe-area-inset-top));
  }
}


/* ================= HERO ================= */
.hero {
  margin-top: 90px;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  height: 80vh;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}

/* HERO IMAGES */
.hero-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
}

/* DARK OVERLAY */
.hero::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.1)
  );
}

/* ================= HERO OVERLAY ================= */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 60px;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  color: #fff;
  z-index: 2;
}

/* LEFT HEADING */
.hero-overlay h1 {
  max-width: 500px;
  font-size: 43px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.7);
}

/* RIGHT CONTENT */
.hero-right {
  max-width: 420px;
  margin-bottom: 20px;

  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.123);

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

  padding: 18px 20px;
  border-radius: 14px;

  text-align: left;
}

/* PARAGRAPH */
.hero-right p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* 🔥 BUTTON CENTER FIX */
.hero-buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 220px;
}

/* BUTTON BASE */
.btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

/* CALL BUTTON */
.btn-call {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* QUOTE BUTTON */
.btn-quote {
  background: #b58863;
  color: #fff;
}

/* HOVER */
.btn:hover {
  transform: translateY(-2px);
}

/* CARD HOVER */
.hero-right:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: 0.3s;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {

  .hero-overlay {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
  }

  .hero-overlay h1 {
    font-size: 32px;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .hero {
    height: 70svh;  
  }

  .hero-overlay {
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .hero-overlay h1 {
    font-size: 30px;
    max-width: 90%;
  }

  .hero-right {
    width: 100%;
    max-width: 95%;
    padding: 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero-right p {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 220px;
    padding: 12px;
  }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 400px) {

  .hero-overlay h1 {
    font-size: 25px;
    padding-top: 20px;
  }

  .hero-right p {
    font-size: 10px;
  }
}

/* ================= iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {

  .hero {
    height: 100svh;
  }

  .hero-overlay {
    padding-top: calc(16px + env(safe-area-inset-top));
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }

  html {
    -webkit-text-size-adjust: 100%;
  }

  body {
    -webkit-overflow-scrolling: touch;
  }

  a, button {
    -webkit-tap-highlight-color: transparent;
  }
}

/* OPTIONAL: SIDE BY SIDE ON LARGER PHONES */
@media (min-width: 480px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons a {
    width: auto;
    min-width: 150px;
  }
}


/* ================= ABOUT SECTION ================= */
.about-section {
  width: 95%;
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 25px;
}

/* ================= LEFT CARD ================= */
.stats-card {
  background: #b58863;
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  width: 260px;
  position: relative;

  /* PREMIUM SHADOW */
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* SMALL CIRCLE DESIGN */
.stats-card .circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

/* MAIN NUMBER */
.stats-card h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* TEXT */
.stats-card p {
  font-size: 13px;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* SMALL SECTION */
.stats-card .small h3 {
  font-size: 22px;
  font-weight: 600;
}

.stats-card .small span {
  font-size: 12px;
  opacity: 0.8;
}

/* ================= RIGHT CARD ================= */
.about-card {
  flex: 1;

  /* 🔥 PREMIUM GRADIENT */
  background: linear-gradient(135deg, #f8f6f3, #eee7df);

  border-radius: 20px;
  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* TEXT AREA */
.about-text {
  max-width: 60%;
}

/* HEADING */
.about-text h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
}


/* PARAGRAPH */
.about-text p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}


/* IMAGE*/  
.about-img img {
  width: 220px;        /* increased size */
  max-width: 100%;     /* responsive */
  height: auto;

  border-radius: 24px;

  /* premium look */
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .about-section {
    flex-direction: column;
  }

  .stats-card {
    width: 100%;
  }

  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-img img {
    width: 180px;
    height: auto;
  }
}


/* ================= SERVICES SLIDER ================= */

/* SECTION TITLE */
.section-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;

  color: #000000;
}


/* ================= STACK ================= */
.services-stack {
  width: 100%;
  padding: 35px 0;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.stack-container {
  position: relative;
  width: 1000px;
  height: 420px;
}

/* ================= CARD BASE ================= */
.stack-card {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  overflow: hidden;

  opacity: 0;
  pointer-events: none;

  transition: all 0.5s ease;
}

/* ================= ACTIVE CENTER ================= */
.stack-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 10;

  filter: blur(0);
  border: 2px solid rgba(167, 123, 85, 0.25);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);

  pointer-events: auto;
}

/* ================= LEFT CARD ================= */
.stack-card.left {
  opacity: 0.2;
  transform: translateX(-60%) scale(0.9);
  filter: blur(4px);
  z-index: 5;
}

/* ================= RIGHT CARD ================= */
.stack-card.right {
  opacity: 0.2;
  transform: translateX(60%) scale(0.9);
  filter: blur(4px);
  z-index: 5;
}

/* ================= IMAGE ================= */
.stack-card img {
  width: 55%;
  object-fit: cover;
}

/* ================= TEXT ================= */
.card-content {
  width: 45%;
  padding: 40px;
}

.card-content h2 {
  font-size: 50px;
  color: #ddd;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ================= ARROW POSITION ================= */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;

  padding: 0 15px;
  z-index: 50;
}

/* BUTTON */
.slider-controls button {
  pointer-events: auto;

  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  transition: 0.3s;
}

/* FIX POSITION (override old margins) */
#prevBtn {
  margin-left: 135px !important;
}

#nextBtn {
  margin-right: 135px !important;
}

/* SVG */
.slider-controls svg {
  width: 20px;
  height: 20px;
  stroke: #333;
}

/* HOVER */
.slider-controls button:hover {
  transform: scale(1.1);
  background: #a77b55;
}

.slider-controls button:hover svg {
  stroke: #fff;
}

/* ================= RESPONSIVE ================= */

/* ================= TABLET ================= */
@media (max-width: 900px) {

  .stack-container {
    width: 92%;
    height: auto;
    min-height: 420px;
  }

  .stack-card {
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
  }

  .card-content {
    width: 100%;
    padding: 25px 20px;
  }

  .card-content h3 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .stack-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* HIDE SIDE CARDS */
  .stack-card.left,
  .stack-card.right {
    display: none;
  }

  /* BUTTON FIX */
  .slider-controls {
    padding: 0 15px;
  }

  .slider-controls button {
    width: 42px;
    height: 42px;
  }
}


/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .section-title {
    font-size: 22px;
  }

  .stack-container {
    width: 94%;
    min-height: 440px;
  }

  .stack-card {
    border-radius: 18px;
  }

  .card-content {
    padding: 20px 16px;
  }

  .card-content h3 {
    font-size: 18px;
  }

  .card-content p {
    font-size: 13px;
  }

  .stack-card img {
    height: 180px;
  }

  /* CONTROLS */
  .slider-controls {
    padding: 0 10px;
  }

  .slider-controls button {
    width: 38px;
    height: 38px;
  }

  .slider-controls svg {
    width: 16px;
    height: 16px;
  }
}


/* ================= 🔥 iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {

  .stack-container {
    min-height: 460px;
  }

  .card-content {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}


/* ================= SMALL DEVICES ================= */
@media (max-width: 400px) {

  .stack-container {
    width: 96%;
  }

  .card-content h3 {
    font-size: 16px;
  }

  .card-content p {
    font-size: 12px;
    line-height: 1.4;
  }

  .stack-card img {
    height: 160px;
  }

  /* STACK BUTTONS SAFE */
  .slider-controls button {
    width: 34px;
    height: 34px;
  }
}

/* HIDE ARROWS ON MOBILE */
@media (max-width: 768px) {
  .slider-controls {
    display: none;
  }
}


/* ================= WHY SECTION ================= */
.why-section {
  padding: 50px 0 0;
  text-align: center;
  background: #fff;
}

/* HIGHLIGHT */
.highlight-box {
  background: #b58863;
  padding: 6px 16px;
  border-radius: 10px;
  color: #fff;
}

/* ================= ICON AREA ================= */
.why-bg {
  background: #b58863;
  padding-bottom: 10px;
  padding-top: 15px;
  margin-top: 10px;
}

/* CONTAINER */
.container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* ITEM */
.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ================= ICON CIRCLE ================= */
.icon {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* ICON IMAGE */
.icon img {
  width: 40%;
  height: 40%;
  font-style: c;
  object-fit: contain;
  display: block;
}

/* TEXT */
.why-item p {
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
  text-align: center;
  line-height: 1.4;
  margin-top: 5px;
  letter-spacing: 0.3px;
}

/* HOVER */
.why-item:hover .icon {
  transform: translateY(-5px);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 500px) {

  .why-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px; /* 🔥 better spacing */
  }

  /* 🔥 SMALLER ICONS */
  .icon {
    width: 45px;
    height: 45px;
  }

  .icon img {
    width: 38%;
    height: 38%;
  }

  /* TEXT ADJUST */
  .why-item p {
    font-size: 13px;
  }

  .section-title {
    font-size: 24px;
  }
}

/* ================= PORTFOLIO ================= */
.portfolio {
  padding: 70px 5%;
  background: #f5f2ee;
}

/* GRID */
.portfolio-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* CARD */
.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 190px;

  border: 1px solid rgba(167, 123, 85, 0.25);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);

  transition: all 0.3s ease;
}

/* CARD HOVER */
.card:hover {
  transform: translateY(-5px);
  border: 1px solid rgba(167, 123, 85, 0.6);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* IMAGE HOVER */
.card:hover img {
  transform: scale(1.06);
}

/* ================= TEXT CARD ================= */
.text-card {
  grid-column: span 2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(167, 123, 85, 0.35);
}

.text-card h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.text-card span {
  display: block;
  font-size: 18px;
  color: #b58863;
  font-weight: 600;
  margin-top: 5px;
}

.text-card p {
  font-size: 15.5px;
  color: #666;
  margin-top: 12px;
  line-height: 1.7;
}

/* ================= TALL CARD ================= */
.tall {
  grid-row: span 2;
  height: 400px;
}

/* ================= BUTTON CARD ================= */
.button-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;

  border: 1px solid rgba(167, 123, 85, 0.3);
}

/* BLUR BACKGROUND */
.button-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/portfolio/img05.jpg") center/cover no-repeat;
  filter: blur(10px) brightness(1);
  transform: scale(1.2);
  z-index: 0;
}

/* DARK OVERLAY */
.button-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

/* BUTTON */
.portfolio-btn {
  position: relative;
  z-index: 2;

  background: #b58863;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-size: 14px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

/* BUTTON HOVER */
.portfolio-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(167,123,85,0.4);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {

  .portfolio-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .text-card {
    grid-column: span 2;
  }

  .tall {
    height: 260px;
    grid-row: span 1;
  }

  .text-card h2 {
    font-size: 24px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .portfolio {
    padding: 40px 4%;
  }

  .portfolio-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card {
    height: 210px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  .card img {
    border-radius: 18px;
  }

  .card:hover img {
    transform: scale(1.04);
  }

  .text-card {
    grid-column: span 1;
    height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .text-card h2 {
    font-size: 22px;
  }

  .text-card span {
    font-size: 16px;
  }

  .text-card p {
    font-size: 14px;
  }

  .tall {
    height: 210px;
  }

  .button-card {
    height: 170px;
    border-radius: 18px;
  }

  .portfolio-btn {
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 25px;
  }

  /* 🔥 subtle premium scaling */
  .portfolio-container > * {
    transform: scale(0.98);
    transition: 0.3s ease;
  }

  .portfolio-container > *:hover {
    transform: scale(1);
  }
}


/* ================= TESTIMONIAL ================= */
.testimonial {
  padding: 80px 5%;
  background: #f5f2ee;
  text-align: center;
  overflow: hidden;
}


.highlight-box {
  background: #b58863;
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
}

/* ================= SLIDER WRAPPER ================= */
.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 450px;
}

/* ================= CARD ================= */
.test-card {
  position: absolute;
  width: 300px;
  height: 200px;
  padding: 25px;
  background: #fff;
  border-radius: 18px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: scale(0.8);
  filter: blur(2px);
  border: 1px solid rgba(167,123,85,0.25);
}
.star{
  size: 10px;
  color: rgb(255, 166, 0);
}
/* CENTER */
.test-card.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: none;
  z-index: 3;
  width: 350px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* LEFT */
.test-card.left {
  opacity: 0.5;
  transform: translateX(-350px) scale(0.85);
  z-index: 2;
}

/* RIGHT */
.test-card.right {
  opacity: 0.5;
  transform: translateX(350px) scale(0.85);
  z-index: 2;
}

/* HIDDEN FAR */
.test-card.hidden {
  opacity: 0;
  transform: scale(0.7);
  z-index: 1;
}

/* TEXT */
.test-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.test-card h4 {
  font-size: 13px;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-container {
    position: relative;
    height: auto;
  }

  .test-card,
  .test-card.active {
    position: relative;
    transform: none;
    opacity: 1;
    width: 100%;
    margin-bottom: 15px;
    filter: none;
  }

  .test-card.left,
  .test-card.right,
  .test-card.hidden {
    display: none;
  }
}
/* ================= MOBILE OPTIMIZATION ================= */
@media (max-width: 768px) {

  .testimonial {
    padding: 50px 4%;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  /* 🔥 SCROLL SLIDER */
  .testimonial-container {
    position: relative;
    display: flex;
    gap: 15px;

    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding: 10px 0;
  }

  /* HIDE SCROLLBAR */
  .testimonial-container::-webkit-scrollbar {
    display: none;
  }

  /* CARD BASE */
  .test-card {
    position: relative;
    min-width: 85%;
    flex: 0 0 auto;

    scroll-snap-align: center;

    transform: scale(0.95);
    opacity: 0.8;
    filter: none;

    transition: all 0.3s ease;
  }

  /* ACTIVE CARD */
  .test-card.active {
    transform: scale(1);
    opacity: 1;
  }

  /* REMOVE DESKTOP POSITIONING */
  .test-card.left,
  .test-card.right,
  .test-card.hidden {
    transform: none;
    opacity: 0.8;
    filter: none;
  }

  /* TEXT */
  .test-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .test-card h4 {
    font-size: 12px;
  }
}

/* ================= FAQ ================= */
.faq {
  padding: 80px 0;
  background: #FFF8F0;

  display: flex;
  justify-content: center;
}

/* ================= CONTAINER ================= */
.faq-container {
  width: 90%;
  max-width: 1200px;

  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ================= LEFT ================= */
.faq-left {
  flex: 1;
  padding-left: 20px;
}

/* TITLE */
.faq-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
}

/* BIG TEXT */
.faq-text {
  font-size: 65px;
  display: inline;
}

/* HIGHLIGHT */
.highlight-box {
  background: #b58863;
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 30px;
}

/* TEXT */
.faq-left p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  max-width: 500px;
}

/* ================= RIGHT ================= */
.faq-right {
  flex: 1;
  max-height: 420px;
  overflow-y: auto;
  padding-right: 6px;
}

/* SCROLLBAR */
.faq-right::-webkit-scrollbar {
  width: 5px;
}
.faq-right::-webkit-scrollbar-thumb {
  background: rgba(167,123,85,0.4);
  border-radius: 10px;
}

/* ================= CARD ================= */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 10px 20px;

  border: 1px solid rgba(167,123,85,0.2);

  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER */
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

/* ICON */
.faq-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

/* ICON ROTATION */
.faq-icon svg {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

/* ================= CALL ITEM ================= */
.call-item {
  background: linear-gradient(135deg, #a77b55, #8b623f);
  color: #fff;
  border: none;
}

.call-item .faq-question {
  color: #fff;
  font-weight: 600;
}

.call-arrow {
  height: 35px;
  width: 35px;
  margin-right: 10px;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-left {
    padding-left: 0;
  }

  .faq-left h2 {
    font-size: 32px;
  }

  .faq-text {
    font-size: 36px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .faq {
    padding: 50px 0;
  }

  .faq-container {
    width: 92%;
  }

  .faq-left h2 {
    font-size: 26px;
  }

  .faq-text {
    font-size: 30px;
  }

  .highlight-box {
    font-size: 16px;
    padding: 4px 10px;
  }

  .faq-left p {
    font-size: 13px;
  }

  .faq-right {
    max-height: 360px;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer {
    font-size: 12px;
  }
}

/* ================= 🔥 EXTRA MOBILE COMPACT FIX ================= */
@media (max-width: 600px) {

  .faq-item {
    padding: 12px 14px;
    border-radius: 8px;
  }

  .faq-question {
    font-size: 13.5px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
  }

  .faq-answer {
    margin-top: 6px;
  }

  .faq-right {
    max-height: 320px;
  }
}

/* ================= 📱 iPAD FIX ================= */
@media (min-width: 601px) and (max-width: 1024px) {

  .faq-container {
    gap: 40px;
  }

  .faq-left h2 {
    font-size: 34px;
  }

  .faq-text {
    font-size: 40px;
  }

  .highlight-box {
    font-size: 20px;
  }

  .faq-left p {
    font-size: 14px;
    max-width: 100%;
  }

  .faq-right {
    max-height: 380px;
  }

  .faq-item {
    padding: 14px 18px;
  }

  .faq-question {
    font-size: 14.5px;
  }

  .faq-icon {
    width: 45px;
    height: 45px;
  }
}

/* ================= 🍏 iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {
  .faq {
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
  }
}



/* ================= SECTION ================= */
.quote-section {
  background: #fffbf4;
  padding-left: 90px;
  padding-right: 90px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

/* GRID */
.quote-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: flex-start;
}

/* ================= LEFT FORM ================= */
.quote-form {
  background: transparent;
  max-width: 600px;
  width: 100%;
  margin-left: 10px;
}

.small-title {
  color: #3d271a;
  letter-spacing: 1px;
  font-size: 20px;
  margin-bottom: 10px;
}

/* HEADING */
.quote-form h2 {
  font-size: 40px;
  margin-bottom: 25px;
  line-height: 1.3;
}

.quote-form h2 span {
  color: #b58863;
}

/* INPUT */
.form-row {
  display: flex;
  gap: 20px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 18px;

  border-radius: 12px;
  border: none;

  background: #ffffff;
  color: #333;
  font-size: 14px;

  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.quote-form textarea {
  height: 140px;
  resize: none;
}

/* ================= BUTTON ================= */
.send-btn {
  display: inline-flex; /* 🔥 FIX */
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #b58863;
  color: #fff;

  padding: 14px 24px;
  border-radius: 20px;
  border: none;
  cursor: pointer;

  margin-top: 10px;
}

.arrow {
  background: #fff;
  color: #b58863;
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= RIGHT CARD ================= */
.quote-info {
  background: linear-gradient(#b58863);
  color: #FFF8F0;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}

/* TEXT */
.quote-info h4 {
  margin-top: 15px;
  color: #3d271a;
  margin-bottom: 5px;
  font-size: 25px;
}

.quote-info p {
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.5;
}

/* TOP CUT */
.quote-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;

  width: 80px;
  height: 80px;

  background: #FFF8F0;

  border-bottom-left-radius: 50px;
}

/* ================= SOCIAL ================= */
.socials {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

/* ICON BUTTON */
.socials span {
  width: 40px;
  height: 40px;

  background: rgba(255,255,255,0.2);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* FIX ICON COLOR */
.socials span a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.socials span a i {
  color: #ffffff !important;
  font-size: 20px;
}

/* ================= MAP ================= */
.map-section {
  width: 100%;
  
  pointer-events: none;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
  filter: grayscale(100%);
}

/* ================= TABLET ================= */
@media (max-width: 900px) {

  .quote-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .form-row {
    flex-direction: column;
  }

  .quote-info {
    width: 100%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .quote-section {
    padding: 50px 4%;
  }

  .quote-form h2 {
    font-size: 24px;
  }

  .quote-form input,
  .quote-form textarea {
    padding: 14px;
  }

  .send-btn {
    width: fit-content;
  }

  .quote-info {
    padding: 30px 20px;
  }

  .socials {
    justify-content: center;
  }
}

/* ================= iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {
  .quote-section {
    padding-bottom: calc(50px + env(safe-area-inset-bottom));
  }
}

/* ================= FEATURE STRIP ================= */
.feature-strip {
  background: #f5f2ee;
  padding: 20px 5%;
}

.feature-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-item h4 {
  font-size: 14px;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 12px;
  color: #666;
}

/* ================= SCROLL BAR ================= */
.scroll-bar {
  background: #b58863;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-content {
  display: inline-block;
  padding: 9px 0;
  animation: scrollText 15s linear infinite;
}

.scroll-content span {
  margin-right: 20px;
  font-size: 14px;
  color: #000;
  font-weight: 500;
}


/* ================= TABLET ================= */
@media (max-width: 900px) {
  .feature-container {
    justify-content: center;
    gap: 25px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .feature-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
  }

  .feature-item img {
    width: 35px;
    height: 35px;
  }

  .scroll-content span {
    font-size: 13px;
    margin-right: 25px;
  }
}

/* ================= iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {
  .feature-strip {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}













/* ================= ROOT VARIABLES ================= */
:root {
  --social-icon-size: 42px;     /* 🔥 change social circle size */
  --social-icon-font: 16px;     /* icon size inside */

  --payment-icon-height: 28px;  /* 🔥 change payment logo size */
}

/* ================= FOOTER ================= */
.footer {
  background: #130f08;
  color: #fff;
  padding: 60px 5% 20px;
}

/* ================= GRID ================= */
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  align-items: flex-start;
}

/* ================= LEFT ================= */
.footer-left img {
  align-items: center;
  margin-top: 20px;
  height: 60px;
  width: auto;
  margin-bottom: 10px; /* spacing below logo */
}
.footer-left h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.footer-left p {
  font-size: 12px;
  color: #b58863;
  line-height: 1.6;
}

/* ================= COLUMN ================= */
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
}

/* ================= SOCIAL ================= */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-socials a {
  width: var(--social-icon-size);
  height: var(--social-icon-size);

  background: #b58863;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;
  font-size: var(--social-icon-font);

  transition: 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
}

/* ================= PAYMENT ================= */
.payment-title {
  margin-top: 10px;
  margin-bottom: 9px;
}


.payment-methods {
  display: grid;
  grid-template-columns: repeat(4, max-content); /* 🔥 shrink to content */
  gap: 5px; /* 🔥 reduce space */
  align-items: center;
  justify-content: start; /* align left */
}

/* ICON SIZE CLEAN */
.payment-methods img {
  height: var(--payment-icon-height);
  width: auto; /* 🔥 prevent stretching */
}

.payment-methods img:hover {
  transform: scale(1.08);
}

/* ================= DIVIDER ================= */
.footer-divider {
  margin: 40px 0 20px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

/* ================= BOTTOM ================= */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #aaa;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* 🔥 FIX COLUMN ALIGNMENT */
  .footer-col,
  .footer-left {
    text-align: left;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .footer {
    padding: 40px 4% 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* 🔥 FIX SPACING BETWEEN BLOCKS */
  .footer-left,
  .footer-col {
    margin-bottom: 10px;
  }

  /* 🔥 CENTER LOGO */
  .footer-left img {
    margin: 0 auto 10px;
    display: block;
    height: 40px;
  }

  /* 🔥 CENTER SOCIAL */
  .footer-socials {
    justify-content: center;
  }

  /* 🔥 PAYMENT ALIGN FIX */
  .payment-methods {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    gap: 10px;
  }

  /* 🔥 FIX TEXT SPACING */
  .footer-col p,
  .footer-col a {
    margin-bottom: 6px;
  }

  /* 🔥 BOTTOM FIX */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* 🔥 RESPONSIVE ICON SIZE */
  :root {
    --social-icon-size: 38px;
    --social-icon-font: 14px;
    --payment-icon-height: 24px;
  }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 400px) {

  :root {
    --social-icon-size: 34px;
    --payment-icon-height: 22px;
  }

  .footer-left h3 {
    font-size: 24px;
  }
}

/* ================= iPHONE FIX ================= */
@supports (-webkit-touch-callout: none) {
  .footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}
/* ================= SMOOTH SCROLL ================= */
html {
  scroll-behavior: smooth;
}

/* 🔥 FIX NAVBAR OVERLAP */
section {
  scroll-margin-top: 100px; /* adjust to your navbar height */
}

/* ================= FOOTER LINKS ================= */
.footer-link {
  position: relative;
  display: inline-block;
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

/* 🔥 HOVER EFFECT */
.footer-link:hover {
  color: #b58863;
}

.footer-link:hover::after {
  width: 100%;
}

