/* =========================================================
   GATI KWE JAIPUR — LANDING PAGE STYLES
   Table of contents:
   1. Variables
   2. Global
   3. Navbar
   4. Hero
   5. Components (buttons, cards)
   6. Sections
   7. Forms
   8. Footer
   9. Responsive
========================================================= */

/* ---------------------------------------------------------
   1. VARIABLES
--------------------------------------------------------- */
:root{
  --navy: #0b2340;
  --navy-dark: #071729;
  --navy-light: #12365f;
  --orange: #e8720c;
  --orange-dark: #cf6206;
  --bg-off-white: #f7f7f5;
  --bg-white: #ffffff;
  --text-charcoal: #2b2f33;
  --text-muted: #5b6570;
  --border-subtle: #e3e3e0;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 4px 18px rgba(11, 35, 64, 0.07);
  --shadow-hover: 0 10px 28px rgba(11, 35, 64, 0.12);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------------------------------------------------------
   2. GLOBAL
--------------------------------------------------------- */
*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  font-family: var(--font-main);
  color: var(--text-charcoal);
  background-color: var(--bg-off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}

h1, h2, h3, h4{
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

h2{ font-size: 2rem; }
h3{ font-size: 1.25rem; }

p{ color: var(--text-muted); }

a{ text-decoration: none; }

.eyebrow-label{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.6rem;
}

.section-heading{
  max-width: 680px;
  margin: 0 auto 2.75rem;
}

.section-subtitle{
  font-size: 1.02rem;
  margin-top: 0.6rem;
}

section{
  padding: 4.5rem 0;
}

hr{
  border-color: var(--border-subtle);
  opacity: 1;
}

/* Reveal on scroll */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   3. NAVBAR
--------------------------------------------------------- */
.top-bar{
  background-color: var(--navy-dark);
  color: #cdd6e0;
  font-size: 0.85rem;
  padding: 0.45rem 0;
}
.top-bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar-text{ opacity: 0.85; }
.top-bar-phone{
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}
.top-bar-phone:hover{ color: var(--orange); }
.top-bar-phone i{ color: var(--orange); margin-right: 0.3rem; }

.main-navbar{
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}
.main-navbar.scrolled{
  padding: 0.55rem 0;
  box-shadow: var(--shadow-hover);
}

.brand-text{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-main{
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.brand-sub{
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.nav-links{
  gap: 0.35rem;
}
.nav-links .nav-link{
  color: var(--text-charcoal);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active{
  color: var(--navy);
  background-color: rgba(11, 35, 64, 0.06);
}

.nav-cta{
  margin-left: 0.75rem;
  white-space: nowrap;
}

/* ---------------------------------------------------------
   4. HERO
--------------------------------------------------------- */
.hero-section{
  background-color: var(--navy);
  background-image: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 4rem 0 3.5rem;
  color: #fff;
}
.hero-section .eyebrow-label{ color: #f2a45c; }
.hero-heading{
  color: #ffffff;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.1rem;
}
.hero-subtext{
  color: #cdd6e0;
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 1.75rem;
}
.hero-cta-group{
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.hero-trust-line{
  color: #b6c2d1;
  font-size: 0.92rem;
  margin-bottom: 0;
}
.hero-trust-line i{ color: var(--orange); margin-right: 0.35rem; }

.hero-image-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.12);
}
.hero-image{
  width: 100%;
  height: 100%;
  max-height: 430px;
  object-fit: cover;
  display: block;
}

/* ---------------------------------------------------------
   5. COMPONENTS — BUTTONS
--------------------------------------------------------- */
.btn{
  font-weight: 600;
  border-radius: 8px;
  padding: 0.65rem 1.4rem;
  font-size: 0.98rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.2s ease, color 0.2s ease;
}
.btn:active{ transform: translateY(1px); }

.btn-cta-primary{
  background-color: var(--orange);
  border: 1px solid var(--orange);
  color: #ffffff;
}
.btn-cta-primary:hover{
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
  box-shadow: 0 6px 16px rgba(232, 114, 12, 0.32);
}

.btn-cta-secondary{
  background-color: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #ffffff;
}
.btn-cta-secondary:hover{
  background-color: rgba(255,255,255,0.12);
  border-color: #ffffff;
  color: #fff;
}

/* Secondary used on light backgrounds (location section) needs darker border */
.location-map-placeholder .btn-cta-secondary{
  border-color: var(--navy);
  color: var(--navy);
}
.location-map-placeholder .btn-cta-secondary:hover{
  background-color: var(--navy);
  color: #fff;
}

.btn-cta-outline-light{
  background-color: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
}
.btn-cta-outline-light:hover{
  background-color: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

.btn-outline-copy{
  background-color: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--navy);
  font-size: 0.88rem;
  padding: 0.45rem 0.9rem;
}
.btn-outline-copy:hover{
  background-color: var(--bg-off-white);
  border-color: var(--navy);
}
.btn-outline-copy.copied{
  background-color: #eaf5ea;
  border-color: #4c9c4c;
  color: #2f7a2f;
}

/* ---------------------------------------------------------
   6. SECTIONS
--------------------------------------------------------- */

/* Quick Enquiry Card */
.enquiry-section{
  padding: 0;
  margin-top: -1px;
  position: relative;
  z-index: 5;
}
.enquiry-card{
  background-color: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 2.25rem;
  margin-top: -2.75rem;
  position: relative;
}
.enquiry-heading{
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.enquiry-text{
  margin-bottom: 1rem;
}
.enquiry-phone-link{
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.enquiry-phone-link i{ color: var(--orange); }
.enquiry-phone-link:hover{ color: var(--orange); }

/* Services */
.services-section{ background-color: var(--bg-off-white); }
.service-card{
  background-color: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.9rem 1.6rem;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(11,35,64,0.14);
}
.service-icon{
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: rgba(11, 35, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1.1rem;
}
.service-card h3{ margin-bottom: 0.55rem; font-size: 1.1rem; }
.service-card p{ margin-bottom: 0; font-size: 0.95rem; }

/* Why Choose Us */
.why-us-section{ background-color: var(--bg-white); }
.why-us-image-wrap{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
}
.why-us-image{
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.why-us-heading{ margin-bottom: 1.4rem; }
.why-us-list{
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}
.why-us-list li{
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-charcoal);
  font-size: 1rem;
}
.why-us-list li:last-child{ border-bottom: none; }
.why-us-list li i{
  color: var(--orange);
  font-weight: 700;
  margin-top: 0.2rem;
}

/* Location */
.location-section{ background-color: var(--bg-off-white); }
.location-map-placeholder{
  background-color: var(--bg-white);
  border: 1px dashed var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3.5rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}
.location-map-placeholder i{
  font-size: 2.6rem;
  color: var(--navy);
  opacity: 0.75;
}
.location-map-placeholder p{
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.location-details-card{
  background-color: var(--bg-white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.location-details-card h3{ margin-bottom: 0.9rem; font-size: 1.1rem; }
.location-address{
  color: var(--text-charcoal);
  font-size: 1.02rem;
  line-height: 1.6;
  user-select: all;
  margin-bottom: 1rem;
}

/* Local Trust */
.local-trust-section{
  background-color: var(--navy);
  padding: 3rem 0;
}
.local-trust-section .eyebrow-label{ color: #f2a45c; }
.local-trust-section h2{ color: #fff; margin-bottom: 1rem; }
.local-trust-text{
  color: #cdd6e0;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.02rem;
}

/* FAQ */
.faq-section{ background-color: var(--bg-white); }
.accordion-item{
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.accordion-button{
  font-weight: 600;
  color: var(--navy);
  background-color: var(--bg-white);
  font-size: 1rem;
}
.accordion-button:not(.collapsed){
  color: var(--navy);
  background-color: rgba(11, 35, 64, 0.04);
  box-shadow: none;
}
.accordion-button:focus{
  box-shadow: none;
  border-color: var(--border-subtle);
}
.accordion-body{
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* Final CTA */
.final-cta-section{
  background-color: var(--orange);
  padding: 3.75rem 0;
}
.final-cta-section h2{
  color: #fff;
  margin-bottom: 0.7rem;
}
.final-cta-section p{
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.final-cta-group{
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}
.final-cta-section .btn-cta-primary{
  background-color: var(--navy);
  border-color: var(--navy);
}
.final-cta-section .btn-cta-primary:hover{
  background-color: var(--navy-dark);
  border-color: var(--navy-dark);
}

/* ---------------------------------------------------------
   7. FORMS
--------------------------------------------------------- */
.enquiry-form .form-label{
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.enquiry-form .form-control{
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.96rem;
}
.enquiry-form .form-control:focus{
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 114, 12, 0.15);
}
.enquiry-success{
  margin-top: 1.1rem;
  background-color: #eaf5ea;
  border: 1px solid #bfe0bf;
  color: #2f7a2f;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.enquiry-success i{ margin-right: 0.4rem; }

/* ---------------------------------------------------------
   8. FOOTER
--------------------------------------------------------- */
.site-footer{
  background-color: var(--navy-dark);
  color: #b6c2d1;
  padding: 3.5rem 0 1.75rem;
}
.footer-brand{
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}
.footer-brand span{ color: var(--orange); }
.footer-text{
  color: #9fabb9;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}
.footer-text a{ color: #d3dae3; }
.footer-text a:hover{ color: var(--orange); }
.site-footer h4{
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li{ margin-bottom: 0.55rem; }
.footer-links a{
  color: #b6c2d1;
  font-size: 0.93rem;
}
.footer-links a:hover{ color: var(--orange); }
.site-footer hr{ border-color: rgba(255,255,255,0.12); margin: 2rem 0 1.25rem; }
.footer-copyright{
  font-size: 0.85rem;
  color: #7c8898;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   MOBILE STICKY CTA & FLOATING BUTTON & BACK TO TOP
--------------------------------------------------------- */
.mobile-sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
}
.mobile-sticky-btn{
  flex: 1;
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  background-color: var(--orange);
  color: #fff;
}
.mobile-sticky-btn-outline{
  background-color: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.floating-call-btn{
  position: fixed;
  right: 18px;
  bottom: 82px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 8px 20px rgba(11,35,64,0.35);
  z-index: 1051;
  animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring{
  0%{ box-shadow: 0 8px 20px rgba(11,35,64,0.35), 0 0 0 0 rgba(232,114,12,0.4); }
  70%{ box-shadow: 0 8px 20px rgba(11,35,64,0.35), 0 0 0 12px rgba(232,114,12,0); }
  100%{ box-shadow: 0 8px 20px rgba(11,35,64,0.35), 0 0 0 0 rgba(232,114,12,0); }
}

.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background-color: #ffffff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1049;
}
.back-to-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   9. RESPONSIVE
--------------------------------------------------------- */
@media (min-width: 992px){
  body{ padding-bottom: 0; }
}

@media (max-width: 991.98px){
  body{ padding-bottom: 78px; } /* space for sticky mobile cta */
  .floating-call-btn{ bottom: 92px; }
  section{ padding: 3.25rem 0; }
  h2{ font-size: 1.65rem; }
  .hero-section{ padding: 2.75rem 0 2.5rem; }
  .hero-heading{ font-size: 1.85rem; }
  .hero-subtext{ font-size: 1rem; }
  .hero-image-wrap{ order: 2; }
  .hero-image{ max-height: 280px; }
  .enquiry-card{ padding: 1.5rem; margin-top: -2rem; }
  .why-us-image{ max-height: 260px; }
  .final-cta-group{ flex-direction: column; }
  .final-cta-group .btn{ width: 100%; }
}

@media (max-width: 575.98px){
  .top-bar-inner{ justify-content: flex-end; }
  .hero-cta-group{ flex-direction: column; }
  .hero-cta-group .btn{ width: 100%; text-align: center; }
  .brand-main{ font-size: 1.15rem; }
  .location-map-placeholder{ padding: 2.5rem 1.25rem; }
}

/* Prevent horizontal scroll anywhere */
html, body{ overflow-x: hidden; max-width: 100%; }
