* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

.top-bar {
  background: #061d49;
  color: white;
  display: flex;
  justify-content: center;
  gap: 45px;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 15px;
  flex-wrap: wrap;
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    flex-wrap: nowrap;
}

.logo-area {
    width: 60%;
}

.company-logo {
    width: 320px;
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-area {
    width: 35%;
    text-align: right;
    color: #061d49;
}

.contact-area p {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.contact-area small {
    display: block;
    margin-top: 12px;
    color: #ff6600;
    font-size: 16px;
    font-weight: bold;
}

.quote-btn {
  display: inline-block;
  background: #ff6600;
  color: white;
  text-decoration: none;
  padding: 14px 35px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: bold;
}

.contact-area small {
  display: block;
  color: #ff6600;
  margin-top: 5px;
  font-weight: bold;
}

.navbar {
  background: #061d49;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 17px 20px;
  flex-wrap: wrap;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 15px;
}

.hero {
    background:
    linear-gradient(rgba(0,48,110,0.75),
    rgba(0,48,110,0.75)),
    url('commercial-building.jpg');

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 50px;
    gap: 50px;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #ff6600;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.hero-checks {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.primary-btn {
    background: #ff6600;
    color: white;
}

.secondary-btn {
    border: 2px solid white;
    color: white;
}

.insurance-badge {
    width: 170px;
    height: 170px;
    border: 5px solid #ff6600;
    border-radius: 50%;
    background: #08245d;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    flex-shrink: 0;
}

.insurance-badge h3 {
    font-size: 18px;
    margin: 5px 0;
}

.insurance-badge p {
    font-size: 14px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 45px 7%;
  background: white;
}

.service-card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 0 14px rgba(0,0,0,0.12);
  min-height: 405px;
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: white;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.blue {
  background: #061d49;
}

.orange {
  background: #ff6600;
}

.service-card h3 {
  color: #061d49;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.service-card li {
  margin: 10px 0;
  font-size: 15px;
}

.service-card li::before {
  content: "✔ ";
  color: #ff6600;
  font-weight: bold;
}

.learn {
  display: block;
  text-align: center;
  color: white;
  padding: 13px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

.blue-btn {
  background: #061d49;
}

.orange-btn {
  background: #ff6600;
}

.about {
  background: #f4f7fb;
  padding: 55px 12%;
  text-align: center;
}

.about h2 {
  color: #061d49;
  font-size: 36px;
  margin-bottom: 18px;
}

.about p {
  font-size: 19px;
  line-height: 1.7;
}

.contact-section {
  padding: 55px 7%;
  background: white;
  text-align: center;
}

.contact-section h2 {
  color: #061d49;
  font-size: 38px;
}

.contact-section p {
  margin: 12px 0 30px;
  font-size: 18px;
}

.contact-form {
  max-width: 850px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-form textarea {
  grid-column: span 2;
  height: 140px;
  resize: vertical;
}

.contact-form button {
  grid-column: span 2;
  background: #ff6600;
  color: white;
  border: none;
  padding: 18px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  text-transform: uppercase;
}

footer {
  background: #061d49;
  color: white;
  text-align: center;
  padding: 35px 20px;
  line-height: 1.8;
}

footer h3 {
  color: #ff6600;
  font-size: 26px;
}

@media (max-width: 1100px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .insurance-badge {
    display: none;
  }
}

@media (max-width: 850px) {
  .main-header {
    flex-direction: column;
    text-align: center;
  }

  .logo-area {
    flex-direction: column;
  }

  .company-logo {
    width: 240px;
    max-width: 240px;
  }

  .brand-text h1 {
    font-size: 48px;
  }

  .contact-area {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-overlay {
    padding: 45px 6%;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-checks,
  .hero-buttons {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form textarea,
  .contact-form button {
    grid-column: span 1;
  }
}
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 80px;
    background: white;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
}

.company-logo {
    width: 520px;
    max-width: 100%;
    height: auto;
    display: block;
}

.contact-area {
    width: 50%;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-area p {
  font-size: 22px !important;
  font-weight: bold !important;
  margin-bottom: 12px !important;
  text-align: right !important;
}

.contact-area .quote-btn {
  display: inline-block !important;
  background: #ff6600 !important;
  color: white !important;
  padding: 18px 55px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 20px !important;
  margin-top: 10px !important;
}

.contact-area small {
  display: block !important;
  color: #ff6600 !important;
  font-size: 17px !important;
  font-weight: bold !important;
  margin-top: 12px !important;
  text-align: right !important;
}

.main-header {
  padding: 25px 8% !important;
}

.logo-area {
  width: 45% !important;
}

.company-logo {
  width: 560px !important;
  max-width: 100% !important;
}

.contact-area {
  width: 45% !important;
  margin-left: auto !important;
  align-items: flex-end !important;
  text-align: right !important;
}

.contact-area p,
.contact-area small {
  text-align: right !important;
}

.contact-area .quote-btn {
  width: 330px !important;
  text-align: center !important;
}

.main-header {
  display: grid !important;
  grid-template-columns: 1fr 430px !important;
  align-items: center !important;
  padding: 25px 7% !important;
  column-gap: 80px !important;
}

.logo-area {
  width: auto !important;
}

.company-logo {
  width: 620px !important;
  max-width: 100% !important;
}

.contact-area {
  width: 430px !important;
  margin-left: auto !important;
  text-align: right !important;
}

.contact-area p {
  text-align: right !important;
  white-space: nowrap !important;
}

.contact-area .quote-btn {
  width: 360px !important;
  text-align: center !important;
}

.main-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 35px 9% !important;
  background: #fff !important;
}

.logo-area {
  flex: 0 0 48% !important;
}

.company-logo {
  width: 520px !important;
  max-width: 100% !important;
  height: auto !important;
}

.contact-area {
  flex: 0 0 38% !important;
  margin-left: auto !important;
  text-align: right !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
}

.contact-area p {
  font-size: 21px !important;
  font-weight: bold !important;
  margin-bottom: 10px !important;
  white-space: nowrap !important;
}

.contact-area .quote-btn {
  width: 340px !important;
  text-align: center !important;
}

.contact-area small {
  width: 340px !important;
  text-align: center !important;
}

/* HEADER FINAL FIX */

.main-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 35px 120px !important;
  background: white !important;
}

.logo-area {
  width: 520px !important;
  flex: 0 0 520px !important;
}

.company-logo {
  width: 520px !important;
  height: auto !important;
  display: block !important;
}

.contact-area {
  width: 430px !important;
  flex: 0 0 430px !important;
  margin-left: auto !important;
  text-align: right !important;
}

.contact-area p {
  text-align: right !important;
  font-size: 22px !important;
  font-weight: bold !important;
  white-space: nowrap !important;
}

.contact-area .quote-btn {
  width: 370px !important;
  text-align: center !important;
}

.contact-area small {
  display: block !important;
  width: 370px !important;
  text-align: center !important;
}

/* TRUE HEADER RESET */

.main-header {
  display: grid !important;
  grid-template-columns: 520px 430px !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 35px 120px !important;
  background: #fff !important;
}

.logo-area {
  display: contents !important;
}

.company-logo {
  width: 520px !important;
  max-width: 520px !important;
  height: auto !important;
}

.contact-area {
  width: 430px !important;
  text-align: right !important;
}

.contact-area p {
  font-size: 22px !important;
  font-weight: 700 !important;
  margin: 0 0 12px 0 !important;
  white-space: nowrap !important;
}

.contact-area .quote-btn {
  display: inline-block !important;
  width: 360px !important;
  text-align: center !important;
}

.contact-area small {
  display: block !important;
  width: 360px !important;
  margin-left: auto !important;
  text-align: center !important;
}

/* COMMERCIAL PAGE */

.navbar a.active {
  color: #ff5b00;
  border-bottom: 3px solid #ff5b00;
}

.commercial-hero {
  min-height: 220px;
  background:
    linear-gradient(rgba(0, 31, 73, 0.82), rgba(0, 31, 73, 0.75)),
    url("commercial-building.jpg");
  background-size: cover;
  background-position: center;
}

.commercial-hero-content {
  max-width: 650px;
}

.commercial-hero h1 {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 900;
}

.commercial-hero p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.orange-btn,
.outline-btn {
  padding: 16px 30px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}

.orange-btn {
  background: #ff5b00;
  color: white;
}

.outline-btn {
  border: 2px solid white;
  color: white;
}

.hero-checks {
  list-style: none;
  padding: 0;
}

.hero-checks li {
  margin: 12px 0;
  font-weight: 700;
}

.hero-checks li::before {
  content: "✓ ";
  color: #ff5b00;
  font-weight: 900;
}

.insured-circle {
  width: 190px;
  height: 190px;
  border: 7px solid #ff5b00;
  border-radius: 50%;
  background: #06265a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.insured-circle h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 8px 0;
}

.insured-circle p {
  font-size: 13px;
  margin: 0;
}

.section,
.services-section,
.quote-form-section {
  padding: 60px 8%;
  text-align: center;
}

.section h2,
.services-section h2,
.quote-form-section h2 {
  color: #001f49;
  font-size: 32px;
  font-weight: 900;
}

.orange-line {
  width: 60px;
  height: 3px;
  background: #ff5b00;
  margin: 12px auto 35px;
}

.serve-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.serve-card,
.process-card {
  background: white;
  padding: 30px 22px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.serve-card h3,
.process-card h3 {
  color: #001f49;
  font-size: 20px;
  font-weight: 900;
  margin: 15px 0;
}

.serve-card p,
.process-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.5;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #001f49;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 30px;
}

.commercial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: auto;
  text-align: left;
}

.commercial-list p {
  font-size: 18px;
  color: #001f49;
}

.insurance-banner {
  background:
    linear-gradient(rgba(0, 31, 73, 0.95), rgba(0, 31, 73, 0.92)),
    url("cleaning-supplies.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 55px 8%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.insurance-banner .shield {
  width: 150px;
  height: 150px;
  border: 7px solid #ff5b00;
  border-radius: 50%;
  color: #ff5b00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  font-weight: 900;
}

.insurance-banner h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.insurance-banner h2 span {
  color: #ff5b00;
}

.insurance-banner p {
  max-width: 750px;
  font-size: 17px;
  line-height: 1.6;
}

.process-card h3 span {
  background: #ff5b00;
  color: white;
  border-radius: 50%;
  padding: 5px 10px;
  margin-right: 6px;
}

.quote-form-section {
  background: #f3f6fa;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 8px;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 850px;
  margin: auto;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 15px;
}

.quote-form textarea {
  grid-column: span 2;
  height: 120px;
}

.quote-form button {
  grid-column: span 2;
  background: #ff5b00;
  color: white;
  border: none;
  padding: 17px;
  font-size: 17px;
  font-weight: 900;
  border-radius: 4px;
  cursor: pointer;
}

.safe-text {
  margin-top: 18px;
  color: #333;
}

/* MOBILE */
@media (max-width: 900px) {
  .commercial-hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 5%;
  }

  .commercial-hero h1 {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .insured-circle {
    margin-top: 35px;
  }

  .serve-grid,
  .process-grid,
  .commercial-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form textarea,
  .quote-form button {
    grid-column: span 1;
  }

  .insurance-banner {
    flex-direction: column;
    text-align: center;
  }
}

/* FIX HEADER ON ALL PAGES */

.main-header {
  height: 180px;
  padding: 25px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}

.company-logo {
  width: 320px;
  max-width: 45%;
  height: auto;
}

.contact-area {
  text-align: right;
  font-size: 15px;
  color: #001f49;
}

.contact-area p {
  margin: 5px 0;
  font-weight: 700;
}

.contact-area .quote-btn {
  display: inline-block;
  margin-top: 10px;
  background: #ff5b00;
  color: white;
  padding: 14px 45px;
  text-decoration: none;
  font-weight: 900;
  border-radius: 4px;
}

.contact-area small {
  display: block;
  color: #ff5b00;
  margin-top: 8px;
  font-weight: 700;
}

.main-header{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 60px;
}

.company-logo{
    width:260px;
    height:auto;
}

.contact-area{
    text-align:right;
}

.contact-area p{
    margin:5px 0;
    color:#001f49;
    font-weight:700;
}

.quote-btn{
    display:inline-block;
    margin-top:10px;
    padding:14px 32px;
    background:#ff6600;
    color:white;
    text-decoration:none;
    border-radius:4px;
    font-weight:700;
}

.contact-area small{
    display:block;
    margin-top:8px;
    color:#ff6600;
    font-weight:600;
}

```css
/* ===== BREDY COMMERCIAL PAGE OVERRIDES ===== */

.main-header{
    background:#ffffff !important;
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    padding:20px 60px !important;
    min-height:130px !important;
    overflow:hidden !important;
}

.company-logo{
    width:260px !important;
    max-width:260px !important;
    height:auto !important;
    display:block !important;
    object-fit:contain !important;
}

.contact-area{
    text-align:right !important;
    margin-left:auto !important;
}

.contact-area p{
    margin:4px 0 !important;
    font-size:16px !important;
    color:#001f49 !important;
    font-weight:700 !important;
}

.quote-btn{
    display:inline-block !important;
    background:#ff6600 !important;
    color:white !important;
    padding:12px 32px !important;
    text-decoration:none !important;
    border-radius:4px !important;
    margin-top:10px !important;
    font-weight:700 !important;
}

.contact-area small{
    display:block !important;
    margin-top:8px !important;
    color:#ff6600 !important;
    font-weight:700 !important;
}

/* kill giant logo bugs */
header img{
    max-height:120px !important;
}

img.company-logo{
    max-height:120px !important;
    width:260px !important;
}

/* hero section */
.commercial-hero{
    min-height:520px;
    background:
        linear-gradient(rgba(0,31,73,.85),rgba(0,31,73,.85)),
        url("commercial-building.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px;
    color:white;
}

.commercial-hero-content{
    max-width:600px;
}

.commercial-hero h1{
    font-size:56px;
    line-height:1;
    margin-bottom:20px;
    color:white;
}

.commercial-hero p{
    font-size:18px;
    line-height:1.6;
    color:white;
}

.hero-buttons{
    margin-top:25px;
    display:flex;
    gap:15px;
}

.orange-btn{
    background:#ff6600;
    color:white;
    padding:14px 25px;
    text-decoration:none;
    font-weight:bold;
}

.outline-btn{
    border:2px solid white;
    color:white;
    padding:14px 25px;
    text-decoration:none;
}

.hero-checks{
    margin-top:25px;
    padding-left:20px;
}

.hero-checks li{
    margin-bottom:10px;
}

.insured-circle{
    width:180px;
    height:180px;
    border:5px solid #ff6600;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background:#002b63;
    color:white;
    text-align:center;
}

.serve-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:40px;
}

.serve-card{
    background:white;
    padding:30px;
    border-radius:8px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    text-align:center;
}

.section h2{
    text-align:center;
    color:#001f49;
    margin-top:40px;
}

.quote-form{
    max-width:900px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.quote-form textarea{
    grid-column:span 2;
    height:120px;
}

.quote-form button{
    grid-column:span 2;
    background:#ff6600;
    color:white;
    border:none;
    padding:16px;
    font-weight:bold;
}

.insurance-banner{
    background:#002b63;
    color:white;
    padding:60px;
    display:flex;
    align-items:center;
    gap:40px;
}

.insurance-left{
    width:140px;
    height:140px;
    border:5px solid #ff6600;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:60px;
    color:#ff6600;
}

.insurance-right h2{
    font-size:42px;
    margin-bottom:15px;
}

.insurance-right span{
    display:block;
    color:#ff6600;
}

.insurance-right p{
    max-width:700px;
    line-height:1.7;
    font-size:18px;
}

/* FIX HEADER TOP CUT OFF */

.main-header{
    min-height:150px !important;
    padding:30px 70px !important;
    overflow:visible !important;
}

.contact-area{
    padding-top:10px !important;
}

.navbar{
    margin-top:0 !important;
}

.commercial-hero{
    padding-top:80px !important;
}/* FORCE HEADER + NAV STACK CORRECTLY */

.main-header {
    position: static !important;
    height: 155px !important;
    min-height: 155px !important;
    padding: 25px 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    overflow: visible !important;
}

.navbar {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    height: 45px !important;
    margin: 0 !important;
    z-index: 1 !important;
}

.commercial-hero {
    margin-top: 0 !important;
}

/* SAME HEADER FOR HOME + COMMERCIAL */
.main-header{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    padding:20px 5% !important;
    background:white !important;
    height:150px !important;
    box-sizing:border-box !important;
}

.company-logo{
    width:320px !important;
    max-width:320px !important;
    height:auto !important;
}

.contact-area{
    text-align:right !important;
}

.contact-area p{
    margin:5px 0 !important;
    color:#001f49 !important;
    font-weight:800 !important;
    font-size:16px !important;
}

.contact-area .quote-btn{
    display:inline-block !important;
    background:#ff5b00 !important;
    color:white !important;
    padding:14px 40px !important;
    border-radius:4px !important;
    text-decoration:none !important;
    font-weight:900 !important;
    margin-top:8px !important;
}

.contact-area small{
    display:block !important;
    color:#ff5b00 !important;
    font-weight:800 !important;
    margin-top:7px !important;
}

/* FINAL SAME HEADER FIX */

.main-header{
    height:190px !important;
    min-height:190px !important;
    padding:30px 5% 25px 5% !important;
    overflow:visible !important;
}

.company-logo{
    width:320px !important;
    max-width:320px !important;
    height:auto !important;
}

.contact-area{
    padding-top:10px !important;
    text-align:right !important;
}

.contact-area small{
    display:block !important;
    margin-top:12px !important;
    margin-bottom:8px !important;
    color:#ff5b00 !important;
    font-size:15px !important;
    font-weight:800 !important;
}

.navbar{
    position:relative !important;
    z-index:5 !important;
    margin-top:0 !important;
}

/* 3 STEP PROCESS */

.process-section{
    padding:80px 5%;
    background:#f8f9fb;
}

.process-section h2{
    text-align:center;
    color:#001f49;
    font-size:42px;
    margin-bottom:50px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-card{
    background:white;
    padding:40px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
}

.step-number{
    width:70px;
    height:70px;
    background:#ff6600;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    font-weight:bold;
    margin:0 auto 20px;
}

.process-card h3{
    color:#001f49;
    margin-bottom:15px;
}

.process-card p{
    color:#555;
    line-height:1.6;
}

@media(max-width:900px){
    .process-grid{
        grid-template-columns:1fr;
    }
}

/* RESIDENTIAL PAGE */

.residential-hero {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    min-height: 620px;
    background: #f7f9fc;
}

.residential-hero-text {
    padding: 70px 8%;
}

.residential-hero-text h1 {
    font-size: 62px;
    line-height: 1;
    color: #001f49;
    font-weight: 900;
    margin-bottom: 20px;
}

.residential-hero-text h3 {
    color: #ff5b00;
    font-size: 24px;
    margin-bottom: 20px;
}

.residential-hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 30px;
}

.residential-hero-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

.residential-feature {
    display: grid;
    grid-template-columns: 45% 55%;
    background: #001f49;
    color: white;
}

.residential-feature-text {
    padding: 70px 8%;
}

.residential-feature-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.residential-feature-text ul {
    list-style: none;
    padding: 0;
}

.residential-feature-text li {
    font-size: 20px;
    margin: 18px 0;
}

.residential-feature-text li::before {
    content: "✓ ";
    color: #ff5b00;
    font-weight: 900;
}

.residential-feature-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

@media (max-width: 900px) {
    .residential-hero,
    .residential-feature {
        grid-template-columns: 1fr;
    }

    .residential-hero-text h1 {
        font-size: 42px;
    }

    .residential-hero-image img,
    .residential-feature-image img {
        height: 350px;
    }
}

/* AUTO DETAILING PAGE */

.auto-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:700px;
    background:#f7f7f7;
}

.auto-left{
    width:45%;
    padding:60px;
}

.auto-left h1{
    font-size:72px;
    line-height:0.95;
    color:#002868;
    margin-bottom:20px;
    font-weight:900;
}

.auto-left h1 span{
    display:block;
}

.auto-left h3{
    color:#ff6600;
    font-size:36px;
    margin-bottom:25px;
}

.auto-left p{
    font-size:22px;
    color:#333;
    margin-bottom:25px;
    line-height:1.6;
}

.auto-left ul{
    list-style:none;
    padding:0;
    margin-bottom:35px;
}

.auto-left ul li{
    padding:10px 0;
    font-size:20px;
    color:#002868;
    font-weight:700;
}

.auto-left ul li:before{
    content:"✓ ";
    color:#ff6600;
    font-weight:bold;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.orange-btn{
    background:#ff6600;
    color:white;
    padding:18px 35px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

.outline-btn{
    border:2px solid #002868;
    color:#002868;
    padding:18px 35px;
    text-decoration:none;
    border-radius:6px;
    font-weight:bold;
}

.auto-right{
    width:55%;
}

.auto-right img{
    width:100%;
    height:700px;
    object-fit:cover;
    display:block;
}

/* MOVE-IN / MOVE-OUT PAGE */

.movein-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: #f8f8f8;
    gap: 60px;
}

.movein-content {
    flex: 1;
}

.movein-content h1 {
    font-size: 72px;
    line-height: 0.95;
    color: #001f5b;
    margin-bottom: 20px;
    font-weight: 900;
}

.movein-content h2 {
    color: #ff6600;
    font-size: 28px;
    margin-bottom: 20px;
}

.movein-content p {
    font-size: 24px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 25px;
}

.movein-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.movein-list li {
    font-size: 22px;
    color: #001f5b;
    font-weight: 700;
    margin-bottom: 15px;
}

.movein-list li::before {
    content: "✓ ";
    color: #ff6600;
}

.movein-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.movein-image {
    flex: 1;
}

.movein-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* MOVE-IN / MOVE-OUT CLEANING PAGE */

.move-page-hero {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    min-height: 650px;
    background: #f7f9fc;
}

.move-page-text {
    padding: 70px 8%;
}

.move-page-text h1 {
    font-size: 64px;
    line-height: 1;
    color: #001f49;
    font-weight: 900;
    margin-bottom: 20px;
}

.move-page-text h2 {
    color: #ff5b00;
    font-size: 30px;
    margin-bottom: 20px;
}

.move-page-text p {
    font-size: 19px;
    line-height: 1.7;
    color: #222;
    margin-bottom: 25px;
}

.move-page-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.move-page-text li {
    font-size: 20px;
    color: #001f49;
    font-weight: 800;
    margin: 12px 0;
}

.move-page-text li::before {
    content: "✓ ";
    color: #ff5b00;
    font-weight: 900;
}

.move-page-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.move-included {
    padding: 70px 6%;
    background: white;
    text-align: center;
}

.move-included h2 {
    color: #001f49;
    font-size: 40px;
    font-weight: 900;
}

.move-included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
    margin-top: 35px;
}

.move-included-card {
    background: white;
    padding: 30px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.move-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.move-included-card h3 {
    color: #001f49;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.move-included-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.move-banner {
    background: #001f49;
    color: white;
    padding: 60px 8%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.move-banner-icon {
    width: 130px;
    height: 130px;
    border: 5px solid #ff5b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
}

.move-banner h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 12px;
}

.move-banner p {
    font-size: 20px;
    line-height: 1.6;
    max-width: 850px;
}

@media (max-width: 1000px) {
    .move-page-hero {
        grid-template-columns: 1fr;
    }

    .move-page-image img {
        height: 350px;
    }

    .move-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .move-banner {
        flex-direction: column;
        text-align: center;
    }
}

.contact-container {
    display: flex;
    gap: 40px;
    padding: 60px 10%;
    background: #f5f7fa;
}

.contact-info,
.contact-form {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: #0B4F9C;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.contact-form button {
    background: #F58220;
    color: white;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.contact-form button:hover {
    background: #d96d12;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        padding: 30px 20px;
    }
}

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Contact Us | Bredy Cleaning</title>
    <link rel="stylesheet" href="style.css">
</head>

<body>

<nav class="navbar">
    <a href="index.html">HOME</a>
    <a href="commercial.html">COMMERCIAL CLEANING</a>
    <a href="residential.html">RESIDENTIAL CLEANING</a>
    <a href="auto-detailing.html">AUTO DETAILING</a>
    <a href="move-in-out.html">MOVE-IN / MOVE-OUT</a>
    <a href="contact.html">CONTACT US</a>
</nav>

<section class="hero">
    <h1>Contact Bredy Cleaning</h1>
    <p>Residential • Commercial • Auto Detailing • Move-In/Move-Out Cleaning</p>
</section>

<section class="contact-container">

    <div class="contact-info">
        <h2>Get In Touch</h2>

        <p>
            📧 <strong>Email:</strong><br>
            cleaningbybredy@gmail.com
        </p>

        <p>
            📍 <strong>Service Area:</strong><br>
            St. Cloud, Kissimmee, Lake Nona & Orlando
        </p>

        <p>
            🕒 <strong>Hours:</strong><br>
            Monday - Saturday<br>
            8:00 AM - 6:00 PM
        </p>

        <p>
            ✅ <strong>Licensed & Insured</strong>
        </p>

    </div>

    <div class="contact-form">

        <form>

            <input type="text" placeholder="Your Name" required>

            <input type="email" placeholder="Your Email" required>

            <input type="tel" placeholder="Phone Number">

            <select>
                <option>Select Service</option>
                <option>Residential Cleaning</option>
                <option>Commercial Cleaning</option>
                <option>Auto Detailing</option>
                <option>Move-In / Move-Out Cleaning</option>
            </select>

            <textarea rows="6" placeholder="Tell us about your cleaning needs"></textarea>

            <button type="submit">
                GET FREE QUOTE
            </button>

        </form>

    </div>

</section>

</body>
</html>
```
/* GALLERY PAGE */

.gallery-section {
    padding: 60px 8%;
    background: #f4f7fb;
    text-align: center;
}

.gallery-section h2 {
    color: #061d49;
    font-size: 36px;
    margin-bottom: 10px;
}

.gallery-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-card h3 {
    padding: 15px;
    color: #061d49;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.placeholder-image{
    height:250px !important;
    width:100%;
    background:#e5e7eb;
    display:flex !important;
    justify-content:center;
    align-items:center;
    font-size:32px;
    font-weight:800;
    color:#061d49;
    border-bottom:4px solid #ff6600;
}

.gallery-card{
    overflow:hidden;
    transition:all .3s ease;
}

.gallery-card:hover{
    transform:translateY(-8px);
}

.gallery-card h3{
    padding:20px;
    text-align:center;
}

.footer {
    background: #061d49;
    color: white;
    text-align: center;
    padding: 35px 20px;
}

.footer h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.footer p {
    margin: 8px 0;
}

.footer-small {
    font-size: 13px;
    color: #ddd;
}

/* FIX HOME HERO TEXT BEING CUT OFF */
.home-hero,
.hero-section,
.main-hero {
    padding-top: 80px !important;
    min-height: 430px !important;
}

.home-hero h1,
.hero-section h1,
.main-hero h1 {
    margin-top: 40px !important;
}

/* FIX HOME PAGE HERO BALANCE */
#home.hero {
    min-height: 430px !important;
    padding-top: 40px !important;
}

#home .hero-content {
    padding-top: 20px !important;
}

#home h1 {
    margin-top: 0 !important;
}

.commercial-call-btn {
    display: inline-block !important;
    padding: 16px 35px !important;
    background: #ff6600 !important;
    color: #ffffff !important;
    border: 2px solid #ff6600 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 16px !important;
}

.commercial-call-btn:hover {
    background: #061d49 !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

/* FIX COMMERCIAL HERO PHONE BUTTON */
.commercial-hero .outline-btn {
    color: white !important;
    background: rgba(6, 29, 73, 0.75) !important;
    border: 2px solid white !important;
    text-decoration: none !important;
}

.commercial-hero .outline-btn:hover {
    background: white !important;
    color: #061d49 !important;
}

/* CONTACT PAGE */
.contact-hero {
    min-height: 360px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 55px 10%;
    background: #f4f7fb;
}

.contact-info,
.contact-form {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}

.contact-info h2 {
    color: #061d49;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
}

.contact-form button {
    background: #ff6600;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 35px 5%;
    }
}

.success-message {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #eaf8ef;
    color: #0b3d2e;
    border-left: 5px solid #28a745;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.5;
}


/* =======================================
   AUTO DETAILING PAGE - PREMIUM MOCKUP FIX
=======================================*/

.auto-premium-hero {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 520px;
    background: #050b12;
    color: white;
}

.auto-hero-text {
    background: linear-gradient(90deg, #050b12 0%, #071b3d 100%);
    padding: 70px 55px;
}

.eyebrow {
    color: #ff6600;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 800;
}

.auto-premium-hero h1 {
    font-size: 64px;
    line-height: 1;
    color: white;
    margin: 10px 0;
}

.auto-premium-hero h1 span {
    color: #ff6600;
}

.auto-premium-hero h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 18px;
}

.auto-premium-hero p {
    font-size: 18px;
    line-height: 1.5;
    max-width: 500px;
}

.auto-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.auto-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.auto-icons div {
    color: #ff6600;
    font-size: 34px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.25);
}

.auto-icons span {
    display: block;
    color: white;
    font-size: 12px;
    font-weight: 800;
    margin-top: 8px;
    text-transform: uppercase;
}

.auto-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #061d49;
    color: white;
}

.auto-info-strip div {
    text-align: center;
    padding: 26px;
    border-right: 1px solid rgba(255,255,255,.2);
}

.auto-info-strip strong {
    color: #ff6600;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    margin-top: -10px;
    margin-bottom: 35px;
}

.auto-package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    padding: 0 6% 55px;
}

.auto-package-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.14);
    position: relative;
}

.auto-package-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.auto-package-content {
    background: #061d49;
    color: white;
    padding: 22px;
    min-height: 290px;
}

.auto-package-content h3 {
    color: white;
    font-size: 21px;
    margin-bottom: 8px;
}

.orange-text {
    color: #ff6600;
    font-weight: 800;
    margin-bottom: 15px;
}

.auto-package-content ul {
    list-style: none;
    padding: 0;
}

.auto-package-content li {
    margin-bottom: 9px;
    font-size: 14px;
}

.auto-package-content li::before {
    content: "✓ ";
    color: #ff6600;
    font-weight: 900;
}

.popular {
    border: 3px solid #ff6600;
}

.popular-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff6600;
    color: white;
    padding: 8px 12px;
    font-size: 11px;
    font-weight: 900;
    border-radius: 4px;
}

.auto-addons {
    background: #f4f4f4;
    padding: 60px 5%;
}

.auto-addons h2,
.before-after-placeholder h2 {
    text-align: center;
    color: #061d49;
    margin-bottom: 30px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 14px;
}

.addon-grid div {
    background: #061d49;
    color: white;
    border-radius: 6px;
    padding: 22px 10px;
    text-align: center;
    font-weight: 700;
}

.before-after-placeholder {
    padding: 60px 5%;
    text-align: center;
}

.coming-soon-box {
    background: #061d49;
    color: white;
    border-radius: 8px;
    padding: 45px;
    max-width: 620px;
    margin: auto;
}

.coming-soon-box h3 {
    color: #ff6600;
}

.auto-quote-section {
    background: #061d49;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 30px;
    align-items: center;
}

.auto-quote-title {
    color: white;
    text-align: center;
}

.auto-quote-title h2 {
    color: white;
    font-size: 38px;
}

.auto-quote-form {
    background: white;
    padding: 28px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.auto-quote-form textarea {
    grid-column: 1 / 3;
    min-height: 120px;
}

.auto-quote-form button {
    grid-column: 1 / 3;
    background: #ff6600;
    color: white;
    border: none;
    padding: 17px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 5px;
}

.auto-quote-form input,
.auto-quote-form select,
.auto-quote-form textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.success-message {
    grid-column: 1 / 3;
    display: none;
}

@media (max-width: 900px) {
    .auto-premium-hero,
    .auto-quote-section {
        grid-template-columns: 1fr;
    }

    .auto-package-grid,
    .addon-grid {
        grid-template-columns: 1fr;
    }

    .auto-hero-text {
        padding: 40px 25px;
    }

    .auto-premium-hero h1 {
        font-size: 44px;
    }

    .auto-icons {
        grid-template-columns: repeat(2, 1fr);
    }

    .auto-quote-form {
        grid-template-columns: 1fr;
    }

    .auto-quote-form textarea,
    .auto-quote-form button,
    .success-message {
        grid-column: 1;
    }
}

/* FINAL AUTO HERO FIX */

.auto-premium-hero .outline-btn,
.auto-premium-hero a.outline-btn {
    background: #ffffff !important;
    color: #061d49 !important;
    border: 2px solid #ffffff !important;
}

.auto-premium-hero .outline-btn:hover,
.auto-premium-hero a.outline-btn:hover {
    background: #ff6600 !important;
    color: #ffffff !important;
    border-color: #ff6600 !important;
}

.auto-hero-image {
    background: #050b12 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.auto-hero-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 520px !important;
    object-fit: contain !important;
    object-position: center center !important;
}

.date-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.date-field label {
    font-size: 13px;
    font-weight: 800;
    color: #061d49;
}

.date-field input,
.date-field select {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #061d49;
    background: white;
    cursor: pointer;
}

.date-field input:focus,
.date-field select:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
}

/* =======================================
   PREMIUM CONTACT PAGE
=======================================*/

.contact-premium-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 420px;
    background:
        linear-gradient(90deg, rgba(3, 20, 50, 0.98) 0%, rgba(3, 20, 50, 0.9) 45%, rgba(3, 20, 50, 0.25) 100%),
        url("residential-living-room.jpg");
    background-size: cover;
    background-position: center;
    color: white;
}

.contact-hero-left {
    padding: 70px 8%;
}

.contact-premium-hero .eyebrow {
    color: #ff6600;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-premium-hero h1 {
    font-size: 68px;
    line-height: 1;
    margin: 0 0 18px;
    color: white;
    letter-spacing: 1px;
}

.contact-premium-hero h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #ff6600;
    margin-top: 18px;
}

.contact-premium-hero h3 {
    font-size: 25px;
    margin-bottom: 16px;
    color: white;
}

.contact-premium-hero p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 610px;
}

.contact-hero-badges {
    display: flex;
    gap: 35px;
    margin-top: 35px;
}

.contact-hero-badges div {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-weight: 800;
    border-right: 2px solid #ff6600;
    padding-right: 35px;
}

.contact-hero-badges div:last-child {
    border-right: none;
}

.contact-hero-badges div {
    font-size: 36px;
}

.contact-hero-badges span {
    font-size: 16px;
    line-height: 1.3;
}

.contact-hero-badges strong {
    color: #ff6600;
    font-size: 22px;
}

.contact-hero-right {
    position: relative;
}

.insured-box {
    position: absolute;
    right: 55px;
    bottom: 45px;
    background: #061d49;
    color: white;
    padding: 25px 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 26px;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
}

.insured-box strong {
    font-size: 20px;
    line-height: 1.3;
}

.contact-premium-section {
    display: grid;
    grid-template-columns: 42% 58%;
    gap: 25px;
    padding: 35px 7%;
    background: #f5f7fb;
}

.contact-left-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card,
.contact-quote-card {
    background: white;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 8px 26px rgba(0,0,0,.08);
}

.contact-card h2,
.contact-quote-card h2 {
    color: #061d49;
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-card h2::after,
.contact-quote-card h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: #ff6600;
    margin-top: 8px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-info-grid div {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: start;
}

.contact-info-grid h4 {
    color: #061d49;
    margin: 0 0 5px;
    font-size: 15px;
}

.contact-info-grid p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

.contact-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    border: 2px solid #ff6600;
    color: #ff6600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-note {
    font-size: 13px;
    margin-top: -12px;
    margin-bottom: 12px;
    color: #555;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 15px;
}

.price-row strong {
    color: #ff6600;
    white-space: nowrap;
}

.contact-quote-card form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.contact-quote-card input,
.contact-quote-card select,
.contact-quote-card textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d6dce5;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

.contact-quote-card .date-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-quote-card .date-field label {
    color: #061d49;
    font-weight: 800;
    font-size: 13px;
}

.contact-quote-card textarea {
    grid-column: 1 / 4;
    min-height: 120px;
}

.contact-quote-card button {
    grid-column: 1 / 4;
    background: #ff6600;
    color: white;
    border: none;
    padding: 17px;
    font-size: 20px;
    font-weight: 900;
    border-radius: 6px;
    cursor: pointer;
}

.contact-quote-card button:hover {
    background: #e65c00;
}

.secure-note {
    grid-column: 1 / 4;
    text-align: center;
    font-size: 13px;
    color: #061d49;
}

.contact-quote-card .success-message {
    grid-column: 1 / 4;
    display: none;
    background: #e8fff0;
    border-left: 6px solid #22c55e;
    padding: 16px;
    color: #1b5e20;
    font-weight: bold;
    border-radius: 8px;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #061d49;
    color: white;
    padding: 32px 7%;
    gap: 20px;
}

.trust-strip div {
    border-right: 1px solid rgba(255,255,255,.25);
    padding-right: 25px;
    font-size: 15px;
}

.trust-strip div:last-child {
    border-right: none;
}

.trust-strip strong {
    color: white;
    font-size: 18px;
}

@media(max-width: 1000px) {
    .contact-premium-hero,
    .contact-premium-section {
        grid-template-columns: 1fr;
    }

    .contact-premium-hero h1 {
        font-size: 46px;
    }

    .contact-hero-badges {
        flex-direction: column;
    }

    .contact-hero-badges div {
        border-right: none;
        border-bottom: 2px solid #ff6600;
        padding-bottom: 18px;
    }

    .insured-box {
        position: static;
        margin: 20px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-quote-card form {
        grid-template-columns: 1fr;
    }

    .contact-quote-card textarea,
    .contact-quote-card button,
    .secure-note,
    .contact-quote-card .success-message {
        grid-column: 1;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .trust-strip div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.25);
        padding-bottom: 18px;
    }
}

/* RESIDENTIAL PAGE UPGRADES */

.residential-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #061d49;
    color: white;
    padding: 28px 7%;
    gap: 20px;
    text-align: center;
}

.residential-trust-strip div {
    border-right: 1px solid rgba(255,255,255,.25);
    font-size: 15px;
}

.residential-trust-strip div:last-child {
    border-right: none;
}

.residential-trust-strip strong {
    color: white;
    font-size: 18px;
}

.section-subtitle {
    text-align: center;
    max-width: 760px;
    margin: -10px auto 35px;
    color: #444;
    font-size: 17px;
}

.serve-card ul {
    text-align: left;
    margin-top: 18px;
    padding-left: 20px;
}

.serve-card li {
    margin-bottom: 8px;
    color: #061d49;
    font-weight: 600;
}

.residential-checklist-section {
    padding: 70px 7%;
    background: #f5f7fb;
}

.residential-checklist-section h2,
.residential-addons h2 {
    text-align: center;
    color: #061d49;
    font-size: 38px;
    margin-bottom: 15px;
}

.residential-checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.checklist-card {
    background: white;
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    border-top: 5px solid #ff6600;
}

.checklist-card h3 {
    color: #061d49;
    margin-bottom: 16px;
    font-size: 22px;
}

.checklist-card ul {
    padding-left: 20px;
}

.checklist-card li {
    margin-bottom: 9px;
    color: #222;
    line-height: 1.4;
}

.residential-addons {
    background: #f5f7fb;
    padding: 65px 7%;
}

@media(max-width: 1000px) {
    .residential-trust-strip,
    .residential-checklist-grid {
        grid-template-columns: 1fr;
    }

    .residential-trust-strip div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.25);
        padding-bottom: 16px;
    }
}

/* =======================================
   FINAL MOBILE HEADER FIX
=======================================*/

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .main-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 12px !important;
        gap: 10px;
    }

    .main-header a {
        max-width: 100%;
    }

    .company-logo {
        width: 210px !important;
        max-width: 90vw !important;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }

    .contact-area {
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .contact-area p {
        margin: 0;
        font-size: 14px;
        line-height: 1.3;
        word-break: break-word;
    }

    .contact-area a {
        color: #061d49;
    }

    .quote-btn {
        display: block;
        width: 90%;
        max-width: 320px;
        text-align: center;
        margin: 8px auto 0;
        padding: 12px 14px !important;
        font-size: 14px !important;
    }

    .contact-area small {
        font-size: 12px;
    }

    .navbar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
        padding: 8px 4px !important;
        overflow-x: visible !important;
    }

    .navbar a {
        font-size: 12px !important;
        padding: 9px 7px !important;
        white-space: normal !important;
        text-align: center;
    }
}

/* FINAL SAFE MOBILE HEADER FIX */

@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .main-header {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 15px 10px !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
    }

    .main-header a {
        display: block !important;
    }

    .company-logo {
        display: block !important;
        width: 190px !important;
        max-width: 85vw !important;
        height: auto !important;
        margin: 0 auto 10px auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .contact-area {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
        gap: 5px !important;
    }

    .contact-area p {
        margin: 0 !important;
        font-size: 13px !important;
        line-height: 1.3 !important;
    }

    .contact-area small {
        font-size: 12px !important;
    }

    .quote-btn {
        width: 90% !important;
        max-width: 300px !important;
        padding: 11px !important;
        font-size: 13px !important;
        text-align: center !important;
        margin: 8px auto !important;
    }

    .navbar {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
    }

    .navbar a {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 12px !important;
        font-size: 13px !important;
        white-space: normal !important;
    }
}