/* =========================
   Cool Breeze HVAC - Styles
   Dual Theme (Light/Dark)
   High performance: no heavy libs
   ========================= */

:root{
  /* Typography */
  --font-sans: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  --fs-0: 0.875rem; /* 14 */
  --fs-1: 1rem;     /* 16 */
  --fs-2: 1.125rem; /* 18 */
  --fs-3: 1.375rem; /* 22 */
  --fs-4: 1.75rem;  /* 28 */
  --fs-5: 2.25rem;  /* 36 */
  --fs-6: clamp(2.25rem, 3.6vw, 3.25rem); /* 36-52 */
  --lh: 1.55;

  /* Spacing */
  --container: 1180px;
  --r: 16px;
  --r2: 22px;
  --s1: 8px;
  --s2: 12px;
  --s3: 16px;
  --s4: 20px;
  --s5: 28px;
  --s6: 40px;
  --s7: 56px;

  /* Theme tokens (default light) */
  --bg: #ffffff;
  --surface: #f6f7f9;
  --surface2: #eef1f5;
  --text: #0b1220;
  --muted: #5b6575;
  --border: rgba(11,18,32,0.12);

  /* Brand / CTA (adjust to your brand) */
  --primary: #1c4a88;          /* blue */
  --primary-contrast: #ffffff;
  --accent: #00c853;           /* orange */
  --ok: #16a34a;
  --warn: #f59e0b;

  /* Shadows */
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow2: 0 12px 40px rgba(0,0,0,0.12);

  color-scheme: light;
}

:root[data-theme="dark"]{
   /* Backgrounds */
  --bg: #06121f;              /* deep navy (logo blue tone) */
  --surface: #0c1b2d;
  --surface2: #11243a;

  /* Text */
  --text: #e6f2ff;
  --muted: #9fb3c8;
  --border: rgba(255,255,255,0.08);

  /* Brand Colors (logo inspired) */
  --primary: #1c4a88;         /* brighter logo blue */
  --primary-contrast: #06121f;
  --accent: #00c853;          /* logo green accent */

  /* Shadow */
  --shadow: 0 12px 40px rgba(0,0,0,0.6);
  --shadow2: 0 20px 60px rgba(0,0,0,0.7);

  color-scheme: dark;
}

:root[data-theme="dark"] .carrier-text h3{
  color: #1c4a88;
}

/* =========================
   Dark Header Override
========================= */

:root[data-theme="dark"] .header{
  background: linear-gradient(
    90deg,
    #06121f,
    #0a1f35
  );
  border-bottom: 1px solid rgba(0, 200, 83, 0.15);
}

/*:root[data-theme="dark"] .navlinks a{
  color: #b6c7d9;
}*/

:root[data-theme="dark"] .navlinks a:hover{
  color: #00c853;
}
:root[data-theme="dark"] .info-box h4, :root[data-theme="dark"] .contact-form h2, :root[data-theme="dark"] .faq-question, :root[data-theme="dark"] .tip-card h3, :root[data-theme="dark"] .mission-card h3, :root[data-theme="dark"] .service-card h3, :root[data-theme="dark"] .benefits-section h2{
  color: #fff
}
/*:root[data-theme="dark"] .actions .btn:hover {color: #fff}*/

:root[data-theme="light"] .section-title h2{ color: #1c4a88; }

/* Base */
*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: var(--font-sans);
  line-height: var(--lh);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration: none; }
button, input, select, textarea{ font:inherit; }

/* Utilities */
.container{ width:min(var(--container), calc(100% - 2*var(--s4))); margin-inline:auto; }
/*.grid{ display:grid; gap: var(--s4); grid-template-columns: repeat(2, 1fr); }*/
.grid{
  display: grid;
  gap: var(--s4);
  grid-template-columns: 1fr;   /* mobile default = 1 column */
}

@media (min-width: 768px){
  .grid{
    grid-template-columns: repeat(2, 1fr);  /* desktop = 2 column */
  }
}

.flex{ display:flex; gap: var(--s3); align-items:center; }
.muted{ color: var(--muted); }
.hide-mobile{ display:none; }
@media (min-width: 900px){ .hide-mobile{ display: initial; } }

.skip-link{
  position:absolute; left:-999px; top:0;
  background: var(--primary);
  color: var(--primary-contrast);
  padding: var(--s2) var(--s3);
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: var(--s3); top: var(--s3); }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);

  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid #e9eef3;
  box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}
:root[data-theme="dark"] .header{
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e9eef3;
}

.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: var(--s3) 0;
  gap: var(--s3);
}
.brand{
  display:flex;
  align-items:center;
  gap: var(--s3);
  min-width: 220px;
}
.brand img{ width: 97px; height:; border-radius: 10px; }
.brand .logo2{ width: 177px; height:; border-radius: 10px; }
.brand .name{ font-weight: 800; letter-spacing: 0.2px; }
.brand .tag{ font-size: var(--fs-0); color: var(--muted); margin-top:2px; }

.navlinks{
  display:none;
  gap: var(--s4);
  align-items:center;
}
@media (min-width: 900px){ .navlinks{ display:flex; } }

.navlinks a{
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  text-transform: uppercase;
  padding: 0 10px;
}
.navlinks a:hover{ color: #1ea7ff;}
.navlinks a::after{
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #1ea7ff, #00c853);
  transition: 0.3s ease;
}

.navlinks a:hover::after{
  width: 100%;
}
.header .icon-btn{
  border: 1px solid #e0e0e0;
  background: #f8f9fa;
  color: #333;
}
.header .icon-btn:hover{
  background: linear-gradient(135deg, #1ea7ff, #00c853);
  color: #fff;
}

.actions{
  display:flex;
  align-items:center;
  gap: var(--s2);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
/*.btn:hover{ transform: translateY(-1px); background: color-mix(in srgb, var(--surface) 70%, transparent); color: #111 }*/
.btn:active{ transform: translateY(0); }
.btn-primary{
  background: linear-gradient(135deg, #1ea7ff, #00c853);
  color: #fff;
  border: none;
}

.btn-primary:hover{
  opacity: 0.9;
}
.btn-accent{
  background: #00a651;
  color: #fff;
  border-color: color-mix(in srgb, #00a651 65%, #00a651);
}
.icon-btn{
  width: 44px; height:44px;
  border-radius: 999px;
  padding:0;
}

.mobile-menu-btn{ display:inline-flex; }
@media (min-width: 900px){ .mobile-menu-btn{ display:none; } }

/* Mobile drawer */
.drawer{
  display:none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.drawer.open{ display:block; }
.drawer a{
  display:block;
  padding: 14px var(--s4);
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-weight:700;
}
.drawer a small{ display:block; color: var(--muted); font-weight:600; margin-top:2px; }

/* Hero */
.hero{
  padding: var(--s7) 0 var(--s6);
}
.hero-wrap{
  display:grid;
  gap: var(--s5);
}
:root[data-theme="dark"] .hero-wrap .card, :root[data-theme="dark"] .hero-wrap input, :root[data-theme="dark"] .hero-wrap select, :root[data-theme="dark"] .hero-wrap textarea { background: #0c1b2d94;}

/* =========================
   Hero Background
========================= */

.hero-bg {
  position: relative;
  background:
    linear-gradient(rgb(11 18 32 / 14%), rgb(11 18 32 / 41%)), url(../images/air-conditioner-healthy-clean.jpg) center / cover no-repeat;
}

/* Dark theme tuning */
:root[data-theme="dark"] .hero-bg {
  /*background:
    linear-gradient(
      rgba(5, 10, 18, 0.85),
      rgba(5, 10, 18, 0.85)
    ),
    url("../img/hero-hvac.jpg") center / cover no-repeat;*/
}

@media (min-width: 900px){
  .hero-wrap{
    grid-template-columns: 1.15fr 0.85fr;
    align-items:center;
  }
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  color: var(--muted);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
}
.h1{
  font-size: var(--fs-6);
  line-height: 1.08;
  margin: var(--s3) 0;
  letter-spacing: -0.6px;
}
.lead{
  font-size: var(--fs-2);
  color: #fff;
  max-width: 60ch;
}
.hero-ctas{ display:flex; flex-wrap:wrap; gap: var(--s3); margin-top: var(--s4); }
.projects-cta .hero-ctas {justify-content: center;}
.trust{
  display:flex;
  flex-wrap:wrap;
  gap: var(--s3);
  margin-top: var(--s4);
}
.badge{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  color: var(--muted);
  font-weight:700;
  font-size: var(--fs-0);
}
.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  padding: var(--s4);
}
.hero-card{
  display:grid;
  gap: var(--s3);
}
.hero-card h2{
  margin:0;
  font-size: var(--fs-3);
}
.form{
  display:grid;
  gap: var(--s2);
}
.form .row{
  display:grid;
  gap: var(--s2);
}
@media (min-width: 520px){
  .form .row{ grid-template-columns: 1fr 1fr; }
}
.field{
  display:grid;
  gap: 8px;
}
label{ font-weight: 700; font-size: var(--fs-0); color: var(--muted); }
input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
}
textarea{ min-height: 96px; resize: vertical; }

/* Sections */
.section{ padding: var(--s6) 0; }
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s4);
}
.section-title h2{
  margin:0;
  font-size: var(--fs-5);
  letter-spacing:-0.4px;
}
.section-title p{ margin:0; color: var(--muted); max-width: 60ch; }
.section-title .w-full{ max-width: none;; }
.cards-3{ grid-template-columns: 1fr; }
@media (min-width: 900px){ .cards-3{ grid-template-columns: repeat(3, 1fr); } }

.service-card h3{ margin:0 0 8px; font-size: var(--fs-3); }
.service-card p{ margin:0 0 14px; color: var(--muted); }
.service-card .meta{ display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px; }
.pill{
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 70%, transparent);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: var(--fs-0);
  display: flex;
  align-items: center;
}

/* =========================
   Carrier Authorization
========================= */

.carrier-wrap{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #ebebeb;  
}

.carrier-logo img{
/*  max-width: 160px;*/
  width: 100%;
  height: auto;
/*  border: 1px solid #ebebeb;*/
}

.carrier-text h3{
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: #1c4a88;
}

/* =========================
   Clients Logo Grid
========================= */

.clients-grid{
  display: grid;
  gap: 25px;
  margin-top: 40px;
  grid-template-columns: repeat(2,1fr);
}

@media (min-width: 768px){
  .clients-grid{
    grid-template-columns: repeat(4,1fr);
  }
}

@media (min-width: 1100px){
  .clients-grid{
    grid-template-columns: repeat(6,1fr);
  }
}

.client-box{
/*  background: var(--surface);*/
  padding: 10px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.client-box:hover{
  transform: translateY(-5px);
}

.client-box img{
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Projects gallery */
.gallery{ grid-template-columns: 1fr; }
@media (min-width: 900px){ .gallery{ grid-template-columns: repeat(3, 1fr); } }
.project{
  overflow:hidden;
  padding:0;
}
.project img{
  width:100%;
  height: 220px;
  object-fit: cover;
}
.project .body{ padding: var(--s4); }
.project .body h3{ margin:0 0 6px; }
.project .body p{ margin:0; color: var(--muted); }

/* CTA Band */
.cta-band{
  border-radius: var(--r2);
  padding: var(--s5);
  background: linear-gradient(135deg,
    color-mix(in srgb, var(--primary) 18%, transparent),
    color-mix(in srgb, var(--accent) 18%, transparent)
  );
  border: 1px solid var(--border);
}
.cta-band h2{ margin:0 0 8px; font-size: var(--fs-5); }
.cta-band p{ margin:0 0 var(--s3); color: var(--muted); }

/* Footer */
/*.footer{
  padding: var(--s6) 0;
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}
.footer-grid{ grid-template-columns: 1fr; }
@media (min-width: 900px){ .footer-grid{ grid-template-columns: 1.2fr 0.8fr 1fr; } }
.footer h3{ margin:0 0 10px; }
.footer a{ color: var(--muted); font-weight: 650; }
.footer a:hover{ color: var(--text); }*/

/* =========================
   Custom Footer Design
========================= */

.custom-footer{
  color: #fff;
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
/*  background: color-mix(in srgb, var(--surface) 70%, transparent);*/
  background: #040c1f;
}

.footer-grid{
  display: grid;
  gap: 50px;
}

@media (min-width: 900px){
  .footer-grid{
    grid-template-columns: repeat(3,1fr);
  }
}

.footer-col h3{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-line{
  display: block;
  width: 40px;
  height: 3px;
  background: red;
  margin-bottom: 20px;
}

.footer-col p{
  color: #ccc;
  line-height: 1.7;
  font-size: 14px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 12px;
}

.footer-links a{
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover{
  color: #fff;
  padding-left: 5px;
}

.contact-item{
  margin-bottom: 18px;
}

.contact-item strong{
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

/* Bottom Bar */

.footer-bottom{
  background: #090d19;
  text-align: center;
  padding: 10px 0;
  margin-top: 50px;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom p{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
/*  margin: 0;*/
  flex-wrap: nowrap;   /* sab ek hi row me rahe */
}

.footer-bottom p a{
  display: inline-flex;
  align-items: center;
}

.footer-bottom p img{
  height: 20px;   /* size adjust kar sakti ho */
  width: auto;
  display: block;
}


/* Sticky mobile CTA bar */
.mobile-cta{
  position: fixed;
  left: 0; right:0; bottom:0;
  z-index: 1200;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border-top: 1px solid var(--border);
  padding: 10px 12px env(safe-area-inset-bottom);
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mobile-cta a{
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  font-weight: 800;
  font-size: 12px;
  color: var(--text);
}
.mobile-cta a strong{ font-size: 12px; }
@media (min-width: 900px){ .mobile-cta{ display:none; } }

/* Motion: subtle, respects reduced motion */
.reveal{ opacity:0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.reveal h1 {color: #fff}
.reveal.show{ opacity:1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal, .btn{ transition:none !important; }
}

/*about*/

.about-hero{
  padding: 100px 0 70px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.about-hero h1{
  font-size: 42px;
  margin-bottom: 15px;
}

.about-hero p{
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* About Grid */
.about-grid{
  display: grid;
  gap: 50px;
}

@media (min-width: 900px){
  .about-grid{
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-image img{
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  width: 100%;
}

/* Mission Section */
.mission-section{
  background: var(--surface);
}

.mission-grid{
  display: grid;
  gap: 25px;
}

@media (min-width: 900px){
  .mission-grid{
    grid-template-columns: repeat(3,1fr);
  }
}

.mission-card{
  background: var(--bg);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.mission-card:hover{
  transform: translateY(-6px);
}

.mission-card h3{
  margin-bottom: 12px;
  color: var(--primary);
}

/* Why Section */
.why-grid{
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

@media (min-width: 900px){
  .why-grid{
    grid-template-columns: repeat(3,1fr);
  }
}

.why-item{
  background: var(--surface);
  padding: 18px 20px;
  border-radius: 12px;
  font-weight: 600;
}

.stats-section{
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  text-align: center;
}

.stats-grid{
  display: grid;
  gap: 40px;
}

@media (min-width: 900px){
  .stats-grid{
    grid-template-columns: repeat(3,1fr);
  }
}

.stat-item h2{
  font-size: 48px;
  margin-bottom: 10px;
  font-weight: 800;
}

.stat-item p{
  font-size: 16px;
  opacity: 0.9;
}

/* =========================
   TIMELINE SECTION
========================= */
/*
.timeline-section{
  background: var(--surface);
}

.timeline{
  position: relative;
  margin-top: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--primary);
}

.timeline-item{
  margin-bottom: 40px;
  position: relative;
}

.timeline-year{
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-content{
  background: var(--bg);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.timeline-content h4{
  margin-bottom: 8px;
}*/

/*services*/
/* Hero */
.services-hero{
  padding: 90px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.services-hero h1{
  font-size: 42px;
  margin-bottom: 12px;
}

.services-hero p{
  font-size: 18px;
  opacity: 0.9;
}

/* Services Grid */
/* Grid Layout */
.cards-3{
  display: grid;
  gap: 40px;
  align-items: stretch;
}

@media (min-width: 900px){
  .cards-3{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Card Structure */
.service-card{
  background: var(--surface);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  display: flex;
  flex-direction: column;
}

/* Heading Equal Height */
.service-card h3{
  margin: 0 0 14px;
  color: var(--primary);
  min-height: 56px;   /* equal heading block */
  display: flex;
  align-items: flex-start;
}

/* Paragraph Spacing */
.service-card p{
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.6;
  flex-grow: 1;   /* makes content area balanced */
}

/* Meta Pills */
.service-card .meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  min-height: 48px;  /* keeps spacing equal */
}

/* Button Section */
.card-actions{
  margin-top: auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Button spacing consistency */
.service-card a.btn{
  margin: 0;
  align-self: flex-start;
  width: auto;
}


/* Benefits */
.benefits-section{
  padding-top: 40px;
  text-align: center;
}

.benefits-section h2{
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--primary);
}

.benefits-list{
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 18px;
}

.benefits-list li{
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text);
}

/*contact*/
.contact-hero{
  padding: 90px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.contact-hero h1{
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-grid{
  display: grid;
  gap: 50px;
}

@media (min-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Info *//* Enhance existing contact-info */

.contact-info h2{
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
}

.info-box{
  margin-bottom: 30px;
}

.info-box h4{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.contact-icon{
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.info-box p{
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.info-box a{
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
}

.info-box a:hover{
  color: var(--primary);
}

/* Responsive heading */
@media (max-width:768px){
  .contact-info h2{
    font-size: 30px;
  }
}


/* Contact Form */
.contact-form{
  background: var(--surface);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2{
  margin-bottom: 20px;
  color: var(--primary);
}
/* Two column form row */
.form-row{
  display: grid;
  gap: 20px;
}

@media (min-width: 768px){
  .form-row{
    grid-template-columns: 1fr 1fr;
  }
}

.form-group{
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.form-group label{
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: var(--primary);
  outline: none;
}

.map-section iframe{
  display: block;
}

/*faq*/
.faq-hero{
  padding: 90px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.faq-hero h1{
  font-size: 40px;
  margin-bottom: 10px;
}

.faq-container{
  max-width: 900px;
  margin: auto;
}

.faq-item{
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.faq-question{
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  color: var(--primary);
}

.faq-answer{
  display: none;
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text);
}

.faq-answer ul{
  padding-left: 18px;
} 

/*tips*/
.tips-hero{
  padding: 90px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.tips-hero h1{
  font-size: 40px;
  margin-bottom: 10px;
}

.tips-grid{
  display: grid;
  gap: 30px;
}

@media (min-width: 900px){
  .tips-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

.tip-card{
  background: var(--surface);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.tip-card:hover{
  transform: translateY(-5px);
}

.tip-card h3{
  margin-bottom: 10px;
  color: var(--primary);
}

.tip-card ul{
  padding-left: 18px;
  margin-top: 10px;
}

.tip-card p{
/*  font-size: 14px;*/
}

.tips-cta{
  text-align: center;
  background: var(--surface);
}

.tips-cta h2{
  margin-bottom: 10px;
  color: var(--primary);
}

.tips-cta p{
  margin-bottom: 20px;
}

/*project*/
.projects-hero{
  padding: 90px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
}

.projects-hero h1{
  font-size: 40px;
  margin-bottom: 10px;
}

/* Filters */
.project-filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-btn{
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--primary);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
}

.filter-btn.active,
.filter-btn:hover{
  background: var(--primary);
  color: #fff;
}

/* Grid */
.projects-grid{
  display: grid;
  gap: 30px;
}

@media (min-width: 900px){
  .projects-grid{
    grid-template-columns: repeat(3,1fr);
  }
}

.project-card{
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.project-card:hover{
  transform: translateY(-6px);
}

.project-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-content{
  padding: 18px;
}

.project-content h3{
  margin-bottom: 8px;
  color: var(--primary);
}

.project-tag{
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
}

/* CTA */
.projects-cta{
  text-align: center;
  background: var(--surface);
}

.projects-cta h2{
  margin-bottom: 10px;
  color: var(--primary);
}
