/* ===========================
   PRESTIQUE CLEANING – STYLES
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:   #0d2137;
  --teal:   #1a6b7c;
  --gold:   #c9a84c;
  --gold-light: #e8c96a;
  --white:  #ffffff;
  --off-white: #f7f9fb;
  --light-grey: #eef1f5;
  --text:   #1e2d3d;
  --muted:  #6b7f94;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.4rem; }
p  { font-size: 1rem; color: var(--muted); }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section--grey { background: var(--off-white); }
.tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 16px; }
.section-title { margin-bottom: 12px; color: var(--navy); }
.section-subtitle { color: var(--muted); max-width: 560px; margin-bottom: 50px; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--teal); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 8px 0; transition: var(--transition); }
.navbar.scrolled { background: rgba(13,33,55,0.97); backdrop-filter: blur(12px); padding: 6px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.navbar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; }

.navbar__logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); font-weight: 700; letter-spacing: 0.5px; }
.navbar__logo span { color: var(--gold); }
.navbar__logo img { height: 150px; width: auto; }
.navbar__links { display: flex; align-items: center; gap: 36px; }
.navbar__links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.3px; transition: var(--transition); position: relative; }
.navbar__links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); }
.navbar__links a:hover, .navbar__links a.active { color: var(--white); }
.navbar__links a:hover::after, .navbar__links a.active::after { width: 100%; }
.navbar__cta { background: var(--gold); color: var(--navy); padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.navbar__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.navbar__cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--white); font-size: 1.4rem; font-family: 'Playfair Display', serif; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: var(--white); cursor: pointer; background: none; border: none; }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: linear-gradient(135deg, #0d2137 0%, #1a3a52 50%, #0f4a5c 100%); }
.hero__bg { position: absolute; inset: 0; background: url('../images/hero-bg.jpg') center/cover no-repeat; opacity: 0.18; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,33,55,0.85) 0%, rgba(26,107,124,0.4) 100%); }
.hero__content { position: relative; z-index: 1; max-width: 720px; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 28px; }
.hero__title { color: var(--white); margin-bottom: 22px; }
.hero__title span { color: var(--gold); }
.hero__subtitle { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; max-width: 540px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__areas { position: relative; z-index: 1; margin-top: 60px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero__areas span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.hero__area-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); font-size: 0.8rem; padding: 4px 14px; border-radius: 50px; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; animation: bounce 2s infinite; }
.hero__scroll-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(8px);} }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow); border: 1px solid var(--light-grey); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--teal), var(--gold)); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.16); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 22px; }
.service-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.92rem; }
.service-card .learn-more { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-weight: 600; font-size: 0.88rem; margin-top: 18px; transition: var(--transition); }
.service-card .learn-more:hover { gap: 10px; color: var(--gold); }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image { position: relative; border-radius: 20px; overflow: hidden; }
.why-image img { width: 100%; height: 500px; object-fit: cover; border-radius: 20px; }
.why-image__badge { position: absolute; bottom: 28px; left: 28px; background: var(--white); border-radius: 14px; padding: 18px 24px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); }
.why-image__badge strong { display: block; font-size: 2rem; color: var(--navy); font-family: 'Playfair Display', serif; }
.why-image__badge span { font-size: 0.82rem; color: var(--muted); }
.why-points { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.why-point { display: flex; gap: 18px; }
.why-point__icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, rgba(26,107,124,0.12), rgba(201,168,76,0.12)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.why-point h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.why-point p { font-size: 0.9rem; }

/* ── AREAS ── */
.areas-section { background: var(--navy); padding: 80px 0; text-align: center; }
.areas-section .section-title { color: var(--white); }
.areas-section .section-subtitle { color: rgba(255,255,255,0.6); margin: 0 auto 48px; }
.areas-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.area-pill { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.9); padding: 12px 28px; border-radius: 50px; font-size: 0.95rem; font-weight: 500; transition: var(--transition); }
.area-pill:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--light-grey); }
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), var(--navy)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--teal), var(--navy)); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 36px; font-size: 1.05rem; }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: #070f1a; color: rgba(255,255,255,0.65); padding: 60px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer__brand .navbar__logo { font-size: 1.4rem; margin-bottom: 14px; }
.footer__brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer__col h4 { color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer__col ul li a:hover { color: var(--gold); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; margin-bottom: 12px; }
.footer__contact-item span:first-child { color: var(--gold); margin-top: 2px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; transition: var(--transition); }
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #0d2137, #1a3a52); padding: 140px 0 80px; text-align: center; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 20px; overflow: hidden; }
.about-image img { width: 100%; height: 460px; object-fit: cover; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.stat-card { background: var(--off-white); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-card strong { display: block; font-size: 2rem; color: var(--navy); font-family: 'Playfair Display', serif; }
.stat-card span { font-size: 0.82rem; color: var(--muted); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; border-top: 3px solid var(--gold); }
.value-card .icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }

/* ── SERVICES PAGE ── */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 70px 0; border-bottom: 1px solid var(--light-grey); }
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) .service-detail__image { order: -1; }
.service-detail__image img { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; }
.service-detail h2 { color: var(--navy); margin-bottom: 16px; font-size: 2rem; }
.service-detail__list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 30px; }
.service-detail__list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text); }
.service-detail__list li::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* ── GALLERY PAGE ── */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { background: var(--light-grey); color: var(--navy); border: none; padding: 9px 22px; border-radius: 50px; font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-placeholder { background: var(--light-grey); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: var(--muted); font-size: 0.88rem; }
.gallery-placeholder .icon { font-size: 2rem; }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card { display: flex; gap: 18px; align-items: flex-start; background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.contact-info-icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, var(--navy), var(--teal)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white); }
.contact-info-card h4 { color: var(--navy); margin-bottom: 4px; font-size: 0.9rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.contact-info-card a, .contact-info-card p { color: var(--muted); font-size: 0.9rem; }
.contact-info-card a:hover { color: var(--teal); }
.contact-form-wrapper { background: var(--white); border-radius: 20px; padding: 44px; box-shadow: var(--shadow); }
.contact-form-wrapper h3 { color: var(--navy); margin-bottom: 28px; font-size: 1.5rem; }
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
input, select, textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--light-grey); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.92rem; color: var(--text); background: var(--off-white); transition: var(--transition); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(26,107,124,0.08); }
textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #e6f7f0; border: 1px solid #34c78a; color: #1a6b4a; padding: 16px 20px; border-radius: 10px; font-size: 0.9rem; margin-top: 16px; text-align: center; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .navbar__links, .navbar__cta { display: none; }
  .hamburger { display: flex; }
  .navbar { background: rgba(13,33,55,0.97); backdrop-filter: blur(10px); }
  .navbar__logo img { height: 65px; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-detail, .service-detail:nth-child(even) .service-detail__image { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail__image { order: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero { min-height: 100svh; }
  .hero__actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
