:root {
  --primary: #f4b400;
  --primary-dark: #ea8a00;
  --text: #1f2940;
  --muted: #687287;
  --light: #ffffff;
  --surface: #f4f1fb;
  --card: #fffdf8;
  --border: rgba(31, 41, 64, 0.08);
  --shadow: 0 15px 40px rgba(31, 41, 64, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ece8f6 0%, #f8f6ff 18%, #ece8f6 100%);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: 100px;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.topbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-wrap p {
  margin: 0;
  color: #4f566a;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #555d72;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 25px rgba(31, 41, 64, 0.08);
}

.header-main {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 180px;
  height: 120px;
  color: #e36414;
  display: grid;
  place-items: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text strong {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.logo-text strong span {
  color: #d62828;
}

.logo-text small {
  display: block;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Button style for phone number */
.phone-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0B5ED7;   /* Blue button */
  color: white;
  font-weight: bold;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(11, 94, 215, 0.5); /* glow */
  transition: all 0.3s ease;
  margin-left: 180px;
}

/* Hover effect */
.phone-btn:hover {
  background-color: #FF6A00;  /* Orange on hover */
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.7);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width:1024px){
  .phone-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width:480px){
  .phone-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  transition: 0.25s;
}

.quote-btn,
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 18px rgba(234, 138, 0, 0.24);
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.quote-btn:hover,
.btn:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}

.nav {
  background: var(--primary);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-wrap a {
  padding: 16px 22px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 15px;
  color: #2d2d2d;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.nav-wrap .mobile-only {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(16, 24, 40, 0.7) 0%,
      rgba(16, 24, 40, 0.38) 40%,
      rgba(16, 24, 40, 0.12) 70%
    ),
    url("assets/hero.jpg") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-text {
  max-width: 610px;
  color: #fff;
  padding: 90px 0 80px;
  padding-left: 70px;
}

.eyebrow {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

.hero h1 {
  font-size: 72px;
  line-height: 0.95;
  margin: 0 0 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1.8px;
}

.hero h1 span {
  display: block;
  color: #ffac2f;
}

.hero p {
  font-size: 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.section {
  padding: 76px 0;
}

.about-grid,
.quote-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.section-copy h2,
.section-head h2 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -1px;
}

.section-copy p,
.section-head p {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 16px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 26px;
}

.feature-card,
.service-card,
.branch-card,
.quote-form-box {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
}

.card-shadow {
  box-shadow: var(--shadow);
}

.feature-card,
.service-card {
  padding: 22px;
}

.feature-card h3,
.service-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.feature-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.about-media {
  overflow: hidden;
  border-radius: 22px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  text-align: center;
  margin-bottom: 28px;
}

.section-head.left {
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quote .mini-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mini-form input,
.mini-form select,
.quote-form input,
.quote-form select {
  width: 100%;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 0 16px;
  outline: none;
}

.quote-form-box {
  padding: 26px;
  background: rgba(255, 247, 231, 0.88);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.full {
  width: 100%;
}

.form-message {
  margin: 0;
  font-size: 14px;
  color: #246b2d;
  min-height: 18px;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.branch-card {
  overflow: hidden;
}

.branch-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
}

.branch-content {
  padding: 18px;
}

.branch-content h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.branch-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(31, 41, 64, 0.16);
  color: #8b5a00;
  font-weight: 700;
  background: #fff8eb;
}

.footer {
  background: #1f2940;
  color: #e6ebf4;
  padding: 42px 0;
  margin-top: 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 20px;
}

.footer h3,
.footer h4 {
  margin: 0 0 10px;
}

.footer p {
  margin: 0 0 8px;
  color: #d3dae8;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 1100px) {
  .header-main {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo actions"
      "search search";
  }

  .logo {
    grid-area: logo;
  }

  .searchbar {
    grid-area: search;
  }

  .header-actions {
    grid-area: actions;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero p {
    font-size: 21px;
  }

  .services-grid,
  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .topbar {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: inline-flex;
  }

  .header-main {
    padding: 12px 0;
    gap: 12px;
  }

  .logo-text strong {
    font-size: 30px;
  }

  .logo-text small {
    font-size: 11px;
  }

  .searchbar {
    grid-template-columns: 1fr;
    height: auto;
    border-radius: 18px;
  }

  .searchbar select {
    border-left: 0;
    border-top: 1px solid var(--border);
    height: 48px;
  }

  .searchbar input,
  .searchbar button {
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-wrap {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0;
  }

  .nav-wrap.open {
    display: flex;
  }

  .nav-wrap a {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 14px 16px;
  }

  .nav-wrap .mobile-only {
    display: inline-flex;
    margin: 10px 16px 6px;
    justify-content: center;
  }

  .hero {
    min-height: 560px;
  }

  .hero-text {
    padding: 70px 0 60px;
    padding-left: 20px;
  }

  .eyebrow {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 56px 0;
  }

  .section-copy h2,
  .section-head h2 {
    font-size: 40px;
  }

  .features,
  .services-grid,
  .branch-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .branch-card img {
    height: 210px;
  }
}

.contact-section {
  background: linear-gradient(-45deg, #d6b0ff, #9da9bf, #ffffff, #000000);
  background-size: 400% 400%;
  animation: liquidBG 10s ease infinite;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  color: #fff; /* text ko visible karne ke liye white */
}

@keyframes liquidBG {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
}

.contact-section h2 {
  margin-bottom: 20px;
  color: #333;
}

.contact-item {
  margin: 10px 0;
  font-size: 18px;
  color: #555;
}

.contact-item a {
  color: #1e90ff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item i {
  margin-right: 10px;
  color: #1e90ff;
}

