/* ================================
   ROOT VARIABLES (COLORS + FONTS)
================================ */
:root {

  /* Brand Colors (Updated) */
  --color-primary: #684D00;        /* Deep Brown */
  --color-primary-hover: #FFCC06;  /* Gold/Yellow highlight */
  --color-secondary: #1f2933;      /* Dark Slate */
  --color-accent: #FFCC06;         /* Highlight / Price */

  /* Backgrounds */
  --bg-main: #ffffff;
  --bg-section: #f5f7fa;
  --bg-section-light: #f8f1de;
  --bg-section-dark: #684d00;
  --bg-card: #ffffff;

  /* Text Colors */
  --text-heading: #0f172a;
  --text-paragraph: #475569;
  --text-light: #ffffff;
  --text-muted: #94a3b8;

  /* Border */
  --border-color: #e5e7eb;

  /* Radius (Updated button radius) */
  --radius-sm: 6px;
  --radius-md: 10px;  /* Updated from 12px to 10px */
  --radius-lg: 20px;

  /* Transition */
  --transition-fast: 0.25s ease;
}

/* ================================
   GLOBAL RESET
================================ */
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-paragraph);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Sans-serif;
  color: var(--text-heading);
}

/* ================================
   TYPOGRAPHY (CLAMP BASED)
================================ */

/* Headings */
h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--text-heading);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: clamp(2.4rem, 3.8vw, 3.2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  line-height: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: clamp(1.8rem, 2.6vw, 2.2rem);
  font-weight: 600;
}

h5 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: clamp(1.6rem, 2vw, 1.9rem);
  font-weight: 600;
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: clamp(1.4rem, 1.8vw, 1.6rem);
  font-weight: 600;
}

/* Paragraph */
p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: clamp(1.6rem, 2vw, 1.9rem);
  color: var(--text-paragraph);
}

/* ================================
   SECTION BACKGROUNDS
================================ */
.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background-color: var(--bg-section);
}

.section-light {
    background-color: var(--bg-section-light);
    color: var(--text-paragraph);
}

.section-dark {
  background-color: var(--bg-section-dark);
  color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--text-light);
}

.section-light h1,
.section-light h2,
.section-light h3,
.section-light p {
  color: var(--text-paragraph);
}

.section-light h1,
.section-light h2,
.section-light h3 {
    color: #3D2D00;
}


/* ================================
   CARD (PROJECT / COMPARISON)
================================ */
.card-custom {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition-fast);
}

.card-custom:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ================================
   BUTTONS
================================ */

/* Primary Button (Updated Hover) */
.btn-primary-custom {
  background-color: var(--color-primary); /* #684D00 */
  color: var(--text-light);               /* white */
  padding: 12px 30px;
  border-radius: var(--radius-md);       /* 10px */
  border: none;
  font-weight: 500;
  transition: var(--transition-fast);
}
.btn-primary-custom.bordered {
    border: .35px solid #fff;
}
.btn-primary-custom:hover {
  background-color: #543800;  /* darker brown for smooth hover */
  color: #FFCC06;             /* subtle yellow text */
}

/* Secondary Button */
.btn-secondary-custom {
  background-color: transparent;
  color: var(--color-primary);
  padding: 12px 30px;
  border-radius: var(--radius-md); /* 10px */
  border: 2px solid var(--color-primary);
  font-weight: 500;
  transition: var(--transition-fast);
}

.btn-secondary-custom:hover {
  background-color: var(--color-primary);
  color: var(--text-light);
}

/* ================================
   UTILITY CLASSES
================================ */
.text-muted-custom {
  color: var(--text-muted);
}

.bg-light-custom {
  background-color: var(--bg-section);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

a {
  text-decoration: none;
  display: inline-block; 
}
.custom-logo-link img {
	max-height: 70px;
	width: auto;
}

/* ================================
   LUXURY HERO STYLES
================================ */
.hero-luxury {
background: linear-gradient(
      rgba(0, 0, 0, 0.6),  /* black overlay, 60% opacity */
      rgba(0, 0, 0, 0.6)   /* same for smoothness */
    ),
    url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1600&q=80');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #e5e7eb;
  letter-spacing: 0.4px;
}

/* Title */
.hero-title {
  margin-top: 16px;
  max-width: 620px;
}

/* Description */
.hero-description {
  max-width: 580px;
  color: #cbd5f5;
}

/* Feature Pills */
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-features i {
  color: var(--color-accent);
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Button polish */
.btn-primary-custom,
.btn-secondary-custom {
  min-width: 180px;
  text-align: center;
}

.hero-section .btn-secondary-custom {
    border: 1px solid #fff;
    color: #fff;
}

.hero-section .btn-secondary-custom:hover {
    border-color: transparent;
}
/* Mobile polish */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.9rem, 6vw, 2.5rem);
  }
	
	.custom-logo-link img {
		max-height: 45px;
		width: 130px;
	}
	
	nav.navbar.navbar-expand-lg a.btn-primary-custom.text-center.lead-trigger {
		min-width: 100px;
		padding: 6px 18px;
		font-size: 15px;
	}
	
	#unitTabs button.nav-link {
		font-size: 14px;
		padding: 6px 20px;
	}
	    .wpcf7-form p, .wpcf7-form {
        gap: 5px !important;
    }

	.lead-popup-content.card-custom {
		padding: 1rem;
	}
	.wpcf7-form p {
        font-size: 12px;
		line-height: normal;
		margin-bottom: 5px;
    }
	 .lead-popup-content h3 {
        font-size: 1.2rem !important;
    }
	.card_ h5 {
		font-size: 14px !important;
	}
	.how-it-section h2 {
		font-size: 1.2rem !important;
	}
}
/* Section badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(13, 59, 102, 0.08);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 500;
}
/* Consult Section */
.consult-section {
  background:
    linear-gradient(
      rgba(15, 23, 42, 0.9),
      rgba(15, 23, 42, 0.9)
    ),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
}

/* Text color fix */
.consult-section p {
  color: #cbd5f5;
}

/* ================================
   PURPOSE & ASPIRATION SECTION
================================ */
.purpose-section {
  background-color: var(--bg-section);
}

/* Narrow reading width for luxury feel */
.purpose-section p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

/* Slightly softer heading spacing */
.purpose-section h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/* ================================
   CONSULT SPLIT – BLUISH BACKGROUND
================================ */
.consult-split {
  position: relative;
  overflow: hidden;
}

/* Soft blue abstract shape */
.consult-split::before {
  content: "";
    position: absolute;
    top: -180px;
    left: -180px;
    width: 350px;
    height: 350px;
    background: rgba(13, 59, 102, 0.08);
    transform: rotate(45deg);
    z-index: 0;
}

/* Second shape (lighter) */
.consult-split::after {
     content: "";
    position: absolute;
    bottom: -280px;
    right: 80px;
    width: 420px;
    height: 420px;
    background: rgba(148, 163, 184, 0.12);
    transform: rotate(45deg);
    z-index: 0;
}

/* Keep content above shapes */
.consult-split .container {
  position: relative;
  z-index: 1;
}

/* ================================
   FEATURE SECTION ICONS
================================ */
.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(13, 59, 102, 0.08);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
  transition: var(--transition-fast);
}

.card-custom:hover .icon-badge {
  background: var(--color-primary);
  color: #fff;
  transform: scale(1.05);
}

/* ================================
   UNIT TABS (MODERN STYLE)
================================ */
.unit-tabs .nav-link {
  border-radius: 30px;
  padding: 10px 26px;
  border: 1px solid var(--border-color);
  background: #fff;
  color: var(--text-paragraph);
  font-weight: 500;
  transition: var(--transition-fast);
}

.unit-tabs .nav-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.unit-tabs .nav-link.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(13, 59, 102, 0.25);
}
/* ================================
   PROJECT CARD IMAGE
================================ */
.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

/* ================================
   PROJECT CARD – LUXURY STYLE
================================ */

.project-card {
  position: relative;
}

/* Card base */
.project-card .card-custom {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
}

/* Image */
.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Floating content box */
.project-card .card-custom h5,
.project-card .card-custom p,
.project-card .card-custom .d-flex {
  padding-left: 22px;
  padding-right: 22px;
}

.project-card .card-custom h5 {
  margin-top: -28px;
  padding-top: 16px;
  background: #fff;
  border-radius: 12px 12px 0 0;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.project-card .card-custom p {
  padding-bottom: 10px;
}

/* CTA bar */
.project-card .card-custom .d-flex {
  padding-bottom: 22px;
}

/* Image dark overlay */
.project-card .card-custom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 50%,
    rgba(0,0,0,0.45) 100%
  );
  opacity: 0;
  transition: 0.4s ease;
  pointer-events: none;
  height: 240px;
}

/* Hover magic ✨ */
.project-card .card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

.project-card .card-custom:hover img {
  transform: scale(1.12);
}

.project-card .card-custom:hover::after {
  opacity: 1;
}
/* =========================
   RESPONSIVE BUTTON FIX
========================= */

.project-card .d-flex {
  flex-wrap: wrap;           /* allow wrapping */
  gap: 10px;
}

/* Default: side by side */
.project-card .btn-primary-custom,
.project-card .btn-secondary-custom {
  flex: 1 1 48%;
  min-width: 120px;
  text-align: center;
}

/* Small screens: stack buttons */
@media (max-width: 575px) {
  .project-card .btn-primary-custom,
  .project-card .btn-secondary-custom {
    flex: 1 1 100%;
  }
}

/* =========================
   LOCATION FILTER STYLE
========================= */

.location-filter {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 0.9rem;
  color: #0f172a;
}

.location-filter:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.12);
}
/* =========================
   TABS + LOCATION LAYOUT
========================= */

/* Wrapper alignment */
#unitTabs {
  flex-wrap: wrap;
}

/* Desktop layout */
@media (min-width: 768px) {

  /* Tabs + filter ek line me */
  .unit-tabs {
    justify-content: center;
  }

  /* Parent row ko flex banao */
  .unit-tabs,
  .location-filter {
    margin: 0;
  }

  /* Tabs + location ko ek row me lane ke liye */
  .tabs-location-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  /* Location dropdown right aligned */
  .location-filter {
    max-width: 260px;
    margin-left: auto;
  }
}

/* Mobile layout (default stacked) */
@media (max-width: 767px) {
  .tabs-location-wrapper {
    display: block;
  }

  .location-filter {
    width: 100%;
  }
}

/* =========================
   CUSTOM DROPDOWN
========================= */

.custom-select-wrapper {
  position: relative;
  width: 260px;
  font-size: 0.9rem;
}

.custom-select-trigger {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.custom-select-trigger i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.custom-select-wrapper.open .custom-select-trigger {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(13, 59, 102, 0.12);
}

.custom-select-wrapper.open .custom-select-trigger i {
  transform: rotate(180deg);
}

/* Options box */
.custom-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 99;
}

.custom-select-wrapper.open .custom-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  display: flex;
    flex-direction: column;
}

/* Option */
.custom-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-option:hover {
  background: rgba(13, 59, 102, 0.08);
  color: var(--color-primary);
}

.custom-option.selected {
  background: rgba(13, 59, 102, 0.12);
  color: var(--color-primary);
  font-weight: 500;
}

/* Mobile full width */
@media (max-width: 767px) {
  .custom-select-wrapper {
    width: 100%;
  }
}

/* ================================
   PRIVACY POLICY PAGE STYLING
================================ */
.privacy-policy {
  background-color: var(--bg-section);
  padding: clamp(4rem, 8vw, 6rem) 1.5rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-paragraph);
  line-height: 1.8;
}

.privacy-policy h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #000;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.privacy-policy h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #000;
  margin: 2.5rem 0 1rem 0;
  /*border-left: 5px solid var(--color-accent);*/
  /*padding-left: 15px;*/
  /*background: rgba(13, 59, 102, 0.05);*/
  border-radius: var(--radius-sm);
}

.privacy-policy h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: #212121;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy-policy p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  margin-bottom: 1.2rem;
  color: var(--text-paragraph);
}

.privacy-policy ul {
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}

.privacy-policy li {
  position: relative;
  margin-bottom: 0.7rem;
  padding-left: 1.5rem;
  font-weight: 500;
  color: var(--text-paragraph);
}

.privacy-policy li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1rem;
}

.privacy-policy strong {
  color: var(--color-primary);
}

/* ================================
   COMMENTS SECTION
================================ */
.privacy-comments {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  margin-top: 3rem;
}

.privacy-comments h2,
.privacy-comments h3 {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--color-primary-hover);
  outline: none;
  box-shadow: 0 0 0 3px rgba(20,93,160,0.15);
}

.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-form .btn-primary-custom {
  display: inline-block;
  padding: 12px 35px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
  transition: var(--transition-fast);
}

.existing-comments .comment-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.existing-comments .comment-list li {
  border-left: 4px solid var(--color-accent);
  background: rgba(245, 158, 11, 0.05);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  position: relative;
}

.existing-comments .comment-list li .comment-author {
  font-weight: 700;
  color: var(--color-primary);
}

.existing-comments .comment-list li .comment-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.existing-comments .comment-list li .comment-content {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-paragraph);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 2.5rem 1rem;
  }

  .privacy-policy h1 {
    font-size: 1.9rem;
  }

  .privacy-policy h2 {
    font-size: 1.4rem;
    padding-left: 12px;
  }

  .comment-form .btn-primary-custom {
    width: 100%;
  }
}

/* ================================
   POPUP OVERLAY
================================ */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); /* black overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

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

/* ================================
   POPUP CONTENT
================================ */
.lead-popup-content.card-custom {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    min-height: auto;
    max-height: 80dvh;
    max-height: 80dvh;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.4s ease;
    overflow-y: auto;
}

/* Active popup animation */
.popup-overlay.active .lead-popup-content {
    transform: translateY(0);
    opacity: 1;
}

/* Scrollbar styling */
.lead-popup-content::-webkit-scrollbar { width: 8px; }
.lead-popup-content::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 10px; }
.lead-popup-content::-webkit-scrollbar-thumb { background: #684D00; border-radius: 10px; border: 2px solid #f5f5f5; }
.lead-popup-content::-webkit-scrollbar-thumb:hover { background: #543800; }
.lead-popup-content { scrollbar-width: thin; scrollbar-color: #684D00 #f5f5f5; }

/* Close button */
.close-popup {
    position: absolute;
    top: 12px; right: 16px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #684D00;
    font-weight: bold;
}

/* ================================
   CF7 FORM STYLE
================================ */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: 'Inter', sans-serif;
}
.wpcf7-form .form-row {
    display: flex;
    gap: 1rem; 
    
}
/* Form Rows for 2-column fields */
.wpcf7-form p {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0;
    flex: 1;
    font-size: 16px;
}

.wpcf7-form p label {
    flex: 1 1 48%; /* two-column layout if space allows */
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #684D00;
    margin-bottom: 0.5rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form select,
.wpcf7-form textarea {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    background: #fefcf5;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 45px;
    max-height: 45px;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    border-color: #684D00;
    box-shadow: 0 0 8px rgba(104,77,0,0.3);
}

/* Submit Button */
.wpcf7-form input.wpcf7-submit {
    background-color: #684D00;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem 1.5rem;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    /*text-transform: uppercase;*/
    /*letter-spacing: 0.5px;*/
    /*margin-top: 1rem;*/
}

.wpcf7-form input.wpcf7-submit:hover {
    background-color: #543800;
    color: #FFCC06;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(104,77,0,0.3);
}

/* Headings */
.lead-popup-content h3 {
    font-family: 'Playfair Display', Sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #684D00;
    text-align: center;
    margin-bottom: 0.25rem;
}

.lead-popup-content .popup-subtitle {
    font-size: 0.95rem;
    color: #475569;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Info text */
.lead-popup-content p span.info-text {
    font-size: 0.85rem;
    color: #94a3b8;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 0.5rem;
}

/* Error messages */
.wpcf7-not-valid-tip {
    color: #D43F3A;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
    .wpcf7-form p { flex-direction: column; font-size: 14px;}
    .lead-popup-content { width: 95%; padding: 1.5rem; }
}

.about-platform-section {
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.about-platform-section .section-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.about-platform-section .section-intro h2 {
  font-family: 'Playfair Display', serif;
  color: #684D00;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

.about-platform-section .section-intro .subtext {
  color: #475569;
  font-size: 1.05rem;
  max-width: 650px;
  margin: auto;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 1.8rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: #684D00;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: #684D00;
}

.feature-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.platform-works-section {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background-color: #f8f1de;
}

.platform-works-header {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.platform-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #684d00;
  margin-bottom: 12px;
  font-weight: 600;
}

.platform-works-header h2 {
  font-family: 'Playfair Display', Sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.25;
  color: #3b2a00;
  margin-bottom: 14px;
}

.platform-works-header p {
  font-size: 1rem;
  color: #5a4a2a;
  max-width: 600px;
}

/* Steps Grid */
.platform-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.platform-step {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(104, 77, 0, 0.15);
  transition: all 0.3s ease;
}

.platform-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffcc06;
  background: #684d00;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.platform-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #3b2a00;
}

.platform-step p {
  font-size: 0.95rem;
  color: #5a4a2a;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .platform-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .platform-steps {
    grid-template-columns: 1fr;
  }

  .platform-works-header {
    margin-bottom: 2.5rem;
  }
}


.about-platform-section {
  padding: clamp(4rem, 6vw, 6.5rem) 0;
  /*background-color: #f8f1de;*/
}

.section-intro {
  max-width: 720px;
  margin-bottom: 4rem;
  margin: auto; 
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #684d00;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-intro h2 {
  font-family: 'Playfair Display', Sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.25;
  color: #3b2a00;
  margin-bottom: 14px;
}

.section-intro .subtext {
  color: #5a4a2a;
  max-width: 600px;
}

/* Flow List */
.platform-flow-list {
  /*max-width: 900px;*/
  position: relative;
  display: flex;
  gap : 25px;
  flex-wrap: wrap;
}

/*.platform-flow-list::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 18px;*/
/*  top: 0;*/
/*  bottom: 0;*/
/*  width: 2px;*/
/*  background: linear-gradient(*/
/*    to bottom,*/
/*    #684d00,*/
/*    rgba(104, 77, 0, 0.2)*/
/*  );*/
/*}*/

.platform-flow-item {
  display: flex;
  gap: 28px;
  padding-bottom: 3rem;
  position: relative;
  max-width: 100%;
  background: #f8f1de;
    padding: 20px;
    border-radius: 4px;
}

@media (min-width: 768px) {

  .platform-flow-item {
      max-width: calc(50% - 25px/2);
      min-width: calc(50% - 25px/2);
    }
}

.platform-flow-item:last-child {
  padding-bottom: 0;
}

.flow-index {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #684d00;
  color: #ffcc06;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
}

.flow-text {
  max-width: 520px;
}

.flow-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #3b2a00;
  margin-bottom: 6px;
}

.flow-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5a4a2a;
}
.success-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    background: #684d00;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulseGlow 2s infinite ease-in-out;
}
/* Glow Animation */
@keyframes pulseGlow{
  0%{
    box-shadow:0 0 0 0 rgba(107,62,38,0.6);
  }
  50%{
    box-shadow:0 0 0 18px rgba(107,62,38,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(107,62,38,0);
  }
}

/* ==============================
   404 PAGE STYLING
================================ */

.error-404-section{
    padding: 350px 0;
    background: #f9f7f5;
    min-height: 100dvh;
    max-height: 100dvh;
    display:flex;
    align-items: center;
}

.error-box{
  max-width:750px;
  margin:auto;
}

.error-code{
  font-size:120px;
  font-weight:800;
  color:#6b3e26; /* premium brown */
  margin-bottom:10px;
  line-height:1;
}

.error-title{
  font-size:32px;
  font-weight:600;
  margin-bottom:15px;
}

.error-text{
  font-size:16px;
  color:#666;
  margin-bottom:30px;
}

/* Search */
.error-search input[type="search"]{
  width:100%;
  padding:12px 20px;
  border-radius:6px;
  border:1px solid #ddd;
}

.error-search input[type="submit"]{
  margin-top:10px;
  padding:10px 25px;
  background:#6b3e26;
  color:#fff;
  border:none;
  border-radius:6px;
}

/* Mobile */
@media(max-width:768px){
  .error-code{
    font-size:80px;
  }
  .error-title{
    font-size:24px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .platform-flow-list::before {
    left: 16px;
  }

  .platform-flow-item {
    gap: 18px;
  }

  .flow-text {
    max-width: 100%;
  }
}

.platform-difference-section {
  padding: clamp(4rem, 6vw, 6.5rem) 0;
  background-color: #ffffff;
}

.platform-difference-section .section-intro {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #684d00;
  font-weight: 600;
  margin-bottom: 12px;
}

.platform-difference-section h2 {
  font-family: 'Playfair Display', Sans-serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.25;
  color: #3b2a00;
  margin-bottom: 14px;
}

.platform-difference-section .subtext {
  color: #5a4a2a;
  max-width: 600px;
}

/* Comparison Table */
.platform-diff-table {
  max-width: 960px;
  border: 1px solid rgba(104, 77, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
  margin: auto;
}

.diff-row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1.4fr;
}

.diff-row > div {
  padding: 18px 22px;
  font-size: 0.95rem;
  color: #4a3b1a;
  border-bottom: 1px solid rgba(104, 77, 0, 0.15);
}

.diff-row:last-child > div {
  border-bottom: none;
}

.diff-head {
  background-color: #f8f1de;
  font-weight: 600;
}

.diff-head > div {
  color: #3b2a00;
}

.diff-label {
  font-weight: 600;
  color: #3b2a00;
}

/* Highlight Platform Column */
.diff-row > div:last-child {
  background-color: rgba(255, 204, 6, 0.08);
}
.comparision-here {
    padding: 0 15px;
    gap: 12px !important;
}
.comparision-here .project-card {
    padding: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
	
	.consult-home {
		width: 100%;	
	}
	
  .platform-diff-table {
    border-radius: 12px;
  }

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

  .diff-row.diff-head {
    display: none;
  }

  .diff-row > div {
    border-bottom: none;
    padding: 14px 18px;
  }

  .diff-row {
    border-bottom: 1px solid rgba(104, 77, 0, 0.15);
  }

  .diff-label {
    background-color: #f8f1de;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .custom-select-wrapper {
      margin-top: 20px;
  }
  .lead-popup-content.card-custom {
      padding: 1.6rem 1rem;
  }
}

.clarity-section{
  padding: 110px 0;
  background: #f5efe3;
}

.clarity-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.clarity-image img{
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.section-label{
  font-size: 12px;
  letter-spacing: 2px;
  color: #b88b2c;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.clarity-content h2{
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 600;
}

.clarity-content p{
  font-size: 17px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.clarity-highlight{
  background: #fff;
  padding: 18px 22px;
  border-left: 4px solid #b88b2c;
  margin-bottom: 35px;
  font-weight: 500;
  color: #333;
  border-radius: 8px;
}

.clarity-btn{
  background: #b88b2c;
  color: #fff;
  border: none;
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.clarity-btn:hover{
  background: #9f7421;
  transform: translateY(-3px);
}

.clarity-content small{
  display: block;
  margin-top: 15px;
  color: #777;
  font-size: 13px;
}

.wpcf7-spinner {
	position: absolute !important;
}

/* Responsive */
@media(max-width: 992px){
  .clarity-grid{
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .clarity-content h2{
    font-size: 30px;
  }
}