:root{
  --tbc-brown:#8b6a4e;
  --tbc-brown-dark:#6f533d;
  --tbc-cream:#f6efe7;
  --tbc-cream-soft:#fbf7f2;
  --tbc-text:#2b2b2b;
  --tbc-muted:#7a6f66;
}

*{margin:0;padding:0;box-sizing:border-box}
*{
  scroll-behavior: smooth;
}
body {
  font-family: Inter, sans-serif;
  background: var(--tbc-cream);
  color: var(--tbc-text);
}
.section-container{
max-width:1200px;
margin:auto;
padding:0 40px;
}
/* HERO */
.hero{
  position: relative;
  min-height: 92vh;   
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px; 
  padding-bottom: 60px;
  color: #fff;
}
.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;

  background:
  /* TIMBER warmth */
  radial-gradient(
    circle at 25% 30%,
    rgba(150,110,80,0.20),
    transparent 45%
  ),

  /* BRICK depth */
  radial-gradient(
    circle at 70% 65%,
    rgba(165,90,70,0.16),
    transparent 50%
  ),

  /* CONCRETE neutral base */
  linear-gradient(
    135deg,
    #f7f1ea 0%,
    #e9ddd1 100%
  );
}
.hero-bg::after{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(0,0,0,0.04), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,0.03), transparent 55%);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

@keyframes heroDrift{
  from{
    transform: translateY(-10px);
  }
  to{
    transform: translateY(10px);
  }
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(80,55,40,0.08),
    rgba(80,55,40,0.20)
  );
}
.hero-content{
  position: relative;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
  margin: 0 auto;
}
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:-40px;
  z-index:-1;
  transform:scale(1.1);
  transition:transform .2s ease-out;
}

/* Add breathing below subtitle */
.hero p{
  margin-top: 18px;
  font-size: 17px;
  color: #5f5348;
}
.hero h1{
  font-family:"Playfair Display", serif;
  font-size: clamp(42px, 6vw, 64px);
  margin-bottom: 16px;
  color:#3a2f27;
  line-height: 1.15;
}
.hero p{margin-bottom:30px}
.hero-brand{letter-spacing:3px;font-size:13px;margin-bottom:16px}

.btn-primary{
  background: var(--tbc-brown);
  color: #fff;
  padding:14px 28px;
  border-radius:999px;
  text-decoration:none;
  transition: all .25s ease;
}

.btn-primary:hover{
  background: var(--tbc-brown-dark);
  transform: translateY(-2px);
}

/* ===== NAVBAR SYSTEM ===== */
.tbc-navbar{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: linear-gradient(
    to bottom,
    rgba(248,244,236,0.72),
    rgba(248,244,236,0.55)
  );

  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);

  border-bottom: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);

  transition: background 0.35s ease,
              box-shadow 0.35s ease,
              backdrop-filter 0.35s ease;
}
.tbc-navbar::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:1px;
background:rgba(255,255,255,0.5);
}
/* NAVBAR SCROLLED STATE */

.tbc-navbar.scrolled{

background: linear-gradient(
to bottom,
rgba(248,244,236,0.85),
rgba(248,244,236,0.70)
);

backdrop-filter: blur(21px) saturate(150%);
-webkit-backdrop-filter: blur(18px) saturate(150%);

box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 6px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--tbc-brown);
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  color: var(--tbc-text);
  font-weight: 500;
}

.nav-cta {
  background: var(--tbc-brown);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 30px;
}

/* Links */

.tbc-nav-links{
  display:flex;
  gap:28px;
  align-items:center;
}

.tbc-nav-links a{
  text-decoration:none;
  color:var(--tbc-text);
  font-size:15px;
  transition:.25s;
}

.tbc-nav-links a:hover{
  color:var(--tbc-brown);
}

/* CTA */

.tbc-nav-cta{
  background:rgba(139,106,78,0.85);
  backdrop-filter:blur(10px);
  color:white;
  border-radius:999px;
  padding:10px 18px;
  transition:.3s;
}
.navbar.scrolled{
background: rgba(255,255,255,0.65);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(0,0,0,0.08);
}
/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 110px 0;
  background: #f7f1ea;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #3e2a1d;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 15px;
  color: #8a6f59;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.process-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 24px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.35s ease;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.08);
}

.process-card span {
  font-size: 13px;
  letter-spacing: 2px;
  color: #b79d85;
  display: block;
  margin-bottom: 12px;
}

.process-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: #3e2a1d;
}

.process-card p {
  font-size: 14px;
  color: #7b5d49;
  line-height: 1.6;
}

/* ================= TESTIMONIAL STRIP ================= */

.testimonial-strip {
  padding: 90px 0;
  background: #8b6a4e;
  text-align: center;
  color: #fff;
}

.testimonial-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  max-width: 750px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 14px;
  opacity: 0.85;
}

/* ================= INSTAGRAM SECTION ================= */
.instagram-section { padding: 90px 0 60px; background: #fff; }
.instagram-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.instagram-header { text-align: center; margin-bottom: 48px; }
.instagram-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #3e2a1d;
  margin-bottom: 8px;
}
.instagram-header p { font-size: 14px; color: #8a6f59; }

/* ================= TESTIMONIAL CAROUSEL ================= */
.testi-carousel {
  position: relative;
  min-height: 140px;
  overflow: hidden;
}

.testi-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testi-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testi-dot.active {
  background: #fff;
  transform: scale(1.35);
}

.testi-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
/* =====================================================
   INSTAGRAM CAROUSEL — add this to your styles.css
   ===================================================== */
 
/* ── Carousel wrapper (full-width, clips overflow) ── */
.insta-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 0 40px;
  cursor: grab;
  user-select: none;
}
.insta-carousel-wrapper:active { cursor: grabbing; }
 
/* ── Scrolling track ── */
.insta-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: instaScroll 28s linear infinite;
}
.insta-track:hover { animation-play-state: paused; }
 
@keyframes instaScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
 
/* ── Individual image tiles ── */
.insta-slide {
  flex: 0 0 280px;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.insta-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  z-index: 2;
}
.insta-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* ── Soft fade overlays on left & right edges ── */
.insta-fade {
  position: absolute;
  top: 0; bottom: 40px;
  width: 120px;
  pointer-events: none;
  z-index: 3;
}
.insta-fade-left  {
  left: 0;
  background: linear-gradient(to right, #f8f4ec, transparent);
}
.insta-fade-right {
  right: 0;
  background: linear-gradient(to left, #f8f4ec, transparent);
}
 
/* ── Instagram handle link style ── */
.instagram-header a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.instagram-header a:hover { opacity: 1; }
 
/* ── Mobile adjustments ── */
@media (max-width: 600px) {
  .insta-slide { flex: 0 0 220px; height: 220px; }
  .insta-fade  { width: 60px; }
}

/* FLOATING CTA */
.floating-cta{position:fixed;right:24px;bottom:24px;display:flex;flex-direction:column;gap:12px;z-index:999;opacity:0;transform:translateY(20px);transition:.4s}
.floating-cta.show{opacity:1;transform:translateY(0)}
.floating-btn{padding:14px 18px;border-radius:999px;text-decoration:none;box-shadow:0 12px 30px rgba(0,0,0,.18)}
.floating-consult{
  background: var(--tbc-brown);
  color:#fff;
}
.floating-whatsapp{
  background:#25D366;
  color:#fff;
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
  transition: all .25s ease;
}

.floating-whatsapp:hover{
  transform: translateY(-2px) scale(1.05);
}
/* ===== POPUP ===== */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

display:flex;
align-items:center;
justify-content:center;

background:rgba(0,0,0,0.25);
backdrop-filter:blur(4px);

opacity:0;
visibility:hidden;

z-index:9999;
transition:opacity .25s ease;
}

.popup-overlay.active{
opacity:1;
visibility:visible;
}

.popup-box{
width:900px;
max-width:92%;

background:#fff;
border-radius:22px;

display:grid;
grid-template-columns:1fr 1fr;

overflow:hidden;

box-shadow:0 40px 100px rgba(0,0,0,0.25);
}

/* LEFT PANEL */

.popup-left{
  padding:60px 50px;
  background:
    radial-gradient(circle at 20% 30%, rgba(139,106,78,0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(165,90,70,0.18), transparent 50%),
    linear-gradient(135deg,#f7f1ea,#e9ddd1);
}

.popup-brand{
  font-family:"Playfair Display", serif;
  font-size:24px;
  margin-bottom:20px;
  color:#3a2f27;
}

.popup-left h3{
  font-family:"Playfair Display", serif;
  font-size:28px;
  margin-bottom:16px;
  color:#3a2f27;
}

.popup-left p{
  color:#6b5a4c;
  line-height:1.6;
}

.popup-materials{
  margin-top:40px;
  font-size:12px;
  letter-spacing:3px;
  color:#8b6a4e;
  text-transform:uppercase;
}

/* RIGHT PANEL */

.popup-right{
  padding:50px 40px;
  position:relative;
}

.popup-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.popup-form input,
.popup-form textarea{
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e4d7c8;
  font-size:14px;
}

.popup-form button{
  margin-top:10px;
  padding:16px;
  border-radius:40px;
  border:none;
  background:#8b6a4e;
  color:#fff;
  cursor:pointer;
}
.popup-close{
  position:absolute;
  top:20px;
  right:20px;
  font-size:20px;
  cursor:pointer;
}
/* MOBILE */
@media(max-width:768px){
  .polaroid-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
}
/* ===== INNER PAGE HERO ===== */

.inner-hero{
  padding:160px 24px 80px;
  text-align:center;
  background: var(--tbc-cream-soft);
  position: relative;
  z-index: 1;
}

.inner-hero h1{
  font-family:"Playfair Display", serif;
  font-size:48px;
  color:#3a2f27;
  margin-bottom:14px;
  letter-spacing:0.5px;
}

.inner-hero p{
  color:var(--tbc-muted);
  font-size:17px;
}
/* ===== POLAROID GRID ===== */

.polaroid-section{
  padding:80px 24px 120px;
  background:#fff;
}

.polaroid-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:44px; /* slightly more breathing */
}

/* Card */

.polaroid-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  padding:16px 16px 22px;
  border-radius:12px;
  box-shadow:
    0 20px 45px rgba(0,0,0,0.08),
    0 2px 6px rgba(0,0,0,0.04);
  transition:all .35s ease;
  border:1px solid rgba(0,0,0,0.05);
  position:relative;
  overflow:hidden;
}

/* subtle paper inner edge */
.polaroid-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
  pointer-events:none;
}

.polaroid-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 32px 70px rgba(0,0,0,0.14),
    0 6px 18px rgba(0,0,0,0.08);
}

.polaroid-img{
  width:100%;
  height:240px;
  background:linear-gradient(135deg,#e8ded3,#d9cbb8);
  border-radius:8px;
  margin-bottom:16px;
  overflow:hidden;
  position:relative;
}

/* luxury zoom effect */
.polaroid-img::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#e8ded3,#d9cbb8);
  transition:transform .6s ease;
}

.polaroid-card:hover .polaroid-img::before{
  padding:24px 24px 26px;
  transform:scale(1.06);
}
/* Caption */

.polaroid-caption h4{
  font-family:"Playfair Display", serif;
  color:#3a2f27;
  margin-bottom:6px;
  font-size:20px;
  letter-spacing:0.2px;
}

.polaroid-caption p{
  font-size:13px;
  color:var(--tbc-muted);
  letter-spacing:0.3px;
}
/* Mobile */

@media(max-width:768px){
  .polaroid-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
}
/* ===== SERVICES PAGE ===== */

.services-page{
  padding:80px 24px 120px;
  background:#fff;
}

.services-inner{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}
.service-icon{
  width:56px;
  height:56px;
  border-radius:14px;
  background:linear-gradient(135deg,#f3ebe3,#e6d7c6);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:18px;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
  flex-shrink:0;
}

.service-card{
  background:var(--tbc-cream-soft);
  padding:32px;
  border-radius:20px;
  transition:all .25s ease;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.service-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.service-card h3{
  font-family:"Playfair Display", serif;
  color:#3a2f27;
  margin-bottom:10px;
}

.service-card p{
  color:var(--tbc-muted);
  font-size:15px;
  line-height:1.6;
}

/* ===== ABOUT STORY ===== */

.about-story{
  position:relative;
  padding: 120px 0 100px;
}

.about-story::after{
  content:"";
  position:absolute;
  bottom:-1px;
  left:50%;
  transform:translateX(-50%);
  width:120px;
  height:2px;
  background:#d6c7b8;
  border-radius:2px;
}

.about-inner{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
}

.about-text h2{
  font-family:"Playfair Display", serif;
  color:#3a2f27;
  font-size:38px;
  line-height:1.2;
  margin-bottom:22px;
}

.about-text p{
  color:var(--tbc-muted);
  line-height:1.7;
  margin-bottom:14px;
}

.about-image{
  background:#e6d8c7;
  border-radius:28px;
  height:420px;
  position:relative;
  overflow:hidden;
}
.about-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    135deg,
    rgba(0,0,0,0.04),
    rgba(0,0,0,0)
  );
}
/* ===== FOUNDER SECTION ===== */

.founder-section{
  padding:90px 24px;
  background:#fff;
}

.founder-inner{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.founder-placeholder{
  width:100%;
  height:340px;
  border-radius:16px;
  background:linear-gradient(135deg,#e8ded3,#d9cbb8);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.founder-content h2{
  font-family:"Playfair Display", serif;
  color:#3a2f27;
  margin-bottom:16px;
}

.founder-content p{
  color:var(--tbc-muted);
  line-height:1.7;
  margin-bottom:14px;
}

.founder-signoff{
  margin-top:18px;
  color:#3a2f27;
}
/* ===== TESTIMONIALS ===== */

.testimonials{
  padding:90px 24px;
  background:var(--tbc-cream-soft);
}

.testimonials-inner{
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.testimonials-inner h2{
  font-family:"Playfair Display", serif;
  color:#3a2f27;
  margin-bottom:40px;
}
.testimonials-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:28px;
margin-top:20px;
}
.testimonial-card{
background:#f3f1ed;
padding:30px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,0.04);
transition:transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover{
transform:translateY(-4px);
box-shadow:0 16px 30px rgba(0,0,0,0.08);
}
.testimonial-card p{
color:var(--tbc-muted);
margin-bottom:12px;
line-height:1.7;
font-style:italic;
}
.testimonial-card span{
font-size:14px;
color:#6e5f52;
font-weight:500;
}
/* ===== WHY TBC ===== */

.why-tbc{
  padding:110px 24px;
  background:linear-gradient(
    to bottom,
    #f5efe8 0%,
    #efe6dc 100%
  );
}

.why-inner{
max-width:1100px;
margin:auto;
padding:80px 24px;
text-align:center;
}

.why-inner h2{
  font-family:"Playfair Display", serif;
  color:#3a2f27;
  font-size:34px;
  margin-bottom:50px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:28px;
margin-top:40px;
}

.why-card{
background:#f3f1ed;
padding:28px;
border-radius:18px;
box-shadow:0 8px 22px rgba(0,0,0,0.05);
transition:transform .3s ease, box-shadow .3s ease;
}

.why-card:hover{
transform:translateY(-4px);
box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.why-card h3{
font-family:"Playfair Display", serif;
font-size:18px;
margin-bottom:8px;
color:#3a2f27;
}

.why-card p{
color:var(--tbc-muted);
font-size:14px;
line-height:1.6;
}
/* CTA SECTION */

.cta-section{
padding:120px 8%;
background:#f8f4ec;
text-align:center;
}

.cta-inner{
max-width:700px;
margin:auto;
}

.cta-section h2{
font-family:'Playfair Display', serif;
font-size:32px;
margin-bottom:30px;
color:#3b2d23;
}

.cta-btn{
background:#8b6a4e;
color:white;
border:none;
padding:16px 34px;
border-radius:40px;
font-size:15px;
cursor:pointer;
transition:all .3s ease;
}

.cta-btn:hover{
background:#6f533c;
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.12);
}


/* ===== MOBILE ===== */

@media(max-width:768px){

  .about-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .why-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:768px){
  .services-inner{
    grid-template-columns:1fr;
  }
}
/* Subtle warmth overlay */

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(rgba(0,0,0,0.015) 1px, transparent 1px);
  background-size:3px 3px;
  opacity:.4;
  z-index:0;
}

/* =========================
   PAGE TRANSITION
========================= */

body {
  opacity: 0;
  animation: pageFadeIn 0.6s ease forwards;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* CONTACT PAGE */

.contact-section{
padding:100px 8%;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
max-width:1100px;
margin:auto;
}

.contact-details h2{
margin-bottom:20px;
}

.contact-details a{
  color: #8B6A4E;
  text-decoration: none;
}

.contact-details a:hover {
  color: #6E523C;
}

.contact-item{
margin-top:18px;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #e3d7c9;
border-radius:10px;
font-family:inherit;
}

.contact-form button{
padding:14px 28px;
background:#8b6a4e;
color:white;
border:none;
border-radius:40px;
cursor:pointer;
}



/* MAP SECTION */

.map-section {
  padding: 100px 8% 40px;
  background: #f8f4ec;
  text-align: center;
}

.map-inner {
  max-width: 900px;
  margin: auto;
}

/* Map heading */
.map-heading {
  margin-bottom: 40px;
}

.map-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #3e2a1d;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}

.map-heading-rule {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #8b6a4e, #c4a882);
  border-radius: 2px;
  margin: 0 auto 18px;
}

.map-heading p {
  font-size: 16px;
  color: #7a6f66;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Map wrapper & SVG */
.tbc-map-wrapper {
  position: relative;
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.tbc-india-map {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.09));
}

/* States — richer colour for better visibility on cream background */
.india-state {
  fill: #c9b49a;
  stroke: #8b6a4e;
  stroke-width: 0.6;
  transition: fill 0.2s ease;
}

.india-state:hover {
  fill: #b8a08a;
}

/* City pins */
.city-pin {
  cursor: pointer;
}

.pin-pulse {
  animation: mapPulse 2.5s ease-in-out infinite;
}
.pin-pulse-2 { animation-delay: 0.5s; }
.pin-pulse-3 { animation-delay: 1.0s; }
.pin-pulse-4 { animation-delay: 1.5s; }
.pin-pulse-5 { animation-delay: 2.0s; }

@keyframes mapPulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: .05; }
}

.pin-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  fill: #2b1f17;
  pointer-events: none;
}

.hq-label {
  font-size: 12px;
  font-weight: 700;
  fill: #3e1f0e;
}

.pin-sublabel {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 500;
  fill: #7a5a40;
  pointer-events: none;
}

/* Tooltip */
.map-tooltip {
  position: absolute;
  background: #3a2f27;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 7px 13px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 10;
  transform: translateX(-50%);
}

.map-tooltip.show {
  opacity: 1;
}

/* Legacy iframe rule */
.map-section iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 12px;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .map-heading h2  { font-size: 30px; }
  .tbc-india-map   { max-width: 340px; }
  .pin-label       { font-size: 9px; }
  .hq-label        { font-size: 10px; }
  .pin-sublabel    { font-size: 8px; }
}



/* SERVICE AREA */

.service-area{
padding:100px 8%;
text-align:center;
}

.service-area-inner{
max-width:900px;
margin:auto;
}

.service-area-desc{
margin-top:15px;
color:#6b5a4c;
}

.cities{
margin-top:30px;
display:flex;
justify-content:center;
gap:12px;
flex-wrap:wrap;
}

.cities span{
padding:10px 22px;
background:#e9ddd1;
border-radius:30px;
font-size:14px;
}

.consult-note{
margin-top:20px;
font-size:14px;
color:#8b6a4e;
}
/* CTA SECTION */

.cta-section{
padding:120px 8%;
background:#f8f4ec;
text-align:center;
}

.cta-inner{
max-width:700px;
margin:auto;
}

.cta-section h2{
font-family:'Playfair Display', serif;
font-size:32px;
margin-bottom:30px;
color:#3b2d23;
}

.cta-btn{
background:#8b6a4e;
color:white;
border:none;
padding:16px 34px;
border-radius:40px;
font-size:15px;
cursor:pointer;
transition:all .3s ease;
}

.cta-btn:hover{
background:#6f533c;
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(0,0,0,0.12);
}
/* ===== FOOTER ===== */

.site-footer {
  background: #f4ede6;
  padding: 60px 8% 35px 8%;
  margin-top: 90px;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0,0,0,0.08),
    transparent
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 60px;
}
.footer-brand {
  flex: 1;
  min-width: 260px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
}

.footer-brand p{
  margin-top:8px;
  font-size: 14px;
  color: #7b5d49;
  line-height: 1.6;
}

.footer-links,
.footer-contact {
  flex: 1;
  min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #3e2a1d;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: #7b5d49;
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #8b6a4e;
  transform: translateX(3px);
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #7b5d49;
}

.footer-contact a {
  font-size: 14px;
  margin-bottom: 10px;
  color: #7b5d49;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  padding-top: 25px;
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  font-size: 13px;
  color: #a58e7c;
}
@media (max-width: 768px) {

.footer-container{
  grid-template-columns:1fr;
  gap:35px;
}

}
/* =========================
   PREMIUM SCROLL REVEAL
========================= */

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* automatic stagger */

.reveal-group > *{
  opacity:0;
  transform:translateY(40px);
}

.reveal-group.active > *{
  opacity:1;
  transform:translateY(0);
}

.reveal-group.active > *:nth-child(1){transition:.6s ease .05s}
.reveal-group.active > *:nth-child(2){transition:.6s ease .15s}
.reveal-group.active > *:nth-child(3){transition:.6s ease .25s}
.reveal-group.active > *:nth-child(4){transition:.6s ease .35s}
.reveal-group.active > *:nth-child(5){transition:.6s ease .45s}
/* LOADING SCREEN */

#loader{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:var(--tbc-muted);
display:flex;
justify-content:center;
align-items:center;
z-index:9999;
transition:opacity 1s ease;
}

#loader img{
width:320px;
max-width:75%;
animation:logoFade 2s ease;
}

@keyframes logoFade{
0%{opacity:0; transform:scale(0.9);}
100%{opacity:1; transform:scale(1);}
}

.loader-hidden{
opacity:0;
pointer-events:none;
}
body{
opacity:0;
transition:opacity 0.8s ease;
}

body.page-loaded{
opacity:1;
}
/* ===== TABLET BREAKPOINT (iPad Mini, iPad Air, iPad Pro portrait, large Android tablets) ===== */
@media (min-width: 769px) and (max-width: 1024px) {

  /* --- NAVBAR --- */
  .nav-container {
    padding: 18px 28px;
  }

  .logo {
    font-size: 17px;
  }

  .nav-links a {
    margin-left: 18px;
    font-size: 14px;
  }

  .tbc-nav-cta {
    padding: 9px 14px;
    font-size: 13px;
  }

  /* --- HERO --- */
  .hero {
    min-height: 80vh;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(36px, 6vw, 52px);
  }

  /* --- PROCESS GRID --- */
  .process-section {
    padding: 90px 32px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  /* --- INSTAGRAM GRID --- */
  .instagram-section {
    padding: 70px 24px;
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .instagram-grid img {
    height: 150px;
  }

  /* --- POPUP --- */
  .popup-box {
    width: 88%;
  }

  .popup-left {
    padding: 50px 36px;
  }

  .popup-right {
    padding: 40px 32px;
  }

  /* --- FOOTER --- */
  .footer-container {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
  }

  /* --- ABOUT PAGE --- */
  .about-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  /* --- FOUNDER SECTION --- */
  .founder-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 32px;
  }

  /* --- TESTIMONIALS GRID --- */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --- WHY TBC --- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* --- SERVICES PAGE --- */
  .services-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px;
  }

  /* --- CONTACT PAGE --- */
  .contact-container {
    gap: 40px;
    padding: 0 32px;
  }

  /* --- INNER HERO --- */
  .inner-hero {
    padding: 140px 32px 70px;
  }

  /* --- GENERAL CONTAINER --- */
  .section-container {
    padding: 0 32px;
  }

  .container {
    padding: 0 32px;
  }
}

/* ===== HAMBURGER BUTTON ===== */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--tbc-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== COMPREHENSIVE MOBILE FIXES ===== */
@media (max-width: 768px) {

  /* --- NAVBAR --- */
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 244, 236, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 1050;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 20px;
    color: var(--tbc-text);
  }

  .tbc-nav-cta {
    padding: 14px 32px;
    font-size: 16px;
  }

  .nav-container {
    padding: 16px 20px;
  }

  .logo {
    font-size: 16px;
  }

  /* --- HERO --- */
  .hero {
    min-height: 85vh;
    padding-top: 90px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero p {
    font-size: 15px;
  }

  .hero-brand {
    font-size: 11px;
    letter-spacing: 2px;
  }

  /* --- PROCESS GRID --- */
  .process-section {
    padding: 70px 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  /* --- TESTIMONIAL STRIP --- */
  .testimonial-strip {
    padding: 60px 24px;
  }

  .testimonial-strip blockquote {
    font-size: 18px;
  }

  /* --- INSTAGRAM SECTION --- */
  .instagram-section {
    padding: 60px 0 40px;
  }

  .instagram-container {
    padding: 0 20px;
  }

  .instagram-header h2 {
    font-size: 26px;
  }

  /* --- POPUP --- */
  .popup-box {
    grid-template-columns: 1fr;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  .popup-left {
    padding: 36px 28px 24px;
  }

  .popup-left h3 {
    font-size: 22px;
  }

  .popup-materials {
    display: none;
  }

  .popup-right {
    padding: 24px 28px 36px;
  }

  .popup-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10000;
    background: rgba(255,255,255,0.9);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    font-size: 16px;
  }

  /* --- FLOATING CTA --- */
  .floating-btn span {
    display: none;
  }

  .floating-consult {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 22px;
  }

  /* --- FOOTER --- */
  .site-footer {
    padding: 50px 6% 30px;
    margin-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* --- CONTACT PAGE --- */
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-section {
    padding: 80px 6%;
  }

  /* --- ABOUT PAGE --- */
  .about-story {
    padding: 80px 20px 60px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-image {
    height: 280px;
  }

  /* --- FOUNDER SECTION --- */
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-placeholder {
    height: 260px;
  }

  /* --- TESTIMONIALS GRID --- */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* --- WHY TBC --- */
  .why-tbc {
    padding: 70px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  /* --- INNER HERO (other pages) --- */
  .inner-hero {
    padding: 120px 20px 60px;
  }

  .inner-hero h1 {
    font-size: 32px;
  }

  /* --- SERVICES PAGE --- */
  .services-inner {
    grid-template-columns: 1fr;
  }

  .services-page {
    padding: 60px 20px 80px;
  }

  /* --- GENERAL CONTAINER PADDING --- */
  .container {
    padding: 0 20px;
  }

  .section-container {
    padding: 0 20px;
  }
}
/* ===== PRIVACY POLICY MODAL ===== */
.privacy-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.privacy-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.privacy-modal-box {
  background: #fff;
  border-radius: 20px;
  width: 780px;
  max-width: 92%;
  max-height: 82vh;
  overflow-y: auto;
  padding: 52px 48px;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.2);
}
.privacy-modal-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #3a2f27;
  margin-bottom: 6px;
}
.privacy-modal-box .privacy-date {
  font-size: 13px;
  color: #8a6f59;
  margin-bottom: 32px;
  display: block;
}
.privacy-modal-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #3a2f27;
  margin: 28px 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e4d7c8;
}
.privacy-modal-box p,
.privacy-modal-box li {
  font-size: 14px;
  color: #5f5348;
  line-height: 1.8;
  margin-bottom: 10px;
}
.privacy-modal-box ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.privacy-modal-box a {
  color: #8b6a4e;
  text-decoration: none;
}
.privacy-modal-box a:hover {
  text-decoration: underline;
}
.privacy-modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: #f7f1ea;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: #3a2f27;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .privacy-modal-box {
    padding: 32px 20px;
    max-height: 88vh;
  }
}
/* ================= LOGO LOCKUP ================= */

/* Shared lockup layout */
.logo-link,
.tbc-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.tbc-lockup {
  display: flex;
}

/* The SVG monogram mark */
.logo-mark {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

/* Thin vertical divider between mark and text */
.logo-divider {
  display: block;
  width: 1px;
  height: 30px;
  background: #c9b89e;
  flex-shrink: 0;
}

/* Text block: name + tagline stacked */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #2b2b2b;
  white-space: nowrap;
  line-height: 1;
}

.logo-tagline {
  display: block;
  font-family: Georgia, serif;
  font-size: 8px;
  letter-spacing: 0.24em;
  color: #6b5040;
  white-space: nowrap;
  line-height: 1;
  margin-top: 5px;
}

/* Light variant — popup (brown bg) */
.logo-text--light .logo-name  { color: #f4f1ed; }
.logo-text--light .logo-tagline { color: rgba(244,241,237,0.75); }
.popup-brand .logo-divider    { background: rgba(255,255,255,0.3); }

/* Dark variant — footer (cream bg) */
.logo-text--dark .logo-name   { color: #3a2f27; }
.logo-text--dark .logo-tagline { color: #795a3c; }

/* Popup brand block layout */
.popup-brand.tbc-lockup {
  margin-bottom: 6px;
}

/* Footer brand block layout */
.footer-brand.tbc-lockup {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer-brand.tbc-lockup > .logo-text--dark {
  margin-top: 0;
}

/* Inner row for mark + divider + text in footer */
.footer-brand.tbc-lockup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand.tbc-lockup .logo-mark,
.footer-brand.tbc-lockup .logo-divider,
.footer-brand.tbc-lockup .logo-text--dark {
  /* Lay out horizontally inside footer */
}

/* Override: footer inner lockup is a row */
.footer-brand.tbc-lockup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.footer-brand.tbc-lockup p {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .logo-mark    { height: 40px; }
  .logo-name    { font-size: 11px; }
  .logo-tagline { font-size: 7px; }
  .logo-divider { height: 26px; }
}
