@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0f447a;
  --primary-dark: #0a2f56;
  --primary-light: #1e5f9c;
  --accent-red: #c62828;
  --accent-green: #63b35d;
  --surface: #ffffff;
  --surface-alt: #f5f8fc;
  --text: #18324a;
  --text-light: #5b6b79;
  --border: rgba(15, 68, 122, 0.1);
  --shadow: 0 18px 45px rgba(12, 52, 92, 0.08);
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: linear-gradient(180deg, #f8fbfe 0%, #f3f7fb 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

iframe {
  display: block;
}

.container {
  width: 88%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ============================================
   SITE-SHELL HEADER (used by new contact.html)
   ============================================ */

.site-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 6px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  color: var(--primary-dark);
  font-weight: 700;
}

.brand-text small {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* SITE FOOTER */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 32px;
  padding: 48px 0 32px;
}

.footer-grid h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.footer-grid h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid p,
.footer-grid a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: #fff;
}

/* ============================================
   ORIGINAL STYLES BELOW (kept intact)
   ============================================ */

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.top-header {
  border-bottom: 1px solid #e8edf3;
}

.top-header-container {
  min-height: 110px;
  display: grid;
  grid-template-columns: 170px 1fr 150px;
  align-items: center;
  gap: 16px;
}

.centered-header-layout {
  grid-template-columns: 170px 1fr 150px;
  align-items: center;
}

.header-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-placeholder {
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(15, 68, 122, 0.25);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 700;
  background: #f7fbff;
}

.site-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.header-company-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.header-company-text h1 {
  font-family: "Rajdhani", sans-serif;
  font-size: 33px;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 2px;
  line-height: 1;
}

.header-company-text p {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
}

.header-action {
  display: flex;
  justify-content: flex-end;
}

.enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: var(--white);
  min-width: 104px;
  height: 42px;
  border-radius: 6px;
  font-weight: 700;
  transition: 0.3s ease;
}

.enquiry-btn:hover {
  background: var(--accent-red);
}

.menu-header {
  background: var(--white);
}

.menu-header-container {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.navbar a {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
}

.page-banner {
  background: linear-gradient(135deg, #0a2f56, #1a5f9c);
  color: var(--white);
  text-align: center;
  padding: 70px 0;
}

.page-banner h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 54px;
  margin-bottom: 10px;
}

.page-banner p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-page-banner {
  padding: 40px 0;
}

.contact-page-banner h2 {
  margin-bottom: 6px;
}

.contact-page-banner p {
  max-width: 700px;
  font-size: 16px;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10, 47, 86, 0.56), rgba(10, 47, 86, 0.72)),
    url("../images/tractor parts.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 47, 86, 0.75) 0%, rgba(10, 47, 86, 0.48) 55%, rgba(10, 47, 86, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}

.hero-text {
  max-width: 760px;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  background: rgba(99, 179, 93, 0.16);
  color: #ebfff0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-text h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 68px;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
  font-weight: 700;
  transition: 0.3s ease;
  background: var(--accent-red);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
  background: #a91f1f;
}

.btn-light {
  background: var(--white);
  color: var(--primary);
}

.btn-light:hover {
  background: #eef5fb;
  color: var(--primary-dark);
}

.about-showcase {
  padding: 90px 0 70px;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.contact-details-grid {
  align-items: stretch;
}

.contact-details-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-showcase-text h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 58px;
  line-height: 1.04;
  color: #111111;
  margin-bottom: 22px;
}

.about-showcase-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 22px;
}

.about-showcase-text a:not(.btn) {
  color: var(--primary);
  font-weight: 700;
}

.about-showcase-text a:not(.btn):hover {
  color: var(--accent-red);
}

.about-image-frame {
  border-radius: 6px;
  overflow: hidden;
  background: #eef3f8;
  min-height: 520px;
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-frame {
  min-height: 420px;
  height: 420px;
  padding: 0;
  background: #e9eef5;
  overflow: hidden;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.why-choose-section {
  position: relative;
  padding: 70px 0 80px;
  background-color: #0f447a;
}

.vision-bg-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.28)),
    url("../images/image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vision-fixed-section {
  background-attachment: fixed;
}

.why-choose-us-section {
  background:
    linear-gradient(rgba(8, 34, 62, 0.9), rgba(10, 47, 86, 0.92)),
    url("../images/image2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-vision-section {
  padding-top: 78px;
  padding-bottom: 82px;
}

.section-heading {
  margin-bottom: 34px;
}

.center-heading {
  text-align: center;
}

.center-heading h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 52px;
  color: #111111;
  margin-bottom: 8px;
}

.center-heading p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 17px;
}

.vision-bg-section .center-heading h2 {
  color: #111111;
}

.vision-bg-section .center-heading p,
.vision-bg-section .center-heading .section-kicker {
  color: var(--text-light);
}

.why-choose-us-section .center-heading h2,
.choose-us-heading h2 {
  color: #eaf4ff;
}

.why-choose-us-section .center-heading p,
.choose-us-heading p {
  color: #c8d9ea;
}

.why-choose-us-section .center-heading .section-kicker,
.choose-us-heading .section-kicker {
  color: #9fc7eb;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-choose-card {
  background: #ffffff !important;
  border: 2px solid var(--primary-light);
  box-shadow: 0 14px 34px rgba(12, 52, 92, 0.06);
  text-align: center;
  padding: 46px 26px 38px;
  position: relative;
}

.premium-theme-card {
  background: #ffffff !important;
  border: 2px solid var(--primary-light);
  box-shadow: 0 14px 34px rgba(12, 52, 92, 0.06);
}

.icon-box {
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  border: 2px solid #d5a14b;
}

.theme-icon-box {
  border: 2px solid var(--primary-light);
  background: #ffffff !important;
}

.why-choose-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 34px;
  color: #111111;
  margin-bottom: 12px;
}

.why-choose-card p {
  color: var(--text-light);
  font-size: 17px;
}

.choose-us-heading {
  max-width: 1120px;
  margin: 0 auto 48px;
}

.choose-us-heading h2 {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 18px;
}

.choose-us-heading p {
  max-width: 1120px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.65;
}

.choose-us-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 46px;
}

.choose-us-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #114b84 0%, #0d3c6b 100%);
  border: 1px solid rgba(126, 176, 224, 0.28);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(4, 22, 42, 0.22);
  transition: 0.3s ease;
}

.choose-us-feature-item:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #155792 0%, #114574 100%);
  border-color: rgba(126, 176, 224, 0.45);
  box-shadow: 0 18px 36px rgba(4, 22, 42, 0.28);
}

.choose-us-feature-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border: 2px solid #6fa9da;
  background: linear-gradient(135deg, rgba(111, 169, 218, 0.24), rgba(255, 255, 255, 0.08));
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.choose-us-feature-text h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  line-height: 1.05;
  color: #f4f9ff;
  margin-bottom: 10px;
}

.choose-us-feature-text p {
  color: #d3e3f2;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
}

.products-preview-section {
  padding: 85px 0;
}

.heading-accent {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 10px 0 18px;
}

.heading-accent span {
  height: 4px;
  border-radius: 20px;
  display: block;
}

.heading-accent span:nth-child(1),
.heading-accent span:nth-child(3) {
  width: 10px;
  background: var(--accent-red);
}

.heading-accent span:nth-child(2) {
  width: 34px;
  background: var(--accent-red);
}

.products-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

.product-preview-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #edf1f5;
  display: grid;
  grid-template-columns: 1fr;
}

.product-preview-text {
  padding: 28px 24px 10px;
}

.product-preview-text h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  color: #111111;
  margin-bottom: 8px;
}

.product-preview-text p {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 16px;
}

.product-preview-text a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 40px;
  border: 1px solid var(--primary-light);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 700;
}

.product-preview-text a:hover {
  background: var(--primary);
  color: var(--white);
}

.product-preview-image {
  height: 240px;
  background: #eef3f8;
}

.product-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-consultation-section {
  padding: 0 0 20px;
}

.home-consultation-box {
  background: linear-gradient(135deg, #ffffff 0%, #f3f8fd 100%);
  border: 1px solid rgba(15, 68, 122, 0.1);
  box-shadow: 0 20px 45px rgba(12, 52, 92, 0.08);
  border-radius: 14px;
  padding: 42px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.home-consultation-text h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 46px;
  line-height: 1.02;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.home-consultation-text p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 760px;
}

.home-consultation-action {
  flex-shrink: 0;
}

.home-consultation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0f447a, #1e5f9c);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 14px 28px rgba(15, 68, 122, 0.22);
  transition: 0.3s ease;
}

.home-consultation-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0a2f56, #114b84);
}

.contact-cta-section {
  padding: 20px 0 90px;
}

.contact-cta-box {
  background: linear-gradient(135deg, #0f447a, #1a5f9c);
  border-radius: 14px;
  padding: 46px 42px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.contact-cta-text h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 48px;
  margin-bottom: 10px;
}

.contact-cta-text p,
.contact-cta-text .section-kicker {
  color: rgba(255, 255, 255, 0.88);
}

.contact-form-box {
  max-width: 820px;
  margin: 0 auto;
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(12, 52, 92, 0.08);
  border: 1px solid rgba(15, 68, 122, 0.1);
  border-radius: 8px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form input,
form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(15, 68, 122, 0.16);
  border-radius: 6px;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
  background: #f8fbff;
  font-family: "Manrope", sans-serif;
  color: var(--text);
}

form input:focus,
form textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(30, 95, 156, 0.12);
  background: var(--white);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form button {
  border: none;
  min-height: 50px;
  padding: 0 22px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
}

form button:hover {
  background: #a91f1f;
}

.premium-contact-section {
  background: linear-gradient(180deg, #eef5fb 0%, #f8fbfe 100%);
  padding: 36px 0 0;
  margin-top: 30px;
  border-top: 1px solid rgba(15, 68, 122, 0.08);
}

.premium-contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1fr;
  gap: 38px;
  padding: 44px 34px;
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(15, 68, 122, 0.08);
  box-shadow: 0 12px 30px rgba(12, 52, 92, 0.06);
  border-radius: 18px 18px 0 0;
}

.premium-contact-brand h2,
.premium-contact-links h3,
.premium-contact-info h3 {
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-dark);
}

.premium-contact-brand h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.premium-contact-brand p,
.premium-contact-links a,
.premium-contact-info p,
.premium-contact-info a {
  color: var(--text-light);
}

.premium-contact-links h3,
.premium-contact-info h3 {
  font-size: 28px;
  margin-bottom: 18px;
}

.premium-contact-links a {
  display: block;
  margin-bottom: 12px;
  transition: 0.3s ease;
}

.premium-contact-links a:hover,
.premium-contact-info a:hover {
  color: var(--primary);
}

.footer-logo-mark {
  width: 120px;
  height: 120px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent !important;
  padding: 0;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.footer-logo-mark img,
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: transparent !important;
  mix-blend-mode: normal;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.contact-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.contact-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 68, 122, 0.18);
  background: #f4f9ff;
  color: var(--primary);
  font-size: 22px;
  border-radius: 12px;
}

.main-footer {
  background: #0a2f56;
  color: rgba(255, 255, 255, 0.86);
}

.rich-footer {
  background: linear-gradient(135deg, #0a2f56, #114b84);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
  padding: 52px 0 34px;
}

.footer-container h3,
.footer-container h4 {
  font-family: "Rajdhani", sans-serif;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-container h3 {
  font-size: 28px;
}

.footer-container h4 {
  font-size: 22px;
}

.footer-container p,
.footer-container a {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  margin-bottom: 10px;
}

.footer-container a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 18px 12px;
  font-size: 14px;
}

.footer-bottom-row {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.footer-bottom-row p,
.footer-mini-link {
  color: #ffffff;
  font-size: 14px;
}

.footer-mini-link {
  font-weight: 700;
}

.footer-mini-link:hover {
  color: #d8e9ff;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .top-header-container {
    grid-template-columns: 150px 1fr 130px;
  }

  .about-showcase-grid,
  .products-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .premium-contact-box {
    grid-template-columns: 1fr 1fr;
  }

  .choose-us-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-logo {
    width: 98px;
    height: 98px;
  }

  .logo-placeholder {
    width: 102px;
    height: 102px;
  }

  .footer-logo-mark {
    width: 108px;
    height: 108px;
  }
}

@media (max-width: 900px) {
  .top-header-container,
  .centered-header-layout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 14px 0;
  }

  .header-logo-box,
  .header-action {
    justify-content: center;
    display: flex;
  }

  .menu-header-container {
    justify-content: space-between;
    min-height: 58px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-top: 1px solid #edf1f5;
    box-shadow: var(--shadow);
    z-index: 999;
  }

  .site-nav.open {
    display: flex;
  }

  .navbar {
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    border-top: 1px solid #edf1f5;
    box-shadow: var(--shadow);
    display: none;
  }

  .navbar.open {
    display: flex;
  }

  .hero-text h2 {
    font-size: 48px;
  }

  .about-showcase-grid,
  .products-preview-grid,
  .footer-container,
  .premium-contact-box,
  .choose-us-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-consultation-box,
  .contact-cta-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 26px;
  }

  .contact-cta-text h2 {
    font-size: 38px;
  }

  .footer-bottom-row {
    flex-direction: column;
    padding: 14px 0;
  }

  .site-logo {
    width: 90px;
    height: 90px;
  }

  .logo-placeholder {
    width: 94px;
    height: 94px;
  }

  .footer-logo-mark {
    width: 96px;
    height: 96px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .top-header-container {
    min-height: auto;
  }

  .map-frame {
    min-height: 360px;
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .page-banner {
    padding: 56px 0;
  }

  .contact-page-banner {
    padding: 32px 0;
  }

  .page-banner h2 {
    font-size: 42px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 72px 0;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .about-showcase-text h2,
  .center-heading h2,
  .premium-contact-brand h2,
  .choose-us-heading h2,
  .home-consultation-text h2 {
    font-size: 38px;
  }

  .products-preview-grid {
    grid-template-columns: 1fr;
  }

  .product-preview-image {
    height: 220px;
  }

  .about-image-frame {
    min-height: 340px;
  }

  .map-frame {
    min-height: 320px;
    height: 320px;
  }

  .vision-fixed-section {
    background-attachment: scroll;
  }

  .choose-us-feature-item {
    gap: 14px;
  }

  .choose-us-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
  }

  .choose-us-feature-text h3 {
    font-size: 22px;
  }

  .home-consultation-section {
    padding-bottom: 70px;
  }

  .home-consultation-box {
    padding: 30px 22px;
  }

  .home-consultation-btn {
    width: 100%;
  }

  .contact-form-box {
    padding: 24px;
  }

  .premium-contact-links h3,
  .premium-contact-info h3 {
    font-size: 24px;
  }

  .premium-contact-box {
    padding: 32px 22px;
  }

  .site-logo {
    width: 82px;
    height: 82px;
  }

  .logo-placeholder {
    width: 86px;
    height: 86px;
  }

  .footer-logo-mark {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 480px) {
  .header-company-text h1 {
    font-size: 28px;
  }

  .header-company-text p {
    font-size: 12px;
  }

  .hero-text h2 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-light,
  .enquiry-btn,
  .home-consultation-btn {
    width: 100%;
  }

  .about-image-frame {
    min-height: 280px;
  }

  .map-frame {
    min-height: 280px;
    height: 280px;
  }

  .page-banner h2,
  .home-consultation-text h2 {
    font-size: 34px;
  }

  .site-logo {
    width: 74px;
    height: 74px;
  }

  .logo-placeholder {
    width: 78px;
    height: 78px;
  }

  .footer-logo-mark {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   CONTACT PAGE — MAIN SECTION
   ============================================ */

.contact-main-section {
  padding: 50px 0 60px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-left-col {}

.contact-map-box {
  width: 100%;
  height: 290px;
  overflow: hidden;
  border: 1px solid #dde4ed;
  margin-bottom: 34px;
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-panel .section-kicker {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-red);
  border-bottom: 2px solid var(--accent-red);
  display: inline-block;
  padding-bottom: 5px;
}

.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(15, 68, 122, 0.08);
}

.cinfo-item:last-child {
  border-bottom: none;
}

.cinfo-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  color: var(--primary);
  margin-top: 2px;
}

.cinfo-icon svg {
  width: 100%;
  height: 100%;
}

.cinfo-text h4 {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 3px;
}

.cinfo-text p,
.cinfo-text a {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.55;
}

.cinfo-text a:hover {
  color: var(--primary);
}

.contact-form-col {}

.contact-form-panel {
  background: #ffffff;
  border: 1px solid rgba(15, 68, 122, 0.1);
  box-shadow: var(--shadow);
  border-radius: 8px;
  padding: 36px 32px;
}

.contact-form-panel .section-kicker {
  margin-bottom: 6px;
  display: block;
}

.contact-form-panel h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 38px;
  color: #111111;
  margin-bottom: 24px;
  line-height: 1.1;
}

.cform {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cform label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

.cform input,
.cform textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(15, 68, 122, 0.16);
  border-radius: 4px;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
  background: #f8fbff;
  font-family: "Manrope", sans-serif;
  color: var(--text);
}

.cform input:focus,
.cform textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(30, 95, 156, 0.12);
  background: var(--white);
}

.cform textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-submit-btn {
  align-self: flex-start;
  min-width: 140px;
  background: var(--accent-red);
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.contact-submit-btn:hover {
  background: #a91f1f;
  transform: translateY(-2px);
}

@media (max-width: 860px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-box {
    height: 260px;
  }
}

/* ============================================
   ABOUT PAGE — EDITORIAL MIDDLE SECTION
   ============================================ */

.about-editorial-section {
  padding: 78px 0 58px;
  background: transparent;
}

.about-editorial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

.about-editorial-wrap.reverse {
  grid-template-columns: 1fr 1fr;
}

.about-editorial-text {
  max-width: 520px;
}

.about-editorial-text h2,
.about-editorial-text h3 {
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
}

.about-editorial-text p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
  max-width: 100%;
}

.about-editorial-image {
  width: 100%;
}

.about-editorial-image img {
  width: 100%;
  max-width: 420px;
  height: 100%;
  min-height: 290px;
  max-height: 360px;
  object-fit: cover;
  background: #eef3f8;
}

.about-editorial-wrap:not(.reverse) .about-editorial-image {
  display: flex;
  justify-content: flex-end;
}

.about-editorial-wrap.reverse .about-editorial-image {
  order: 1;
  display: flex;
  justify-content: flex-start;
}

.about-editorial-wrap.reverse .about-editorial-text {
  order: 2;
}

.about-divider {
  border: none;
  border-top: 1px solid #1d1d1d;
  margin: 24px 0 44px;
  width: 100%;
}

.about-mini-line {
  width: 92px;
  height: 2px;
  background: #1f1f1f;
  margin: 18px 0 22px;
}

.about-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 22px;
}

.about-feature-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-red);
  background: #f7f7f7;
  border: 1px solid #ececec;
}

.about-small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 32px;
  padding: 0 16px;
  background: var(--accent-red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.about-small-btn:hover {
  background: #a91f1f;
}

.about-bottom-strip {
  background: #f1f3f5;
  padding: 42px 0 40px;
  margin-top: 6px;
}

.about-bottom-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.7fr;
  gap: 40px;
  align-items: start;
}

.about-bottom-title h3 {
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  color: #111111;
  max-width: 290px;
}

.about-bottom-content p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 12px;
  max-width: 100%;
}

.about-bottom-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE — SOCIAL ICONS ADDED
   ============================================ */

.footer-social-wrap {
  margin-top: 24px;
}

.footer-social-wrap h3 {
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-dark);
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(15, 68, 122, 0.14);
  background: linear-gradient(135deg, #f7fbff 0%, #edf5fc 100%);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(12, 52, 92, 0.06);
  transition: 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.social-link.whatsapp:hover {
  background: linear-gradient(135deg, #25d366 0%, #1da851 100%);
  border-color: #25d366;
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #d62976 0%, #f58529 100%);
  border-color: #d62976;
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877f2 0%, #125dcc 100%);
  border-color: #1877f2;
}

.social-link.linkedin:hover {
  background: linear-gradient(135deg, #0a66c2 0%, #084d94 100%);
  border-color: #0a66c2;
}

/* ============================================
   ABOUT PAGE — RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .about-editorial-wrap {
    gap: 28px;
  }

  .about-bottom-grid {
    grid-template-columns: 1fr 1.4fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .about-editorial-wrap,
  .about-editorial-wrap.reverse,
  .about-bottom-grid {
    grid-template-columns: 1fr;
  }

  .about-editorial-wrap.reverse .about-editorial-image,
  .about-editorial-wrap.reverse .about-editorial-text {
    order: initial;
  }

  .about-editorial-text {
    max-width: 100%;
  }

  .about-editorial-image img {
    max-width: 100%;
    min-height: 300px;
    max-height: 420px;
  }

  .about-editorial-wrap:not(.reverse) .about-editorial-image,
  .about-editorial-wrap.reverse .about-editorial-image {
    justify-content: flex-start;
  }

  .about-bottom-title h3 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .about-editorial-section {
    padding: 58px 0 40px;
  }

  .about-editorial-wrap {
    gap: 22px;
    margin-bottom: 26px;
  }

  .about-editorial-text h2,
  .about-editorial-text h3 {
    font-size: 30px;
    margin-bottom: 14px;
  }

  .about-editorial-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-divider {
    margin: 18px 0 30px;
  }

  .about-bottom-strip {
    padding: 32px 0;
  }

  .about-bottom-title h3 {
    font-size: 29px;
  }

  .about-bottom-content p {
    font-size: 14px;
  }

  .footer-social-links {
    gap: 10px;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .about-editorial-text h2,
  .about-editorial-text h3,
  .about-bottom-title h3 {
    font-size: 24px;
    line-height: 1.3;
  }

  .about-editorial-image img {
    min-height: 240px;
    max-height: 280px;
  }

  .about-feature-tags {
    gap: 8px;
  }

  .about-feature-tags span {
    font-size: 10px;
    padding: 6px 10px;
  }

  .about-small-btn {
    min-width: 86px;
    height: 30px;
    font-size: 10px;
  }

  .about-bottom-content p,
  .about-editorial-text p {
    font-size: 14px;
  }
}