/*
Theme Name: AHR Cleaning
Description: Custom WordPress theme for AHR Cleaning based on Figma design.
Version: 1.0
Author: Flavia Sigoli
*/

/* ============================================================
   AHR Cleaning — style.css
   Design system: variables, reset, typography, utilities, sections
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --color-white:     #FFFFFF;
  --color-cream:     #F7F4EB;
  --color-light:     #F6F6F6;
  --color-dark:      #1C1C1C;
  --color-dark-2:    #242424;
  --color-gray:      #5A5A5A;
  --color-gray-2:    #636363;
  --color-navy:      #0E294A;
  --color-accent:    #31110F;
  --color-hero-text: #F2F2F2;
}

/* ---- Reset ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--color-dark-2);
  background: var(--color-white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
video, img { width: 100%; display: block; object-fit: cover;}

/* ---- Utilities ---- */
.flex          { display: flex; }
.flex-column   { display: flex; flex-direction: column; }
.align-center  { align-items: center; }
.justify-center{ justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center   { text-align: center; }
.text-white    { color: var(--color-white); }

.gap-8  { gap: 8px; }
.gap-10 { gap: 10px; }
.gap-12 { gap: 12px; }
.gap-15 { gap: 15px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-22 { gap: 22px; }
.gap-24 { gap: 24px; }
.gap-28 { gap: 28px; }
.gap-30 { gap: 30px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.gap-48 { gap: 48px; }
.gap-50 { gap: 50px; }
.gap-56 { gap: 56px; }
.gap-60 { gap: 60px; }
.gap-64 { gap: 64px; }
.gap-74 { gap: 74px; }
.gap-77 { gap: 77px; }
.gap-80 { gap: 80px; }
.gap-84 { gap: 84px; }

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.36px;
  padding: 18px 24px;
  border-radius: 500px;
  border: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: 'Geist', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 21.6px */
  letter-spacing: -0.36px;
  padding: 18px 24px;
  border-radius: 500px;
  border: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.services-pages{
  width: 100%;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section-main {
  position: relative;
  width: 100%;
  height: 800px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 50px;
  align-items: center;
  overflow: hidden;
  color: var(--color-hero-text);
}
.hero-section{
  padding: 25px 0 70px;
}
.social-buttons-hero{
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.social-buttons-hero h6{
  font-size: 32px;
  font-weight: 500;
  line-height: 109%; /* 34.88px */
  letter-spacing: -1.6px;
}
.social-buttons{
  display: flex;
}

.footer-social-icon {
  display: inline-flex;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-social-icon:hover {
  filter: brightness(0.85);
  transform: scale(1.09);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-section-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28,28,28,0) 43%, rgba(28,28,28,1) 100%),
    rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 78px;
  max-width: 1038px;
  width: 100%;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 100px;
  line-height: 0.95em;
  letter-spacing: -0.03em;
  max-width: 1039px;
  text-align: left;
}

/* ============================================================
   WELCOME SECTION
   ============================================================ */
.welcome-section {
  background: linear-gradient(180deg, #1C1C1C 43%, #696969 100%);
  padding: 135px 186px 178px 152px;
}

.welcome-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1037px;
  width: 100%;
  margin: auto;
}

.welcome-text-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  width: 100%;
  max-width: 525px;
}
.welcome-text-col .btn-light{
  align-self: self-start;
}

.welcome-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-hero-text);
}

.welcome-logo {
  max-width: 447px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.bg-gray{
  background-color: #ebebeb;
  width: 100%;
}
/* ============================================================
   PROFESSIONAL CLEANING YOU CAN TRUST (Section 3)
   ============================================================ */
.tech-section {
  padding: 100px 0 70px;
  display: flex;
  justify-content: center;
}

.tech-inner {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.tech-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.tech-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
  text-align: center;
}

.tech-description {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 120%; /* 22.8px */
  letter-spacing: -0.57px;
  color: var(--color-gray);
  text-align: center;
  max-width: 605px;
}

.tech-image {
  max-width: 520px;
  object-fit: cover;
  border-radius: 100px;
}

/* ============================================================
   WHY COLUMBUS SECTION
   ============================================================ */
.why-section {
  padding: 70px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-bottom: 50px;
}

.why-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.why-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
  text-align: center;
}

.why-description {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 1.2em;
  letter-spacing: -0.03em;
  color: var(--color-gray);
  max-width: 683px;
  text-align: center;
}

.why-gallery {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
}

.why-gallery::-webkit-scrollbar { display: none; }
.why-gallery.grabbing { cursor: grabbing; }

.why-gallery-img {
  border-radius: 17px;
  object-fit: cover;
  flex-shrink: 0;
}

.why-gallery-img.tall  { width: 254px; height: 311px; }
.why-gallery-img.short { width: 252px; height: 311px; }

/* Stats bar */
.stats-bar {
  width: 100%;
  max-width: 810px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  height: 180px;
  gap: 12px;
  justify-content: space-between;
  border-radius: 16px;
  padding: 20px 0;
  cursor: default;
  scale: 0.8;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.stat-item svg{
  width: 80px;
  height: auto;
}

.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-accent);
  text-align: center;
  flex: 1;
}

/* ============================================================
   FOLLOW US GALLERY
   ============================================================ */
.follow-section {
  padding: 60px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background: var(--color-white);
}

.follow-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.follow-icon svg path { /* Instagram icon color */ }

.follow-label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
  text-align: center;
}

/* Gallery slider */
.gallery-grid {
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
  max-width: 1038px;
}

.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-grid.grabbing { cursor: grabbing; }

.gallery-item {
  flex-shrink: 0;
  width: 230px;
  height: 300px;
  border-radius: 17px;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ig-frame */

.ig-iframe iframe{
    display: flex;
    width: 900px; 
    height: 760px;
    margin: auto;
}
@media screen and (max-width:980px) {
    .ig-iframe iframe{
        max-width: 500px; 
        height: 495px;
    }
    .follow-container{
        padding: 0 !important;
    }
}
@media screen and (max-width:580px) {
    .ig-iframe iframe{
        width:100% !important;
        width: 390px !important;
        height: 410px;
    }    
}

/* ============================================================
   OUR CLIENTS
   ============================================================ */
.clients-section {
  background: var(--color-white);
  max-width: 1080px;
  padding: 116px 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 74px;
}

.clients-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
  text-align: center;
}

.clients-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: 100%;
}

.testimonial-card {
  background: var(--color-light);
  padding: 30px 50px;
  width: 100%;
  border-radius: 8px;
}

.testimonial-quote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.3em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-dark-2);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  min-height: 700px;
  overflow: hidden;
}

.contact-section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 532px;
  background: var(--color-white);
  border-radius: 24px;
  backdrop-filter: blur(128px);
  -webkit-backdrop-filter: blur(128px);
  padding: 40px 29px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.09em;
  letter-spacing: -0.05em;
  color: var(--color-navy);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.contact-submit {
  align-self: center;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 8px 14px;
  border: 1px solid var(--color-navy);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--color-dark-2);
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%230E294A' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-dark);
}

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

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 28px;
  padding-top: 8px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.contact-info-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

.contact-info-label {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: 1em;
}

.contact-info-value {
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #000000;
  line-height: 1.5em;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .welcome-section { padding: 100px 80px 140px; }
  .welcome-inner { gap: 40px; }
  .welcome-logo { width: 320px; }
  .clients-section { padding: 80px 80px; }
  .stats-bar { padding: 40px 60px; }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 72px; }
  .welcome-section { padding: 80px 40px; }
  .welcome-inner { gap: 32px; }
  .welcome-logo { width: 260px; }
  .follow-section { padding: 60px 24px; }
  .clients-section { padding: 80px 40px; }
}

@media (max-width: 768px) {
  /* HERO */
  .hero-content{gap: 20px;}
  .hero-section-main { height: 537px; }
  .hero-section { padding: 25px 50px 70px; }
  .hero-title { font-size: 36px; }
  .social-buttons-hero h6 { font-size: 20px; letter-spacing: -0.05em; line-height: 1.09em; }
  .social-buttons-hero{flex-direction: column; gap: 20px;}

  /* WELCOME */
  .welcome-section { padding: 48px 24px 80px 36px; }
  .welcome-inner { flex-direction: column-reverse; gap: 40px; }
  .welcome-logo { width: 228px; max-width: 100%; align-self: flex-start; }
  .welcome-heading { max-width: 100%;font-size: 18px;font-weight: 400;line-height: 135%; /* 24.3px */letter-spacing: -0.36px; }

  /* TECH */
  .tech-section { padding: 60px 20px; }
  .tech-image { width: 100%; height: auto; max-width: 320px; border-radius: 32px; }

  /* WHY COLUMBUS */
  .why-text{padding: 0 20px;}
  .why-gallery-img.tall,
  .why-gallery-img.short { width: 180px; height: 240px; }
  .stats-bar { flex-direction: column; padding: 0; gap: 0; align-items: center; height: 100%;}

  .stat-item {
    height: 180px;
    width: 155px;
    padding: 14px;
    scale: 1;
  }

  .stat-item svg{
    width: 40px;
  }

  .stat-label {
    font-size: 18px;
  }
  .why-inner{gap: 20px;}

  /* FOLLOW US */
  .follow-section { padding: 60px 64px; gap: 64px; }
  .gallery-item { width: 180px; height: 240px; }

  /* CLIENTS */
  .clients-section { padding: 64px 28px 80px; gap: 48px; }
  .clients-heading { font-size: 22px; }
  .testimonial-card { padding: 30px 50px; }
  .testimonial-quote { font-size: 18px; }
  .testimonial-author { font-size: 20px; }

  /* CONTACT */
  .contact-section { padding: 10px 20px; min-height: 1010px; }
  .contact-container { max-width: 100%; padding: 40px 29px; }
  .contact-info { flex-direction: column; align-items: center; gap: 20px; }
  .contact-info-label { font-size: 18px; }
  .contact-info-value { font-size: 12.5px; }
}
