/* =========================================================
   STARLINE CLEANING SERVICES LTD — styles.css
   ========================================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #0D4AA0;
  --primary-dark: #001F4D;
  --primary-light: #1a5fc0;
  --accent: #6FABE3;
  --accent-light: #e8f2fc;
  --text: #222323;
  --text-light: #555a5a;
  --text-muted: #7a8088;
  --bg-light: #F2F5F7;
  --bg-white: #ffffff;
  --border: #D1D5D8;
  --border-light: #e8eaec;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(13, 74, 160, 0.10);
  --shadow-lg: 0 8px 32px rgba(13, 74, 160, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.22s ease;
  --header-h: 84px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography helpers --- */
h1,
h2,
h3,
h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--text-light);
}

.section-label {
  display: block;
  text-align: center;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* --- Layout helpers --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 80px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-header p {
  margin-top: 12px;
  font-size: 1.05rem;
  color: var(--text-light);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

/* Logo — Starlinefulllogo.png is portrait (1024×1536).
   At height:58px, width auto = ~39px. Star + stacked company name. */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 58px;
  width: auto;
  max-width: none;
  display: block;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-social a {
  display: flex;
  align-items: center;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav-social a:hover {
  color: var(--primary);
}

.nav-social svg {
  width: 18px;
  height: 18px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer — opacity/visibility so it animates smoothly */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

.mobile-nav .nav-links {
  /* Must explicitly set display:flex here, or the media query's
     .nav-links { display:none } will win and hide items */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.mobile-nav .nav-links a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.mobile-nav .nav-links a:last-child {
  border-bottom: none;
}

.mobile-nav .mobile-nav-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Facebook icon pushed to far right edge */
.mobile-nav .mobile-nav-footer a:last-child {
  margin-left: auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  box-shadow: 0 4px 14px rgba(13, 74, 160, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   BODY OFFSET (fixed header)
   ========================================================= */
body {
  padding-top: var(--header-h);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(0, 20, 60, 0.82) 0%,
      rgba(0, 20, 60, 0.55) 55%,
      rgba(0, 20, 60, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.18;
}

.hero-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.hero-meta-item svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex-shrink: 0;
}

/* =========================================================
   SERVICE CARDS — Icon Variant (homepage overview)
   ========================================================= */
.services-overview {
  background: var(--bg-light);
}

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

.service-card-icon {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  cursor: default;
}

.service-card-icon:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.service-card-icon .card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-card-icon .card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.service-card-icon h3 {
  font-size: 1.02rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.service-card-icon p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

.section-cta-center {
  text-align: center;
}

/* =========================================================
   TRUST / WHY CHOOSE SECTION
   ========================================================= */
.trust-section {
  background: var(--bg-white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.trust-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.trust-card h3 {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-section {
  background: var(--primary-dark);
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.cta-trust-line {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--primary-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

/* Footer logo — same portrait PNG, inverted white */
.footer-brand .footer-logo img {
  height: 58px;
  width: auto;
  max-width: none;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-width: 280px;
}

.footer-brand .footer-area {
  margin-top: 12px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.footer-col h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer-contact-list a:hover {
  color: #fff;
}

.footer-follow p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  transition: background var(--transition), color var(--transition);
}

.footer-social-links a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-social-links svg {
  width: 17px;
  height: 17px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}

/* =========================================================
   SERVICES PAGE — Image Cards (Core Services)
   ========================================================= */
.services-page-intro {
  background: var(--bg-white);
  padding: 64px 0 48px;
  text-align: center;
}

.services-page-intro h1 {
  margin-bottom: 12px;
}

.services-page-intro p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* Highlight accent in subtitle */
.services-page-intro .accent-text {
  color: var(--primary);
  font-weight: 500;
}

.core-services {
  background: var(--bg-light);
}

.services-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card-img {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card-img:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card-img .card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.service-card-img .card-body {
  padding: 28px;
}

.service-card-img h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card-img>.card-body>p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.check-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Regular & Property Services — 3 col with image */
.regular-services {
  background: var(--bg-white);
}

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

.service-card-sm {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card-sm:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-sm .card-image {
  width: 100%;
  height: 175px;
  object-fit: cover;
}

.service-card-sm .card-body {
  padding: 22px;
}

.service-card-sm h3 {
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.service-card-sm p {
  font-size: 0.86rem;
  margin-bottom: 14px;
}

.service-card-sm .check-list li {
  font-size: 0.84rem;
}

/* Additional Services */
.additional-services {
  background: var(--bg-light);
}

.additional-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 16px;
}

.additional-intro {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.additional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 32px;
}

.additional-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.additional-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.additional-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.additional-tagline {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
  margin-top: 8px;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-page-intro {
  background: var(--bg-white);
  padding: 64px 0 0;
  text-align: center;
}

.about-page-intro h1 {
  margin-bottom: 10px;
}

.about-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 4px;
}

.about-location svg {
  width: 15px;
  height: 15px;
}

.about-content {
  background: var(--bg-white);
  padding: 48px 0 72px;
}

.about-card {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 40px 44px;
}

.about-card-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.about-card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.about-card p {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 18px;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.about-card h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
}

.about-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-tagline {
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-page-hero {
  background: var(--primary-dark);
  padding: 56px 0;
  text-align: center;
}

.contact-page-hero h1 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.contact-page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-layout {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  padding: 56px 0 72px;
}

/* Contact Info Column */
.contact-info-col h2 {
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: var(--primary-dark);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail .detail-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail .detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-detail .detail-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
}

.contact-detail .detail-text a,
.contact-detail .detail-text p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.contact-detail .detail-text a {
  transition: color var(--transition);
}

.contact-detail .detail-text a:hover {
  color: var(--primary);
}

.contact-detail .detail-text small {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

/* Hours Box */
.hours-box {
  background: var(--primary-dark);
  border-radius: var(--radius-md);
  padding: 28px 28px;
  color: #fff;
}

.hours-box h4 {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.hours-row .day {
  color: rgba(255, 255, 255, 0.65);
}

.hours-row .time {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.hours-row .closed {
  color: rgba(255, 255, 255, 0.35);
}

/* Contact Form Column */
.contact-form-col {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form-col h2 {
  font-size: 1.35rem;
  margin-bottom: 28px;
  color: var(--primary-dark);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: var(--primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 74, 160, 0.1);
}

.form-control.error {
  border-color: #c0392b;
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23555a5a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

select.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13, 74, 160, 0.1);
}

.form-submit-row {
  margin-top: 8px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.95rem;
}

.form-trust {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-trust svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* Form success/error messages */
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
  gap: 10px;
  align-items: center;
}

.form-message.show {
  display: flex;
}

.form-message.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.form-message.error {
  background: #fce4e4;
  color: #c0392b;
  border: 1px solid #f5c6c6;
}

.form-message svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Honey pot */
.honeypot {
  display: none !important;
}

/* =========================================================
   PAGE HEADER (generic — used on Services, About intros)
   ========================================================= */
.page-intro-banner {
  background: linear-gradient(135deg, var(--bg-light) 0%, #dde8f5 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  text-align: center;
}

.page-intro-banner h1 {
  margin-bottom: 10px;
}

.page-intro-banner p {
  font-size: 1.05rem;
}

.page-intro-banner .accent-text {
  color: var(--primary);
  font-weight: 500;
}

/* =========================================================
   FADE-IN ANIMATION (scroll reveal)
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger>* {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .services-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .section-pad {
    padding: 56px 0;
  }

  /* Header */
  .nav-links,
  .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 480px;
  }

  .hero-content {
    padding: 56px 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Grids */
  .services-grid-4 {
    grid-template-columns: 1fr;
  }

  .services-grid-2 {
    grid-template-columns: 1fr;
  }

  .services-grid-3 {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .additional-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* About card */
  .about-card {
    padding: 28px 24px;
  }

  .about-card-inner {
    flex-direction: column;
    gap: 16px;
  }

  /* Contact form */
  .contact-form-col {
    padding: 28px 20px;
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

/* Small mobile: ≤ 480px */
@media (max-width: 480px) {
  .additional-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    font-size: 0.85rem;
    padding: 12px 20px;
  }
}

/* =========================================================
   GALLERY PAGE
   ========================================================= */

.gallery-page-hero {
  background: var(--primary-dark);
  padding: 72px 0 56px;
  text-align: center;
}

.gallery-page-hero .section-label {
  color: rgba(255,255,255,0.6);
}

.gallery-page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 10px 0 16px;
}

.gallery-page-hero p {
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Gallery sections */
.gallery-sections { padding: 72px 0; }

.gallery-service-section {
  margin-bottom: 64px;
}
.gallery-service-section:last-child { margin-bottom: 0; }

.gallery-service-section h2 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2.5px solid var(--primary);
  display: inline-block;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 4px;
}

/* Real gallery images */
.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(0, 31, 77, 0.14);
}

/* Placeholder box */
.gallery-placeholder {
  background: #f0f3f8;
  border: 2px dashed #c4cad6;
  border-radius: var(--radius-md);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #a0aab8;
  transition: border-color var(--transition), background var(--transition);
}
.gallery-placeholder:hover {
  border-color: var(--primary);
  background: #e8f0fb;
}
.gallery-placeholder svg { opacity: 0.45; }
.gallery-placeholder span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive grid */
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-page-hero { padding: 56px 0 40px; }
}

/* =========================================================
   REVIEWS / TESTIMONIALS SECTION
   ========================================================= */

.reviews-section {
  background: var(--bg-white);
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: 0 8px 32px rgba(0, 31, 77, 0.1);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  justify-content: center;
  gap: 3px;
  color: #f59e0b;
}

.review-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin: 0;
  quotes: none;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
}

/* =========================================================
   TEAM PHOTO SECTION (about page)
   ========================================================= */

.team-photo-section {
  background: var(--bg-light);
  padding: 72px 0 64px;
}

.team-photo-wrap {
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0, 31, 77, 0.14);
}

.team-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .team-photo-section { padding: 52px 0 48px; }
  .team-photo-wrap { border-radius: var(--radius-md); }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 24, 0.93);
  cursor: pointer;
  animation: lbFadeIn 0.22s ease;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
  animation: lbScaleIn 0.22s ease;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  display: block;
  object-fit: contain;
}

#lightbox-img.lb-anim { animation: lbScaleIn 0.18s ease; }

/* Buttons */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  padding: 0;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(0) scale(1.08);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

/* Animations */
@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lbScaleIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

@media (max-width: 600px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; }
  #lightbox-img  { border-radius: var(--radius-md); }
}