/* =========================================================
   Urban Gas Stove — style.css
   Theme: Deep Navy + Flame Orange + Steel Cyan
   ========================================================= */

:root {
  --primary: #0E6B5C;
  --primary-dark: #0A4D43;
  --primary-darker: #073730;
  --accent: #F2A900;
  --accent-light: #FFC94D;
  --secondary: #FF5A5F;
  --secondary-dark: #E63946;
  --steel: #F4F7F6;
  --steel-line: #DCE6E3;
  --ink: #1C2624;
  --ink-soft: #56655F;
  --white: #FFFFFF;

  --font-display: 'Poppins', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(14, 107, 92, 0.08);
  --shadow-md: 0 10px 30px rgba(14, 107, 92, 0.14);
  --shadow-lg: 0 20px 50px rgba(14, 107, 92, 0.20);
  --transition: all 0.3s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, .font-display {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}

a { text-decoration: none; }

img { max-width: 100%; }

.section-pad { padding: 80px 0; }

@media (max-width: 767px) {
  .section-pad { padding: 56px 0;overflow-x: hidden; }
  .carousel{
	  overflow-x: hidden;
  }
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.section-eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
  display: inline-block;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 640px;
}

.text-orange { color: var(--accent) !important; }
.text-cyan { color: var(--secondary) !important; }
.bg-navy { background-color: var(--primary) !important; }
.bg-steel { background-color: var(--steel) !important; }

/* ---------------- BUTTONS ---------------- */
.btn-flame {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 8px 20px rgba(242, 169, 0, 0.35);
  transition: var(--transition);
}
.btn-flame:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(242, 169, 0, 0.45);
  color: var(--white);
}

.btn-outline-navy {
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 50px;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-navy:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-call-now {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-call-now:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------------- TOP BAR ---------------- */
.top-bar {
  background: var(--primary-darker);
  color: #C9D6E0;
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar a {
  color: #C9D6E0;
  transition: var(--transition);
}
.top-bar a:hover { color: var(--accent-light); }
.top-bar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
  display: inline-block;
  margin: 0 12px;
}
.top-bar .social-icons a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}
.top-bar .social-icons a:hover {
  background: var(--accent);
}

/* ---------------- HEADER ---------------- */
.main-header {
  background: var(--white);
  padding: 4px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
.main-header .logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-header .logo-text span { color: var(--accent); }
.main-header .logo-text img {/* width: 46px; height: 46px;*/ }

.navbar-nav .nav-link {
  color: var(--primary);
  font-weight: 600;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent);
}

/* ---------------- HERO CAROUSEL ---------------- */
.hero-carousel { position: relative; }
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  position: relative;
}
.hero-carousel .carousel-item {
  height: 620px;
}
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7,55,48,0.82) 20%, rgba(7,55,48,0.40) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: var(--white);
  display: flex;
  align-items: center;
  padding: 40px 0;
  pointer-events: none;
}
.hero-content a,
.hero-content button {
  pointer-events: auto;
}
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
  z-index: 5;
}
.hero-content .badge-flame {
  background: rgba(242,169,0,0.15);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 18px;
}
.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-content h1 span { color: var(--accent-light); }
.hero-content p {
  color: #D9E3EC;
  font-size: 1.08rem;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent-light);
}
.hero-stats .stat span {
  font-size: 0.82rem;
  color: #C9D6E0;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--accent);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.carousel-control-prev, .carousel-control-next { width: 5%; }
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: rgba(242,169,0,0.85);
  border-radius: 50%;
  padding: 18px;
  background-size: 50%;
}

/* ---------------- ANIMATED SERVICE VAN STRIP ---------------- */
.road-strip {
  position: relative;
  height: 90px;
  background: linear-gradient(180deg, #26313B 0%, #1B242C 100%);
  overflow: hidden;
  border-top: 4px solid var(--accent);
}
.road-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 6px;
  transform: translateY(-50%);
  background-image: repeating-linear-gradient(90deg, #F1F4F7 0, #F1F4F7 40px, transparent 40px, transparent 80px);
  animation: roadMove 3.5s linear infinite;
}
@keyframes roadMove {
  from { transform: translateX(0) translateY(-50%); }
  to { transform: translateX(-80px) translateY(-50%); }
}
.road-strip .van {
  position: absolute;
  bottom: 10px;
  left: -220px;
  width: 150px;
  animation: driveVan 8s linear infinite;
  filter: drop-shadow(0 6px 6px rgba(0,0,0,0.4));
}
@keyframes driveVan {
  0% { left: -220px; }
  100% { left: 105%; }
}
.road-strip .van-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7C8B98;
  font-weight: 600;
  letter-spacing: 3px;
  font-size: 0.78rem;
  text-transform: uppercase;
  z-index: 0;
}

/* ---------------- ABOUT SECTION ---------------- */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 767px) {
  .about-badge { left: 10px; bottom: -18px; padding: 12px 16px; }
}
.about-badge .icon-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.about-list .check-ic {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,90,95,0.12);
  color: var(--secondary-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------------- SERVICE CARDS ---------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--steel-line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card .service-img {
  height: 170px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card .service-img::after {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 30% 30%, rgba(242,169,0,0.25), transparent 60%);
}
.service-card .service-img svg {
  width: 62px; height: 62px;
  color: var(--accent-light);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.service-card:hover .service-img svg {
  transform: scale(1.15) rotate(-6deg);
}
.service-card .service-body {
  padding: 22px 22px 24px;
}
.service-card .service-body h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.service-card .service-body p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 16px;
  min-height: 62px;
}
.service-card .btn-call-now {
  width: 100%;
  justify-content: center;
  font-size: 0.82rem;
}

/* ---------------- WHY CHOOSE US ---------------- */
.why-item {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.why-item .icon-circle {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.why-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.why-item p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0; }

.why-section { position: relative; }

/* ---------------- COUNTER ---------------- */
.counter-section {
  background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.counter-section::before {
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,169,0,0.15), transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}
.counter-box { text-align: center; color: var(--white); position: relative; z-index: 1; }
.counter-box .num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent-light);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.counter-box .label {
  color: #C9D6E0;
  font-size: 0.92rem;
  margin-top: 4px;
}

/* ---------------- HOW IT WORKS ---------------- */
.step-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.step-card .step-num {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-sm);
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.9rem; }
.step-connector {
  position: absolute;
  top: 34px;
  left: 60%;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--steel-line) 0, var(--steel-line) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
@media (max-width: 991px) { .step-connector { display: none; } }

/* ---------------- GALLERY ---------------- */
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,107,92,0.85), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item .gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
@media (max-width: 767px) {
  .gallery-item img { height: 150px; }
}

/* ---------------- BOOKING CTA ---------------- */
.booking-cta {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-light) 100%);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.booking-cta::before {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -100px; left: -80px;
}
.booking-cta h2 { color: var(--white); }
.booking-cta p { color: rgba(255,255,255,0.9); }
.booking-cta .btn-outline-navy {
  border-color: var(--white);
  color: var(--white);
}
.booking-cta .btn-outline-navy:hover {
  background: var(--white);
  color: var(--accent);
}
@media (max-width: 767px) { .booking-cta { padding: 34px 24px; text-align: center; } }

/* ---------------- TESTIMONIALS ---------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border-top: 4px solid var(--secondary);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card .stars { color: var(--accent); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--ink-soft); font-style: italic; margin-bottom: 20px; }
.testimonial-card .client {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-card .client .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-card .client .name { font-weight: 700; color: var(--primary); font-size: 0.92rem; }
.testimonial-card .client .role { font-size: 0.78rem; color: var(--ink-soft); }

/* ---------------- FAQ ---------------- */
.accordion-item {
  border: none;
  margin-bottom: 14px;
  border-radius: var(--radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  padding: 18px 22px;
}
.accordion-button:not(.collapsed) {
  background: var(--primary);
  color: var(--white);
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}
.accordion-button:focus { box-shadow: none; border: none; }
.accordion-body {
  color: var(--ink-soft);
  padding: 20px 22px;
  font-size: 0.92rem;
}

/* ---------------- CONTACT ---------------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.contact-info-card .icon-circle {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap .form-control {
  border: 1px solid var(--steel-line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.92rem;
  margin-bottom: 16px;
}
.contact-form-wrap .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(255,90,95,0.15);
}
#enu-st{
	display:block;
	
	width:100%;
	
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px rgba(242, 169, 0, 0.35);
    transition: var(--transition);
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  /* min-height: 340px; */
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ---------------- FOOTER ---------------- */
.site-footer {
  background: var(--primary-darker);
  color: #B7C4CF;
  padding-top: 60px;
}
.site-footer h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 18px;
      background: #f2a900;
    border-top-right-radius: 20px;
    padding: 4px;
}
.site-footer .footer-logo {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.site-footer .footer-logo span { color: var(--accent); }
.site-footer p { font-size: 0.9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 5px;
    border-bottom: 1px dashed;
    padding-bottom: 5px; }
.site-footer ul li a { color: #B7C4CF; font-size: 0.9rem; transition: var(--transition); }
.site-footer ul li a:hover { color: var(--accent-light); padding-left: 4px; }
.site-footer .social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 8px;
  transition: var(--transition);
}
.site-footer .social-icons a:hover { background: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 0.84rem;
  text-align: center;
  color: #8CA0B0;
}
.footer-bottom a { color: var(--accent-light); }

/* ---------------- FLOATING ICONS ---------------- */
.floating-icons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.floating-icons a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.floating-icons a:hover { transform: scale(1.1); }
.floating-icons .whatsapp-btn { background: #25D366; }
.floating-icons .call-btn { background: var(--accent); animation: pulseRing 2s infinite; }

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(242,169,0,0.55); }
  70% { box-shadow: 0 0 0 16px rgba(242,169,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(242,169,0,0); }
}

/* ---------------- BACK TO TOP ---------------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 96px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--accent); color: var(--white); }

/* ---------------- SCROLL ANIMATIONS (AOS-like, JS driven) ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------- MISC ---------------- */
.divider-flame {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  border-radius: 4px;
  margin: 0 auto 18px;
}
.cu-lg-wdth{
	width:250px
}
@media (max-width: 991px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-carousel .carousel-item { height: 560px; }
}
@media(max-width:768px)
{
	.cu-ds-nn{
		display:none!important
	}
	.cu-jf-cntr{
		justify-content:center!important
	}
}
@media (max-width: 575px) {
  .hero-content h1 { font-size: 1.7rem; }
  .hero-carousel .carousel-item { height: 600px; }
  .hero-stats { flex-wrap: wrap; gap: 18px; }
  .section-title { font-size: 1.6rem; }
}
@media(max-width:374px)
{
	.cu-lg-wdth{
	width:230px
}
}
