/* ===================================
   Milano Flue Masters - Main Stylesheet
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --gold: #f0a500;
  --light: #f8f9fa;
  --text: #2d2d2d;
  --text-light: #666;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ---- HEADER ---- */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-wrap svg { width: 48px; height: 48px; }
.logo-text { color: var(--white); font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; line-height: 1.1; }
.logo-text span { color: var(--gold); display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; }

.header-phone {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--white); }
.header-phone svg { width: 20px; height: 20px; }

.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.hamburger { display: none; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--white); margin: 5px 0; transition: 0.3s; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 50%, #0f3460 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(233,69,96,0.12) 0%, transparent 70%);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none; border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(233,69,96,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,69,96,0.5); color: var(--white); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2rem; color: var(--gold); }
.stat-label { color: rgba(255,255,255,0.65); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.hero-image-wrap { position: relative; }
.hero-image-wrap svg { width: 100%; max-width: 500px; height: auto; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }

/* ---- SECTION COMMONS ---- */
section { padding: 5rem 0; }
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-subtitle { color: var(--text-light); font-size: 1rem; margin-bottom: 3rem; }
.section-divider { width: 60px; height: 4px; background: var(--accent); border-radius: 2px; margin: 0.75rem 0 1.5rem; }

/* ---- SERVICES ---- */
.services-section { background: var(--light); }

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }

.service-icon { width: 60px; height: 60px; margin-bottom: 1.25rem; }

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.service-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---- BENEFITS ---- */
.benefits-section {
  background: linear-gradient(135deg, var(--primary) 0%, #16213e 100%);
  color: var(--white);
}
.benefits-section .section-title { color: var(--white); }
.benefits-section .section-subtitle { color: rgba(255,255,255,0.7); }

.benefit-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  transition: background 0.2s;
}
.benefit-item:hover { background: rgba(255,255,255,0.09); }

.benefit-icon { font-size: 2rem; flex-shrink: 0; }
.benefit-item h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; }
.benefit-item p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--white); }

.testimonial-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
  border-left: 4px solid var(--gold);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { color: var(--text); font-size: 0.92rem; font-style: italic; margin-bottom: 1.25rem; }
.reviewer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.reviewer-location { color: var(--text-light); font-size: 0.8rem; }

/* ---- CONTACT FORM ---- */
.contact-section { background: var(--light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow);
}

.form-label { font-weight: 600; font-size: 0.88rem; color: var(--primary); margin-bottom: 0.3rem; }

.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

.btn-submit {
  background: linear-gradient(135deg, var(--accent), #c0392b);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(233,69,96,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,69,96,0.5); }

.contact-info-box {
  background: var(--primary);
  border-radius: 16px;
  padding: 3rem 2rem;
  color: var(--white);
  height: 100%;
}
.contact-info-box h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--gold); margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-detail-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-detail h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.95rem; color: var(--white); }
.contact-detail a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* ---- FOOTER ---- */
.site-footer {
  background: #111;
  color: rgba(255,255,255,0.6);
  padding: 2rem 0 1rem;
  font-size: 0.85rem;
}
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 0.75rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ---- THANK YOU / STATIC PAGES ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #16213e);
  padding: 6rem 0 4rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 2.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.page-content { padding: 4rem 0; }
.page-content h2 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--primary); margin: 2rem 0 0.75rem; }
.page-content p, .page-content li { color: var(--text-light); font-size: 0.95rem; margin-bottom: 0.75rem; }

.checkmark-circle {
  width: 100px; height: 100px;
  background: rgba(240,165,0,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); padding: 1rem 1.5rem; gap: 1rem; }
  .hamburger { display: block; }
  .site-header { position: relative; }
}

@media (max-width: 767px) {
  .hero { min-height: auto; padding: 4rem 0; }
  .hero-image-wrap { display: none; }
  .hero-stats { gap: 1.5rem; }
  .contact-form-wrap { padding: 2rem 1rem; }
  .contact-info-box { padding: 2rem 1rem; margin-top: 1.5rem; }
}
