/* ==========================================================================
   GTT Ventures India — Site Stylesheet
   ========================================================================== */
:root{
  --navy:#0b1b2b;
  --navy-mid:#132a40;
  --gold:#c9a84c;
  --gold-light:#e2c777;
  --cream:#f7f2e7;
  --white:#ffffff;
  --text-muted:#5c6570;
  --shadow:0 20px 50px rgba(11,27,43,0.10);
}
*{box-sizing:border-box;}
body{
  margin:0; padding:0;
  font-family:'Segoe UI', Arial, Helvetica, sans-serif;
  color:#26313d;
  background:var(--white);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{font-family:Georgia,'Playfair Display',serif; margin:0; line-height:1.25;}
p{margin:0 0 14px; line-height:1.8; color:var(--text-muted); font-size:15px;}
a{text-decoration:none; color:inherit;}
img{max-width:100%; display:block;}
ul{list-style:none; margin:0; padding:0;}

/* ---------- NAVBAR ---------- */
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 6%; background:var(--navy); position:sticky; top:0; z-index:200;
  box-shadow:0 2px 20px rgba(0,0,0,0.15);
}
.logo{display:flex; align-items:center; gap:12px;}
.logo-icon{
  width:46px; height:46px; border-radius:10px;
  background:linear-gradient(135deg,var(--gold),#a5822f);
  color:var(--navy); display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:14px; letter-spacing:1px;
}
.logo-text{display:flex; flex-direction:column;}
.logo-name{color:var(--white); font-weight:700; font-size:16px; font-family:Georgia,serif;}
.logo-tagline{color:var(--gold); font-size:10px; letter-spacing:1.5px; text-transform:uppercase;}
.nav-links{display:flex; align-items:center; gap:34px;}
.nav-links a{color:rgba(255,255,255,0.75); font-size:14px; font-weight:500; transition:.2s; padding:6px 0;}
.nav-links a:hover, .nav-links a.active{color:var(--gold);}
.nav-links a.nav-cta{
  background:var(--gold); color:var(--navy)!important; padding:11px 24px; border-radius:100px; font-weight:600;
}
.nav-links a.nav-cta:hover{background:var(--gold-light);}
.hamburger{display:none; flex-direction:column; gap:5px; cursor:pointer;}
.hamburger span{width:26px; height:2px; background:var(--white); display:block;}

/* ---------- HOME HERO ---------- */
.hero{position:relative; min-height:92vh; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center; overflow:hidden; padding:60px 6% 0;}
.hero-bg{
  position:absolute; inset:0;
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 60%,#1c3a57 100%);
  background-size:cover;
  background-position:center;
}
.hero-overlay{position:absolute; inset:0; background:radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.15), transparent 60%);}
.hero-content{position:relative; z-index:2; max-width:820px;}
.hero-badge{
  display:inline-block; background:rgba(201,168,76,0.12); border:1px solid rgba(201,168,76,0.35);
  color:var(--gold); font-size:12px; padding:9px 20px; border-radius:100px; margin-bottom:26px; letter-spacing:.5px;
}
.hero-content h1{color:var(--white); font-size:52px; font-weight:800; margin-bottom:22px;}
.hero-content h1 span{color:var(--gold);}
.hero-content p{color:rgba(255,255,255,0.65); font-size:17px; max-width:640px; margin:0 auto 34px;}
.hero-btns{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}
.btn-primary, .btn-secondary, .btn-dark{
  display:inline-flex; align-items:center; gap:8px; padding:15px 30px; border-radius:100px;
  font-size:14px; font-weight:600; transition:.2s; cursor:pointer;
}
.btn-primary{background:var(--gold); color:var(--navy);}
.btn-primary:hover{background:var(--gold-light); transform:translateY(-2px);}
.btn-secondary{background:transparent; color:var(--white); border:1px solid rgba(255,255,255,0.3);}
.btn-secondary:hover{border-color:var(--gold); color:var(--gold);}
.btn-dark{background:var(--navy); color:var(--white);}
.btn-dark:hover{background:#000;}
.btn-block{width:100%; justify-content:center; border:none;}

.hero-stats{
  position:relative; z-index:2; margin-top:60px; display:flex; flex-wrap:wrap; justify-content:center;
  background:rgba(255,255,255,0.04); border:1px solid rgba(201,168,76,0.15); border-radius:20px 20px 0 0;
  width:100%; max-width:1100px;
}
.stat-item{flex:1; min-width:150px; text-align:center; padding:34px 20px; border-right:1px solid rgba(201,168,76,0.15);}
.stat-item:last-child{border-right:none;}
.stat-num{font-family:Georgia,serif; font-size:38px; font-weight:800; color:var(--gold);}
.stat-label{font-size:11px; color:rgba(255,255,255,0.55); letter-spacing:1.5px; text-transform:uppercase; margin-top:6px;}

/* ---------- SECTION GENERICS ---------- */
.section-label{
  display:inline-block; font-size:12px; letter-spacing:2px; text-transform:uppercase; color:var(--gold);
  font-weight:700; margin-bottom:14px;
}
.section-title{font-size:34px; font-weight:800; color:var(--navy); margin-bottom:16px;}
.section-title span{color:var(--gold);}
.section-subtitle{font-size:16px; color:var(--text-muted); max-width:640px;}
.gold-divider{width:60px; height:3px; background:var(--gold); margin:18px 0 26px; border-radius:3px;}

.cms-section{padding:30px 8%;}
.cms-inner{max-width:1280px; margin:0 auto;}
.cms-inner > .section-label, .cms-inner > .section-title, .cms-inner > .section-subtitle{text-align:center; display:block;}
.cms-inner > .section-label{text-align:center;}
.cms-section .section-title, .cms-section .section-subtitle, .cms-section .section-label{text-align:center; margin-left:auto; margin-right:auto;}

/* ---------- HOME: SERVICES GRID ---------- */
.services-section{padding:100px 8% 60px;}
.services-grid, .cards-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:28px; margin-top:56px;
}
.service-card, .cms-card{
  background:var(--white); border-radius:18px; padding:40px 32px; box-shadow:var(--shadow);
  border-top:4px solid var(--gold); transition:.25s; display:block;
}
.service-card:hover, .cms-card:hover{transform:translateY(-8px);}
.service-icon, .cms-card-icon{
  width:60px; height:60px; border-radius:14px; background:var(--navy); color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:26px; margin-bottom:22px;
}
.service-card h3, .cms-card h3{font-size:19px; color:var(--navy); margin-bottom:12px;}
.cms-card-subtitle{font-size:12px; color:var(--gold); font-weight:600; margin-bottom:8px; text-transform:uppercase; letter-spacing:1px;}
.service-link{display:inline-block; margin-top:8px; color:var(--gold); font-weight:600; font-size:13px;}
.cms-card-imgwrap{position:relative; margin:-40px -32px 24px; border-radius:18px 18px 0 0; overflow:hidden;}
.cms-card-img{width:100%; height:200px; object-fit:cover;}
.cms-card-badge{position:absolute; top:14px; left:14px; background:var(--white); padding:6px 14px; border-radius:100px; font-size:12px; font-weight:700; color:var(--navy);}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{position:relative; min-height:46vh; display:flex; align-items:flex-end; overflow:hidden;}
.page-hero-bg{position:absolute; inset:0; background-size:cover; background-position:center;}
.page-hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(11,27,43,0.55), rgba(11,27,43,0.92));}
.page-hero-content{position:relative; z-index:2; padding:60px 8% 56px; max-width:900px;}
.breadcrumb{color:rgba(255,255,255,0.55); font-size:13px; margin-bottom:16px;}
.breadcrumb a{color:var(--gold);}
.breadcrumb span{margin:0 6px;}
.page-hero-content h1{color:var(--white); font-size:42px; font-weight:800; margin-bottom:14px;}
.page-hero-content p{color:rgba(255,255,255,0.7); font-size:16px; max-width:640px;}

/* ---------- TEXT + IMAGE ---------- */
.text-image-grid{display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; text-align:left;}
.text-image-grid.img-first{grid-template-columns:1fr 1fr;}
.text-image-copy p{font-size:15px; line-height:1.9;}
.text-image-img{width:100%; height:auto; object-fit:cover; border-radius:20px;}
.cms-section .text-image-copy .section-title, .cms-section .text-image-copy .section-label, .cms-section .text-image-copy .section-subtitle{text-align:left; margin-left:0;}
.mini-stats{display:flex; gap:40px; margin:10px 0 30px;}
.mini-stat-num{font-family:Georgia,serif; font-size:38px; font-weight:800; color:var(--gold);}
.mini-stat-label{font-size:12px; color:var(--text-muted); letter-spacing:1px; text-transform:uppercase;}

/* ---------- STATS BAR ---------- */
.stats-bar{background:var(--navy); display:flex; flex-wrap:wrap; justify-content:center; margin:0 -8%; padding:0;}
.cms-section .stats-bar{margin-top:20px;}
.stats-bar-item{text-align:center; padding:30px 50px; border-right:1px solid rgba(201,168,76,0.2);}
.stats-bar-item:last-child{border-right:none;}
.stats-bar-num{font-family:Georgia,serif; font-size:48px; font-weight:800; color:var(--gold);}
.stats-bar-label{font-size:11px; color:rgba(255,255,255,0.5); letter-spacing:2px; text-transform:uppercase; margin-top:8px;}

/* ---------- LEADERSHIP ---------- */
.leadership-section{padding:100px 8%; background:var(--navy);}
.leadership-section .section-title{color:var(--white);}
.leadership-section .section-subtitle{color:rgba(255,255,255,0.55);}
.leaders-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr)); gap:36px; margin-top:56px;}
.leader-card{background:rgba(255,255,255,0.04); border:1px solid rgba(201,168,76,0.15); border-radius:20px; overflow:hidden; display:flex; flex-direction:column;}
.leader-img{width:100%; height:260px; object-fit:cover;}
.leader-info{padding:28px;}
.leader-name{color:var(--white); font-size:19px; font-weight:700; font-family:Georgia,serif;}
.leader-role{color:var(--gold); font-size:13px; margin:6px 0 16px;}
.leader-bio{color:rgba(255,255,255,0.6); font-size:14px; line-height:1.8;}
.leader-tags{margin-top:20px; display:flex; gap:12px; flex-wrap:wrap;}
.leader-tags span{font-size:11px; padding:5px 14px; border:1px solid rgba(201,168,76,0.3); border-radius:100px; color:var(--gold);}

/* ---------- WHY / VALUES ---------- */
.why-card{background:var(--white); border-radius:16px; padding:36px; box-shadow:var(--shadow); text-align:left;}
.why-icon, .global-card .icon{font-size:36px; display:block; margin-bottom:16px;}
.why-card h3{font-family:Georgia,serif; font-size:18px; color:var(--navy); margin-bottom:12px;}
.global-card{background:rgba(255,255,255,0.04); border:1px solid rgba(201,168,76,0.15); border-radius:16px; padding:30px; text-align:center;}
.global-card h3{color:var(--white); font-size:17px; margin-bottom:10px;}
.global-card p{color:rgba(255,255,255,0.55); font-size:13px;}

/* ---------- PROPERTY GRID ---------- */
.property-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr)); gap:28px; margin-top:56px;}
.property-card{background:var(--white); border-radius:18px; overflow:hidden; box-shadow:var(--shadow);}
.prop-img-wrap{position:relative;}
.property-img{width:100%; height:220px; object-fit:cover;}
.prop-badge{position:absolute; top:16px; left:16px; background:var(--white); padding:6px 16px; border-radius:100px; font-size:12px; font-weight:700; color:var(--navy);}
.property-info{padding:26px;}
.property-location{font-size:12px; color:var(--gold); font-weight:600; margin-bottom:10px;}
.property-info h3{font-size:18px; color:var(--navy); margin-bottom:10px;}
.property-tags{display:flex; gap:8px; flex-wrap:wrap; margin-top:16px;}
.tag{font-size:11px; padding:5px 12px; background:var(--cream); border-radius:100px; color:var(--navy); font-weight:600;}

/* ---------- CTA BAND ---------- */
.cta-band{background:linear-gradient(135deg,var(--gold),#a5822f); padding:60px 8%; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px;}
.cta-band h2{font-size:26px; color:var(--navy); max-width:600px;}
.cta-band-inner{text-align:center; padding:60px 8%; background:linear-gradient(135deg,var(--gold),#a5822f); margin:0 -8%;}

/* ---------- TESTIMONIALS ---------- */
.testimonial-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px; margin-top:56px;}
.testimonial-card{background:var(--white); border-radius:18px; padding:32px; box-shadow:var(--shadow); border-left:4px solid var(--gold);}
.testimonial-quote{font-size:15px; color:var(--text-muted); font-style:italic; line-height:1.8; margin-bottom:22px;}
.testimonial-person{display:flex; align-items:center; gap:14px;}
.testimonial-avatar{width:48px; height:48px; border-radius:50%; object-fit:cover;}
.testimonial-name{font-weight:700; color:var(--navy); font-size:14px;}
.testimonial-role{font-size:12px; color:var(--gold);}

/* ---------- CONTACT ---------- */
.contact-section{padding:100px 8% 60px; background:var(--navy);}
.contact-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:60px; max-width:1200px; margin:56px auto 0; text-align:left;}
.contact-form{background:rgba(255,255,255,0.04); border:1px solid rgba(201,168,76,0.15); border-radius:20px; padding:40px;}
.form-heading{font-family:Georgia,serif; font-size:22px; color:var(--white); margin-bottom:28px;}
.form-success{background:rgba(76,201,120,0.12); border:1px solid rgba(76,201,120,0.4); color:#8be3a4; padding:14px 18px; border-radius:10px; margin-bottom:20px; font-size:14px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.form-group{margin-bottom:18px;}
.form-group label{display:block; font-size:12px; color:rgba(255,255,255,0.6); margin-bottom:8px; letter-spacing:.5px; text-transform:uppercase;}
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 16px; background:rgba(255,255,255,0.06); border:1px solid rgba(201,168,76,0.2);
  border-radius:10px; color:var(--white); font-size:14px; font-family:inherit;
}
.form-group textarea{min-height:110px; resize:vertical;}
.form-group input::placeholder, .form-group textarea::placeholder{color:rgba(255,255,255,0.35);}
.contact-info h3{color:var(--white); font-size:22px; font-family:Georgia,serif; margin-bottom:16px;}
.contact-info > p{color:rgba(255,255,255,0.55); margin-bottom:30px;}
.contact-detail{display:flex; gap:16px; margin-bottom:24px; align-items:flex-start;}
.detail-icon{font-size:20px; width:44px; height:44px; background:rgba(201,168,76,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.detail-label{font-size:11px; color:rgba(255,255,255,0.4); letter-spacing:1.5px; text-transform:uppercase; margin-bottom:4px;}
.detail-value{color:var(--white); font-size:14px;}
.offices-box{margin-top:36px; padding:28px; background:rgba(201,168,76,0.08); border:1px solid rgba(201,168,76,0.2); border-radius:16px; display:none;}
.offices-title{font-size:12px; color:var(--gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:12px; font-weight:600;}
.offices-list{display:flex; flex-wrap:wrap; gap:10px;}
.offices-list span{font-size:13px; color:rgba(255,255,255,0.6);}
.map-wrap{border-radius:16px; overflow:hidden; height:350px; max-width:1280px; margin:0 auto;}

/* ---------- FOOTER ---------- */
footer{background:#081420; padding:70px 8% 30px;}
.footer-grid{display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:50px; max-width:1280px; margin:0 auto;}
.footer-brand p{color:rgba(255,255,255,0.4); font-size:13px; margin-top:16px;}
.footer-col h4{color:var(--white); font-size:14px; margin-bottom:20px; letter-spacing:1px;}
.footer-col ul li{margin-bottom:12px;}
.footer-col ul li a{color:rgba(255,255,255,0.45); font-size:13px;}
.footer-col ul li a:hover{color:var(--gold);}
.footer-bottom{max-width:1280px; margin:50px auto 0; padding-top:26px; border-top:1px solid rgba(255,255,255,0.06); display:flex; justify-content:space-between; align-items:center;}
.footer-bottom p{color:rgba(255,255,255,0.35); font-size:12px; margin:0;}

/* ---------- REVEAL ANIMATION ---------- */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1; transform:translateY(0);}

/* ---------- RESPONSIVE ---------- */
@media (max-width:900px){
  .nav-links{position:fixed; top:78px; left:0; right:0; background:var(--navy); flex-direction:column; padding:20px; gap:0; transform:translateY(-120%); transition:.3s; z-index:150;}
  .nav-links.open{transform:translateY(0);}
  .nav-links li{width:100%; text-align:center; padding:12px 0; border-bottom:1px solid rgba(255,255,255,0.06);}
  .hamburger{display:flex;}
  .text-image-grid, .contact-grid, footer .footer-grid{grid-template-columns:1fr!important;}
  .hero-content h1{font-size:34px;}
  .section-title{font-size:26px;}
  .form-row{grid-template-columns:1fr;}
}
