/* Centering fix for About Us main image */
.about-main-img {
display: block;
margin: 0 auto;
width: 100%;
max-width: 350px;
border-radius: 12px;
}

/* =========================
   GLOBAL BOX-SIZING
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   BASE STYLES
========================= */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #fff;
}

.dark { color: #333; }
.orange { color: #cc5500; }

/* Hide desktop nav on mobile */
.desktop-nav {
    display: none;
}

/* MOBILE MENU ICON */
#mobile-menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 22px;
    z-index: 999;
}

#mobile-menu-icon div {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* MOBILE DROPDOWN MENU */
#mobile-menu {
    display: none;
    flex-direction: column;
    background: #333;
    width: 100%;
    padding: 15px 20px;
    gap: 12px;
    border-top: 2px solid #ff7a00;
}

#mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

#mobile-menu a:hover {
    color: #ff7a00;
}

.quote-button-mobile {
    background: #cc5500;
    color: white;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 10px;
}


/* =========================
   HEADER
========================= */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background-color: #333;
  color: #fff;
  gap: 15px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-area img {
  height: 60px;
}

.tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
}

/* Header Quote Button - Mobile */
nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

nav .quote-button-header {
    width: 100%; /* Full width on mobile */
    max-width: 300px;
    text-align: center;
    margin-top: 5px; /* small spacing from nav links */
    background-color: #cc5500;
    color: #fff;
    border: 2px solid #cc5500;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

nav .quote-button-header:hover {
    background-color: #e67333;
    border-color: #e67333;
    color: #fff;
}


nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

nav a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  font-size: 14px;
}


/* =========================
   HERO
========================= */
.hero {
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('assets-home/hero-image.png') center/cover no-repeat;
}

.hero h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.hero p {
  font-size: 13px;
  color: #fff;
  margin-top: 10px;
}

.hero-orange { color: #cc5500; }
.hero-white { color: #fff; }

/* =========================
   MAIN CONTENT WRAPPER
========================= */
.content-wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
}

/* =========================
   SECTION TITLES
========================= */
.section-title-left,
.services-title,
#why-choose-us h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
}

#why-choose-us h2 span {
  color: #cc5500;
}

/* =========================
   ABOUT US
========================= */
.about-us-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.about-us-images,
.about-us-text {
  width: 100%;
}

.about-main-img {
  width: 100%;
  max-width: 350px;
  border-radius: 12px;
}

.about-us-text p {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.about-us-fullwidth {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.about-us-fullwidth img {
  width: 100%;
  max-width: 350px;
  border-radius: 10px;
}

/* =========================
   LEARN MORE BUTTONS - MOBILE FRIENDLY
========================= */
.learn-more-btn {
    display: block;        /* makes margin auto work */
    width: 90%;            /* almost full width, keeps padding around */
    max-width: 300px;      /* stops it from getting too wide */
    margin: 20px auto 0;   /* centers horizontally */
    text-align: center;    /* centers the text inside the button */
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    background-color: #cc5500;
    border: 2px solid #cc5500;
    color: #fff;
    transition: 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #e67333;
    border-color: #e67333;
    color: #fff;
}

/* =========================
   QUOTE HERO
========================= */
.quote-hero {
  padding: 60px 20px;
  margin-bottom: 20px;
  background: #00264d;
  text-align: center;
}

.quote-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.quote-text,
.quote-image {
  width: 100%;
  margin: 0;
}

.quote-small {
  font-family: 'Avenir', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #fff;
}

.quote-large {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin: 10px 0;
  color: #cc5500;
}

.quote-description {
  font-size: 14px;
  max-width: 95%;
  margin: 0 auto 20px;
  color: #fff;
}

.quote-button {
  background: #cc5500;
  padding: 12px 25px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  transition: 0.3s ease;
}

.quote-button:hover {
  background: #e67333;
  border-color: #e67333;
}

.quote-image img {
  width: 100%;
  max-width: 300px;
  border: 4px solid #cc5500;
  border-radius: 8px;
}

/* =========================
   SERVICES
========================= */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.service-card {
  background: #fff;
  width: 100%;
  max-width: 350px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  margin: 20px 0 10px;
  color: #cc5500;
}

.service-card p {
  font-size: 14px;
  padding: 0 15px 10px;
}

.service-card ul {
  padding-left: 20px;
  margin: 0 0 10px;
}

.service-card ul li {
  text-align: left;
  list-style-type: disc;
  color: #000;
}

.service-card ul li::marker {
  color: #ff7a00;
}

.service-card:hover {
  transform: translateY(-4px);
}

/* =========================
   CTA BUTTONS
========================= */
.cta-btn {
    background-color: #cc5500;
    color: #fff;
    border: 2px solid #cc5500;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    margin: 20px auto 0; /* spacing above the button */
    transition: 0.3s ease;
    max-width: 300px;
    width: 100%;
}

.cta-btn:hover {
    background-color: #e67333;
    border-color: #e67333;
    color: #fff;
}

/* =========================
   TRANSFORMATIONS - MOBILE (Refined)
========================= */
#transformations {
    background-color: #333;
    padding: 40px 5%;
    width: 100%;
    box-sizing: border-box;
    color: #fff;
}

.transformations-content-wrapper {
    display: flex;
    flex-direction: column; /* stack heading, paragraph, images, button */
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
    padding: 0;
}

.transformations-text-block {
    width: 100%;
    text-align: center;
}

.transformations-text-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.transformations-text-block h2 span {
    color: #cc5500;
}

.transformations-text-block p {
    font-size: 15px;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 20px;
}

#transformations .image-grid {
    display: grid;
    grid-template-columns: 1fr; /* single column */
    gap: 15px;
    width: 100%;
}

#transformations .image-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

/* Button always at bottom */
.transformations-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

.transformations-cta .quote-btn {
    background-color: #cc5500;
    color: #fff;
    border: 2px solid #cc5500;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    transition: 0.3s ease;
}

.transformations-cta .quote-btn:hover {
    background-color: #e67333;
    border-color: #e67333;
    color: #fff;
}


/* =========================
   WHY CHOOSE US
========================= */
#why-choose-us .section-main-content {
  text-align: center;
  padding: 0 10px;
}

#why-choose-us .cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.icon-box {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: #333;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-box i {
  font-size: 36px;
  color: #cc5500;
  margin-bottom: 10px;
}

.icon-box strong {
  font-size: 18px;
  margin-bottom: 5px;
  color: #cc5500;
}

.icon-box p {
  font-size: 14px;
  margin: 0;
}

.why-choose-us-cta .quote-button {
    width: fit-content;      /* button fits content, not full width */
    display: inline-block;
    background-color: #cc5500;
    color: #fff;
    border: 2px solid #cc5500;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
	margin-top: 20px;
	margin-bottom:20px;
}


.why-choose-us-cta .quote-button:hover {
  background: #e67333;
  border-color: #e67333;
}

/* ===========================
   SISTER COMPANY - MOBILE
=========================== */
#sister-company {
    width: 100vw;                 /* full viewport width for background */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    background: #00264d;          /* same as quote-hero */
    color: #fff;
    padding: 30px 15px;           /* smaller padding for mobile */
    box-sizing: border-box;
}

.sister-company-inner {
    display: flex;
    flex-direction: column;       /* stack logo, text, image */
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sister-company-logo img {
    height: 120px;                /* smaller logo for mobile */
    width: auto;
    display: block;
    margin-bottom: 0;
}

.sister-company-text-block {
    text-align: center;           /* center text on mobile */
}

.sister-company-text-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.sister-company-text-block h2 .orange {
    color: #cc5500;               /* makes 'PROPERTY SERVICES' orange */
}

.sister-company-text-block p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 10px 0;
    max-width: 100%;
}

.sister-company-text-block .learn-more-btn {
    display: inline-block;
    background-color: #cc5500;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #cc5500;
    transition: 0.3s ease;
    margin-top: 10px;
}

.sister-company-text-block .learn-more-btn:hover {
    background-color: #e67333;
    border-color: #e67333;
    color: #fff;
}

.sister-company-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}


/* =========================
   FOOTER
========================= */
#site-footer {
  background: #333;
  color: #fff;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.footer-col {
  width: 100%;
}

#site-footer h4 {
  font-family: 'Bebas Neue', sans-serif;
  color: #cc5500;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

#site-footer p,
#site-footer li {
  font-size: 13px;
  color: #fff;
  margin: 5px 0;
}

.footer-col ul {
  padding-left: 0;
  list-style: none;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #cc5500;
}

.social-list li {
  margin-bottom: 5px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
  color: #aaa;
  margin-top: 15px;
}
