@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Rajdhani:wght@400;500;600;700&display=swap");

:root {
  --primary: #0B2C3D;
  --primary-2: #141414;
  --primary-3: #133236;
  --secondary: #FF5E15;
  --secondary-dark: #cb3421;
  --heading: #0B1E33;
  --text: #152E3A;
  --muted: #5C727D;
  --white: #ffffff;
  --off-white: #F2F6F7;
  --section-bg: #F9F8FB;
  --footer: #071c1f;
  --border: #e5eaee;
  --shadow: 0 16px 32px 0 rgba(7, 28, 31, 0.1);
  --shadow-sm: 0 5px 20px 0 rgba(23, 44, 82, 0.1);
  --heading-font: "Rajdhani", sans-serif;
  --body-font: "Nunito Sans", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; outline: none; }
html { scroll-behavior: smooth; }
body {
  color: var(--text);
  font: 400 16px/1.8 var(--body-font);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  color: var(--heading);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}
h1 { font-size: 60px; }
h2 { font-size: 42px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
p { margin-bottom: 16px; color: var(--text); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col, [class*="col-"] { padding: 0 15px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }
.col-5 { width: 41.666%; }
.col-7 { width: 58.333%; }
.col-md-6 { width: 50%; }
.col-lg-3 { width: 25%; }
.col-lg-4 { width: 33.333%; }
.col-lg-6 { width: 50%; }
.col-lg-7 { width: 58.333%; }
.col-lg-5 { width: 41.666%; }
.col-lg-8 { width: 66.666%; }
.align-center { align-items: center; }
.section-pt { padding: 115px 0 90px; }
.section-pb { padding-bottom: 90px; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-30 { margin-top: 30px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.text-center { text-align: center; }
.text-white, .text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white p { color: var(--white); }
.bg-orange { background: var(--secondary); }
.bg-dark { background: var(--primary); }
.bg-navy { background: var(--primary); }
.bg-light { background: var(--off-white); }
.bg-soft { background: var(--section-bg); }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 17px 40px;
  border: none;
  cursor: pointer;
  line-height: 1.2;
  transition: 0.3s;
}
.theme-btn-1 { background: var(--secondary); color: var(--white); }
.theme-btn-1:hover { background: var(--primary); color: var(--white); }
.theme-btn-2 { background: var(--primary); color: var(--white); margin-right: 10px; }
.theme-btn-2:hover { background: var(--secondary); color: var(--white); }
.theme-btn-white { background: var(--white); color: var(--primary); }
.theme-btn-white:hover { background: var(--primary); color: var(--white); }
.btn-icon { margin-left: 8px; }

/* Header top */
.header-top {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
}
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 22px; }
.header-top a { color: var(--white); }
.header-top i { color: var(--secondary); margin-right: 6px; }
.header-top .social a {
  color: var(--white);
  margin-left: 12px;
  font-size: 13px;
}
.header-top .social a:hover { color: var(--secondary); }
.top-btn {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 0 22px;
  line-height: 42px;
  display: inline-block;
  margin: 0 -15px 0 10px;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.top-btn:hover { background: var(--secondary-dark); }

/* Header main */
.site-header { background: var(--white); position: relative; z-index: 1000; box-shadow: 0 1px 0 var(--border); }
.site-header.sticky {
  position: fixed; top: 0; left: 0; right: 0;
  box-shadow: var(--shadow-sm);
  animation: slideDown 0.35s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img, .logo svg { width: 46px; height: 46px; display: block; }
.logo-text {
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.5px;
}
.logo-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 2px;
}
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  display: block;
  padding: 10px 14px;
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 17px;
  color: var(--heading);
}
.main-nav a:hover, .main-nav a.active { color: var(--secondary); }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-actions a, .header-actions button {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--heading); font-size: 16px; background: none; border: none; cursor: pointer;
}
.header-actions a:hover { color: var(--secondary); }
.header-actions .menu-toggle { display: none; font-size: 22px; }

/* Search overlay */
.search-overlay {
  position: fixed; inset: 0; background: rgba(11,44,61,0.96);
  z-index: 2000; display: none; align-items: center; justify-content: center;
}
.search-overlay.open { display: flex; }
.search-overlay form { width: min(640px, 90%); position: relative; }
.search-overlay input {
  width: 100%; height: 70px; border: 0; border-bottom: 2px solid var(--secondary);
  background: transparent; color: #fff; font-size: 22px; font-family: var(--heading-font);
  padding-right: 50px;
}
.search-close {
  position: absolute; top: 30px; right: 40px; background: none; border: 0;
  color: #fff; font-size: 28px; cursor: pointer;
}

/* Hero */
.hero { position: relative; overflow: hidden; }
.hero-slide {
  display: none;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slide.active { display: flex; align-items: center; }
.hero-slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,44,61,0.55) 0%, rgba(11,44,61,0.15) 55%, rgba(11,44,61,0.05) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
.hero-content h1 {
  color: var(--white);
  font-size: 68px;
  line-height: 1.08;
  text-transform: capitalize;
  margin-bottom: 18px;
}
.hero-content p { color: #fff; font-size: 18px; max-width: 520px; }
.hero-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 12px; z-index: 3;
}
.hero-dots span {
  width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); opacity: 0.45; cursor: pointer;
}
.hero-dots span.active { opacity: 1; background: var(--primary); }

/* Section titles */
.section-subtitle {
  color: var(--secondary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.section-subtitle::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%; background: var(--secondary);
}
.section-title { font-size: 42px; margin-bottom: 18px; }
.section-title span { color: var(--secondary); }

/* About */
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; object-fit: cover; min-height: 430px; }
.about-badge {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--secondary); color: #fff; padding: 18px 22px; text-align: center;
  font-family: var(--heading-font);
}
.about-badge strong { display: block; font-size: 36px; line-height: 1; }
.about-badge span { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }
.play-btn {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  width: 70px; height: 70px; border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary); font-size: 20px; box-shadow: var(--shadow);
}
.feature-list { margin: 20px 0 28px; }
.feature-list li {
  position: relative; padding-left: 28px; margin-bottom: 10px; font-weight: 600;
}
.feature-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary);
  position: absolute; left: 0; top: 2px;
}

/* Service / feature boxes */
.service-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 20px; }
.icon-box i {
  font-size: 36px; color: var(--secondary); margin-bottom: 10px; display: block;
}
.icon-box h4 { margin-bottom: 6px; }
.icon-box p { font-size: 15px; margin-bottom: 0; }

.service-card, .project-card, .team-card, .price-card, .testimonial-card, .info-card, .process-card {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
}
.service-card { padding: 40px 28px 32px; margin-bottom: 30px; text-align: left; height: calc(100% - 30px); }
.service-card:hover, .project-card:hover, .team-card:hover, .price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .icon {
  width: 70px; height: 70px; margin-bottom: 18px;
  color: var(--secondary); font-size: 34px;
}
.service-card h3 { font-size: 22px; }
.service-card p { font-size: 15px; }
.more-link { color: var(--secondary); font-weight: 700; font-family: var(--heading-font); text-transform: uppercase; font-size: 14px; letter-spacing: 0.4px; }
.more-link i { margin-left: 6px; }

/* Projects */
.project-card { margin-bottom: 30px; overflow: hidden; }
.project-card img { width: 100%; height: 250px; object-fit: cover; display: block; }
.project-info { padding: 22px 22px 24px; }
.project-info span { color: var(--secondary); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.project-info h3 { font-size: 20px; margin: 6px 0 0; }
.project-grid-full .project-card img { height: 280px; }

/* Dark feature section */
.specialize .row { align-items: stretch; min-height: 520px; }
.specialize .col-lg-6 { position: relative; z-index: 1; }
.check-list li {
  color: #d7e0e4;
  padding: 8px 0 8px 28px;
  position: relative;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary);
  position: absolute; left: 0;
}
.specialize-img {
  min-height: 520px;
  background-size: cover;
  background-position: center;
}

/* Team */
.team-card { text-align: center; margin-bottom: 30px; padding: 0 0 28px; overflow: hidden; }
.team-card img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-card h4 { margin: 18px 0 4px; }
.team-card span { color: var(--secondary); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.team-social { margin-top: 12px; }
.team-social a {
  display: inline-flex; width: 32px; height: 32px; align-items: center; justify-content: center;
  color: var(--muted); margin: 0 3px;
}
.team-social a:hover { color: var(--secondary); }

/* Process / how we work */
.process-card { padding: 30px 24px; margin-bottom: 30px; position: relative; }
.process-num {
  font-family: var(--heading-font);
  font-size: 42px; color: var(--secondary); font-weight: 700; line-height: 1; margin-bottom: 10px;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-circle {
  width: 150px; height: 150px; margin: 0 auto 12px;
  border: 8px solid var(--border);
  border-top-color: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-size: 32px; font-weight: 700; color: var(--heading);
}
.stat-item { text-align: center; }
.stat-item h5 { margin-bottom: 4px; }
.stat-item p { font-size: 14px; margin: 0; color: var(--muted); }

/* Testimonials */
.testimonial-card { padding: 36px 30px; margin-bottom: 30px; height: calc(100% - 30px); }
.stars { color: #FFB800; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; }
.client { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.client img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.client h5 { margin: 0; font-size: 18px; }
.client span { color: var(--secondary); font-size: 13px; font-weight: 700; }

/* CTA */
.cta-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 70px 0;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(11,44,61,0.82);
}
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-orange {
  background: var(--secondary);
  padding: 50px 0;
}
.cta-orange .cta-inner { color: #fff; }
.cta-orange h2, .cta-orange p { color: #fff; margin-bottom: 8px; }

.call-strip {
  background: var(--primary);
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}
.call-strip-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; z-index: 1;
}
.call-strip h2 { color: #fff; font-size: 40px; }
.call-strip p { color: #c9d4d8; }
.call-person { max-width: 280px; margin-bottom: -6px; }
.call-house { max-width: 320px; mix-blend-mode: lighten; opacity: 0.95; }

/* Pricing */
.price-card { padding: 40px 30px; margin-bottom: 30px; text-align: center; border: 1px solid var(--border); }
.price-card.featured { border-color: var(--secondary); position: relative; }
.price-card.featured::after {
  content: "Popular";
  position: absolute; top: 18px; right: -8px;
  background: var(--secondary); color: #fff;
  font-size: 12px; font-family: var(--heading-font); letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 12px;
}
.price-card h3 { font-size: 22px; }
.price { font-family: var(--heading-font); font-size: 48px; color: var(--secondary); font-weight: 700; line-height: 1; margin: 10px 0 6px; }
.price small { font-size: 16px; color: var(--muted); }
.price-card ul { text-align: left; margin: 22px 0; }
.price-card ul li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px dashed var(--border); }
.price-card ul li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--secondary); position: absolute; left: 0;
}

/* Breadcrumb */
.page-banner {
  background: var(--section-bg);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
}
.page-banner::after {
  content: "";
  position: absolute; right: 8%; top: 10%;
  width: 280px; height: 280px;
  background: url("../images/floorplan.svg") no-repeat center / contain;
  opacity: 0.7;
  pointer-events: none;
}
.page-banner h1 { font-size: 48px; margin-bottom: 8px; }
.breadcrumb { font-weight: 700; font-size: 15px; }
.breadcrumb a { color: var(--secondary); }
.breadcrumb i { color: var(--secondary); margin-right: 4px; }
.breadcrumb span { color: var(--muted); }

/* Contact */
.info-card { padding: 40px 24px; text-align: center; margin-bottom: 30px; border: 1px solid var(--border); }
.info-card i { font-size: 40px; color: var(--secondary); margin-bottom: 12px; }
.info-card h3 { font-size: 20px; }
.form-box {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-row { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.form-group { padding: 0 10px; margin-bottom: 20px; width: 100%; position: relative; }
.form-group.half { width: 50%; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  height: 55px;
  border: 1px solid var(--border);
  padding: 0 18px;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  appearance: none;
}
.form-group textarea { height: 150px; padding-top: 14px; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }
.form-group .fa-icon {
  position: absolute; right: 28px; top: 18px; color: var(--secondary); pointer-events: none;
}
.form-group.half .fa-icon { top: 18px; }
.error-text { color: #d93025; font-size: 13px; display: none; margin-top: 4px; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #d93025; }
.form-group.invalid .error-text { display: block; }
.form-success {
  display: none;
  background: #e8f7ee;
  border: 1px solid #b7e4c7;
  color: #1b7a3d;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-weight: 700;
}
.form-success.show { display: block; }
.form-group label { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; cursor: pointer; }
.form-group label input[type="checkbox"] { width: auto; height: auto; margin-top: 5px; }

/* Legal */
.legal-wrap h2 { font-size: 28px; margin-top: 28px; }
.legal-wrap h3 { font-size: 20px; margin-top: 18px; }
.legal-wrap p, .legal-wrap li { line-height: 1.9; }
.legal-wrap ul { margin: 0 0 16px 18px; list-style: disc; }
.legal-wrap ol { margin: 0 0 16px 18px; }

/* Brand bar */
.brand-bar {
  background: var(--secondary);
  padding: 28px 0;
  overflow: hidden;
}
.brand-track {
  display: flex; gap: 80px; justify-content: center; align-items: center; flex-wrap: wrap;
  color: #fff; font-family: var(--heading-font); font-size: 28px; font-weight: 700; letter-spacing: 1px;
}
.brand-track span { opacity: 0.95; font-style: italic; }

/* Footer */
.site-footer { background: var(--primary); color: #c5d0d4; padding: 80px 0 0; }
.site-footer h4 { color: #fff; font-size: 20px; margin-bottom: 22px; position: relative; }
.footer-about p { color: #c5d0d4; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #c5d0d4; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-social a {
  display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15); color: #fff; margin-right: 6px; margin-top: 10px;
}
.footer-social a:hover { background: var(--secondary); border-color: var(--secondary); }
.newsletter-form { display: flex; flex-wrap: wrap; margin-top: 10px; gap: 0; }
.newsletter-form .form-success { width: 100%; margin-bottom: 10px; }
.newsletter-form input {
  flex: 1; height: 48px; border: 0; padding: 0 14px; font-family: var(--body-font);
}
.newsletter-form button {
  width: 48px; height: 48px; background: var(--secondary); color: #fff; border: 0; cursor: pointer;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding: 18px 0;
  font-size: 14px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: #c5d0d4; margin-left: 16px; }
.footer-bottom a:hover { color: var(--secondary); }

/* Scroll top */
#scrollTop {
  position: fixed; right: 24px; bottom: 30px; width: 42px; height: 42px;
  background: var(--off-white); color: var(--heading);
  display: none; align-items: center; justify-content: center;
  transform: rotate(45deg); box-shadow: var(--shadow-sm); z-index: 50; cursor: pointer; border: 0;
}
#scrollTop i { transform: rotate(-45deg); }
#scrollTop:hover { background: var(--secondary); color: #fff; }
#scrollTop.show { display: flex; }

/* Video modal */
.video-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: min(900px, 100%); background: #000; }
.video-modal video { width: 100%; display: block; }
.video-modal-close {
  position: absolute; top: 20px; right: 28px; color: #fff; font-size: 28px; background: none; border: 0; cursor: pointer;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--primary);
  padding: 10px 0 20px;
}
.mobile-nav a {
  display: block; color: #fff; padding: 10px 20px;
  font-family: var(--heading-font); font-weight: 700; font-size: 17px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--secondary); }

.sidebar-widget { background: var(--white); border: 1px solid var(--border); margin-bottom: 30px; }
.sidebar-widget h4 { background: var(--primary); color: #fff; padding: 16px 20px; margin: 0; }
.service-menu a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--border); font-weight: 700;
  font-family: var(--heading-font);
}
.service-menu a.active, .service-menu a:hover { background: var(--secondary); color: #fff; }
.newsletter-widget { background: var(--primary); color: #fff; padding: 30px 22px; }
.newsletter-widget h4 { color: #fff; background: none; padding: 0; margin-bottom: 12px; }

@media (max-width: 1199px) {
  .hero-content h1 { font-size: 52px; }
  .main-nav a { padding: 10px 10px; font-size: 16px; }
}
@media (max-width: 991px) {
  .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8 { width: 50%; }
  .main-nav { display: none; }
  .header-actions .menu-toggle { display: inline-flex !important; flex-shrink: 0; }
  h1, .hero-content h1 { font-size: 42px; }
  .section-title, .page-banner h1 { font-size: 34px; }
  .hero-slide { min-height: 520px; }
  .cta-inner, .call-strip-inner { flex-direction: column; text-align: center; }
  .header-top-left span.hide-sm { display: none; }
  .section-pt { padding: 80px 0 60px; }
  .page-banner { padding: 70px 0 60px; margin-bottom: 60px; }
}
@media (max-width: 767px) {
  .header-actions a[href="subscribe.html"] { display: none; }
  .header-actions a[data-search-open] { display: none; }
  .top-btn { padding: 0 14px; font-size: 13px; }
  .col-6, .col-4, .col-3, .col-5, .col-7, .col-8,
  .col-md-6, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8,
  .form-group.half { width: 100%; }
  .header-top-left { display: none; }
  .logo-text { font-size: 24px; }
  .hero-slide { min-height: 460px; }
  .hero-content h1 { font-size: 34px; }
  .service-icon-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom a { margin: 0 8px; }
  .form-box { padding: 24px 16px; }
  .brand-track { gap: 28px; font-size: 20px; }
}
