/* =====================================================
   LARMEDOR CLEANING SERVICES — styles.css
   ===================================================== */

:root {
  --navy:        #0d1b3e;
  --navy-mid:    #162452;
  --navy-light:  #1e3269;
  --pale-blue:   #d6e8f7;
  --pale-blue-2: #e8f3fc;
  --sky:         #90bfe8;
  --white:       #ffffff;
  --off-white:   #f4f8fd;
  --mid-gray:    #5a6b82;
  --light-line:  #ccddf0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 5%;
  background: rgba(13,27,62,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(144,191,232,0.2);
  transition: padding .3s, box-shadow .3s;
}

nav.scrolled {
  padding: .85rem 5%;
  box-shadow: 0 4px 24px rgba(13,27,62,.35);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo span { color: var(--sky); }

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none; font-size: .9rem; font-weight: 400;
  color: rgba(255,255,255,.65); transition: color .2s;
}
nav ul a:hover { color: var(--sky); }

.nav-cta {
  background: var(--sky) !important;
  color: var(--navy) !important;
  padding: .55rem 1.4rem; border-radius: 50px;
  font-weight: 600 !important;
  transition: background .2s, transform .15s !important;
}
.nav-cta:hover { background: #b8d8f4 !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--white);
  padding: .25rem;
  line-height: 1;
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  position: fixed; top: 0; right: -280px; bottom: 0;
  width: 260px; z-index: 200;
  background: var(--navy);
  display: flex; flex-direction: column;
  padding: 2rem 1.5rem;
  transition: right .3s ease;
  border-left: 1px solid rgba(144,191,232,.2);
}
.mobile-nav.open { right: 0; }

.mobile-nav-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-size: 2rem; color: var(--white); line-height: 1;
  margin-bottom: 2rem;
}

.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.mobile-nav ul a {
  text-decoration: none; font-size: 1.1rem; color: rgba(255,255,255,.75);
  transition: color .2s;
}
.mobile-nav ul a:hover { color: var(--sky); }

.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 199;
  background: rgba(0,0,0,.5);
}
.mobile-nav-overlay.active { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 7rem 5% 4rem;
  gap: 3rem;
  background:
    radial-gradient(ellipse 65% 70% at 75% 40%, rgba(144,191,232,.12) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 5% 85%, rgba(214,232,247,.5) 0%, transparent 60%),
    var(--off-white);
}

.hero-text { animation: fadeUp .8s ease both; }

.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pale-blue); color: var(--navy-light);
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}
.badge::before { content: '✦'; font-size: .6rem; color: var(--sky); }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.1; font-weight: 900;
  color: var(--navy); margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--navy-light); }

.hero p {
  font-size: 1.1rem; color: var(--mid-gray); line-height: 1.7;
  max-width: 440px; margin-bottom: 2.2rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--navy); color: #fff;
  padding: .85rem 2rem; border-radius: 50px;
  font-size: .95rem; font-weight: 500; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(13,27,62,.25);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(13,27,62,.35);
}

.btn-outline {
  border: 2px solid var(--navy); color: var(--navy);
  padding: .8rem 2rem; border-radius: 50px;
  font-size: .95rem; font-weight: 500; text-decoration: none;
  transition: all .2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeUp .8s .2s ease both;
}

.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(13,27,62,.1), 0 4px 16px rgba(13,27,62,.05);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}

.card-emoji { font-size: 3.5rem; margin-bottom: 1rem; display: block; }

.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin-bottom: .5rem; color: var(--navy);
}
.hero-card p { color: var(--mid-gray); font-size: .95rem; line-height: 1.6; }

.stats-row {
  display: flex; gap: 1.5rem; margin-top: 2rem;
  padding-top: 1.5rem; border-top: 1px solid var(--light-line);
}
.stat { text-align: center; flex: 1; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; color: var(--navy);
  display: inline-block;
}
.stat-lbl { font-size: .78rem; color: var(--mid-gray); font-weight: 500; display: block; }

.float-pill {
  position: absolute; right: -20px; top: 40px;
  background: var(--pale-blue); border-radius: 50px;
  padding: .6rem 1.1rem; font-size: .82rem; font-weight: 600;
  color: var(--navy); box-shadow: 0 6px 20px rgba(13,27,62,.12);
  border: 1px solid var(--sky);
  animation: bob 3s ease-in-out infinite;
}

/* ── SERVICES ── */
.services {
  padding: 6rem 5%;
  background: var(--navy);
}

.section-label {
  font-size: .78rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--sky);
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.15;
  margin-bottom: 3rem;
}

.services .section-title { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(144,191,232,.2);
  border-radius: 20px; padding: 2rem;
  transition: transform .25s, background .25s, border-color .25s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-5px);
  background: rgba(144,191,232,.12);
  border-color: rgba(144,191,232,.5);
}

.s-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(144,191,232,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--white); margin-bottom: .6rem;
}
.service-card p { font-size: .9rem; color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── WHY US ── */
.why {
  padding: 6rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  background: var(--white);
}

.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }

.why-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--off-white); border-radius: 16px; padding: 1.25rem 1.5rem;
  border: 1px solid var(--light-line);
  box-shadow: 0 2px 12px rgba(13,27,62,.04);
  transition: transform .2s;
}
.why-item:hover { transform: translateX(6px); }

.why-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--pale-blue); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}

.why-item h4 { font-weight: 600; margin-bottom: .25rem; font-size: .95rem; color: var(--navy); }
.why-item p { font-size: .88rem; color: var(--mid-gray); line-height: 1.5; }

.why-visual { position: relative; }

.big-stat-card {
  background: var(--navy);
  border-radius: 28px; padding: 3rem;
  color: var(--white); text-align: center;
  box-shadow: 0 20px 60px rgba(13,27,62,.25);
}
.big-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900; line-height: 1;
  margin-bottom: .5rem; display: inline-block; color: var(--sky);
}
.big-stat-card p { font-size: 1rem; opacity: .8; }

.accent-box {
  background: var(--pale-blue);
  border: 1px solid var(--sky);
  border-radius: 20px; padding: 1.5rem 2rem;
  margin-top: 1.25rem; display: flex; align-items: center; gap: 1rem;
  color: var(--navy);
}
.accent-box span { font-size: 1.8rem; }
.accent-box strong { display: block; font-size: 1rem; color: var(--navy); }
.accent-box small { font-size: .85rem; color: var(--mid-gray); }

/* ── PRICING ── */
.pricing {
  background: var(--off-white);
  padding: 6rem 5%; text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

.price-card {
  background: var(--white); border-radius: 24px; padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(13,27,62,.07);
  border: 1.5px solid var(--light-line);
  transition: transform .25s;
  position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-6px); }

.price-card.featured {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 16px 48px rgba(13,27,62,.3);
}
.price-card.featured .price-lbl,
.price-card.featured ul li { color: rgba(255,255,255,.75); }
.price-card.featured .price-amt { color: var(--sky); }

.popular-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--sky); color: var(--navy);
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  padding: .3rem .75rem; border-radius: 50px; text-transform: uppercase;
}

.price-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; color: var(--navy);
}
.price-card.featured .price-name { color: var(--white); }

.price-amt {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 900; color: var(--navy);
  line-height: 1;
}
.price-lbl { font-size: .85rem; color: var(--mid-gray); margin-bottom: 1.5rem; }

.price-card ul {
  list-style: none; text-align: left;
  display: flex; flex-direction: column; gap: .7rem;
  margin-bottom: 2rem;
}
.price-card ul li {
  font-size: .9rem; color: var(--mid-gray);
  display: flex; gap: .5rem; align-items: center;
}
.price-card ul li::before { content: '✓'; color: var(--navy-light); font-weight: 700; }
.price-card.featured ul li::before { color: var(--sky); }

.btn-card {
  display: block; text-align: center; text-decoration: none;
  padding: .8rem; border-radius: 50px; font-weight: 500;
  transition: all .2s;
}
.btn-card-outline {
  border: 2px solid var(--navy); color: var(--navy);
}
.btn-card-outline:hover { background: var(--navy); color: #fff; }
.btn-card-white {
  background: var(--white); color: var(--navy);
}
.btn-card-white:hover { background: var(--sky); color: var(--navy); }

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--pale-blue-2);
  border-top: 1px solid var(--light-line);
  padding: 6rem 5%;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

.testi-card {
  background: var(--white); border-radius: 20px; padding: 2rem;
  box-shadow: 0 4px 16px rgba(13,27,62,.07);
  border: 1px solid var(--light-line);
}

.stars { color: #e8a020; font-size: 1rem; margin-bottom: .8rem; letter-spacing: 2px; }

.testi-card blockquote {
  font-size: .95rem; color: var(--navy);
  line-height: 1.7; margin-bottom: 1.2rem;
  font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; color: var(--sky); font-weight: 700; font-size: .9rem;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.author-role { font-size: .8rem; color: var(--mid-gray); }

/* ── CONTACT ── */
.contact {
  padding: 6rem 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  background: var(--white);
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1rem; color: var(--navy);
}
.contact-info p { color: var(--mid-gray); line-height: 1.7; margin-bottom: 2rem; }

.contact-detail {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: 1rem; font-size: .95rem; color: var(--navy);
}
.c-icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--pale-blue); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field-wrap { display: flex; flex-direction: column; gap: .25rem; }

input, select, textarea {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid var(--light-line); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: .95rem;
  background: var(--off-white); color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(30,50,105,.1);
}
input.invalid, select.invalid { border-color: #d9534f; }
textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: .78rem; color: #d9534f; min-height: 1rem;
}

.submit-btn {
  background: var(--navy); color: var(--white);
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 1rem; font-weight: 500; border: none;
  cursor: pointer; transition: background .2s, transform .15s, opacity .2s;
  align-self: flex-start;
}
.submit-btn:hover:not(:disabled) { background: var(--navy-light); transform: translateY(-2px); }
.submit-btn:disabled { opacity: .65; cursor: not-allowed; }

.form-success {
  display: none;
  background: #eaf7ee; border: 1px solid #a3d9b1;
  color: #1d6b35; border-radius: 12px;
  padding: 1rem 1.25rem; font-size: .95rem; font-weight: 500;
}
.form-success.show { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 3rem 5% 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}

.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 900; color: var(--white);
}
.footer-logo span { color: var(--sky); }

.footer-brand p {
  font-size: .88rem; color: rgba(255,255,255,.4);
  margin-top: .6rem; max-width: 240px; line-height: 1.6;
}

.footer-links h4 {
  color: var(--sky); font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links ul a {
  text-decoration: none; font-size: .88rem;
  color: rgba(255,255,255,.4); transition: color .2s;
}
.footer-links ul a:hover { color: var(--pale-blue); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.3); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: var(--sky);
  border: 1.5px solid var(--sky); font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .2s, background .2s;
  box-shadow: 0 4px 16px rgba(13,27,62,.3);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--sky); color: var(--navy); transform: translateY(-3px); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav ul { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .float-pill { right: 0; }
  .why { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}






