@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap");
/* ==========================================================================
   WIN LANDSCAPE — Global Design System
   Brand colours extracted directly from the official logo:
     Primary green  #00A848 (WIN wordmark)
     Gold / bronze  #C9973E - #F0C020 (leaf + ring gradient)
   ========================================================================== */

:root {
  /* ---- Brand: Green ---- */
  --green-900: #062E19;
  --green-800: #0A4223;
  --green-700: #0C6B31;
  --green-600: #00A848; /* primary */
  --green-500: #1FB85C;
  --green-100: #E2F5E9;
  --green-50:  #F3FBF6;

  /* ---- Brand: Gold / Bronze ---- */
  --gold-700: #9C7423;
  --gold-600: #C9973E; /* secondary */
  --gold-500: #D8A854;
  --gold-400: #E4B460;
  --gold-300: #EFC33B; /* accent — use sparingly */
  --gold-100: #FBF1DC;

  /* ---- Neutrals ---- */
  --ink:        #15231A;   /* headings */
  --body-text:  #47554C;   /* paragraph copy */
  --muted:      #7C8B81;
  --border:     #E2E7E0;
  --border-strong: #CFD8CE;
  --bg:         #FBFAF6;   /* page background, warm off-white */
  --bg-alt:     #F4F0E6;   /* alternating section background */
  --bg-card:    #FFFFFF;
  --dark:       #0E1E15;   /* corporate dark background (footer, dark sections) */
  --dark-alt:   #142B1E;
  --white:      #FFFFFF;

  /* ---- Typography ---- */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ---- Radius / Shadow / Motion ---- */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(14, 30, 21, 0.06);
  --shadow-md: 0 12px 32px rgba(14, 30, 21, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 30, 21, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition: 260ms var(--ease);

  --container-max: 1240px;
  --header-h: 110px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--bg);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
  margin: 0 0 0.6em;
}
.hero h1, .page-hero h1, .section-title { overflow-wrap: break-word; }

h1 { font-size: 4rem; font-weight: 600; }
h2 { font-size: 2.85rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container-xl {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.section-pad { padding-block: clamp(64px, 9vw, 112px); }
.section-pad-sm { padding-block: clamp(48px, 6vw, 72px); }

.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--dark); color: rgba(255,255,255,0.82); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.68); }
.bg-green { background: var(--green-800); color: rgba(255,255,255,0.85); }
.bg-green h2, .bg-green h3 { color: var(--white); }

/* ==========================================================================
   Section heading kit
   ========================================================================== */

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.text-center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-600);
  display: inline-block;
}
.bg-dark .eyebrow, .bg-green .eyebrow { color: var(--gold-400); }

.section-title { margin-bottom: 0.5em; }
.section-subtitle { color: var(--muted); font-size: 1.08rem; max-width: 60ch; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 168, 72, 0.28);
}
.btn-primary:hover { background: var(--green-600); color: var(--white); border-color: transparent; box-shadow: 0 10px 24px rgba(0, 168, 72, 0.28); }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: transparent; color: var(--ink); border-color: var(--border-strong); box-shadow: none; }

.btn-gold {
  background: var(--gold-600);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(201, 151, 62, 0.3);
}
.btn-gold:hover { background: var(--gold-600); color: var(--white); border-color: transparent; box-shadow: 0 10px 24px rgba(201, 151, 62, 0.3); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); box-shadow: none; }

.btn-white {
  background: var(--white);
  color: var(--green-800);
}
.btn-white:hover { background: var(--white); color: var(--green-800); border-color: transparent; box-shadow: none; }

.btn-sm { padding: 10px 20px; font-size: 0.86rem; }
.btn-block { width: 100%; }
.btn:hover { transform: none; }
.btn-close:hover { opacity: 0.5; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-700);
  font-size: 0.95rem;
}
.link-arrow i { transition: transform var(--transition); }
.link-arrow:hover { color: var(--green-700); }
.link-arrow:hover i { transform: none; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}
.topbar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 9px;
}
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.72); }
.topbar-links a:hover { color: var(--gold-400); }
.topbar-social { display: flex; align-items: center; gap: 14px; }
.topbar-social a { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.topbar-social a:hover { color: rgba(255,255,255,0.6); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 92px; height: 92px; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  border-radius: var(--radius-pill);
  position: relative;
}
.main-nav a:hover { color: var(--ink); background: transparent; }
.main-nav a.active { color: var(--green-700); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.header-phone i { color: var(--green-600); font-size: 1.1rem; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--ink);
}
.nav-toggle:hover { background: var(--white); border-color: var(--border); color: var(--ink); }

/* ==========================================================================
   Hero sections
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; transform: scale(1.015); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,16,10,0.88) 0%, rgba(5,16,10,0.66) 42%, rgba(5,16,10,0.18) 100%),
    linear-gradient(180deg, rgba(9,20,13,0.64) 0%, rgba(9,20,13,0.34) 48%, rgba(9,20,13,0.88) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 760px; text-shadow: 0 2px 22px rgba(0,0,0,0.28); }
.hero .eyebrow { color: var(--gold-300); }
.hero h1 { color: var(--white); }
.hero-lead { font-size: 1.18rem; color: rgba(255,255,255,0.86); max-width: 56ch; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 34px 44px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.22); }
.hero-trust-item strong { display: block; font-family: var(--font-heading); font-size: 1.8rem; color: var(--white); line-height: 1; }
.hero-trust-item span { font-size: 0.82rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; }

/* Inner page hero (shorter) */
.page-hero {
  position: relative;
  padding-block: 150px 64px;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
  min-height: 430px;
  display: flex;
  align-items: flex-end;
}
.page-hero-media { position: absolute; inset: 0; z-index: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.01); }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,16,10,0.88) 0%, rgba(5,16,10,0.66) 48%, rgba(5,16,10,0.28) 100%),
    linear-gradient(180deg, rgba(9,20,13,0.62), rgba(9,20,13,0.82));
}
.page-hero.no-image { background: var(--dark); }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; text-shadow: 0 2px 18px rgba(0,0,0,0.26); }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 60ch; }

/* Breadcrumb */
.breadcrumb-nav { position: relative; z-index: 1; margin-bottom: 18px; }
.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.62);
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: var(--gold-300); }
.breadcrumb-nav li:not(:last-child)::after { content: "/"; margin-left: 8px; color: rgba(255,255,255,0.4); }
.breadcrumb-nav li[aria-current] { color: var(--white); }

/* Light breadcrumb (for pages without dark hero) */
.breadcrumb-light ol { color: var(--muted); }
.breadcrumb-light a { color: var(--body-text); }
.breadcrumb-light a:hover { color: var(--green-700); }
.breadcrumb-light li:not(:last-child)::after { color: var(--border-strong); }
.breadcrumb-light li[aria-current] { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   Trust strip
   ========================================================================== */

.trust-strip { background: var(--green-800); color: var(--white); padding-block: 28px; }
.trust-strip .container-xl { display: flex; flex-wrap: wrap; gap: 20px 40px; align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.95rem; }
.trust-item i { font-size: 1.3rem; color: var(--gold-300); }

/* ==========================================================================
   Cards: Services
   ========================================================================== */

.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: var(--green-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; }

.service-card-lg { display: flex; flex-direction: column; }
.service-card-lg .service-benefit {
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 6px;
}

/* Photo-based service tile (for services.html detail sections) */
.service-tile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding-block: 56px;
  border-bottom: 1px solid var(--border);
}
.service-tile:last-child { border-bottom: none; }
.service-tile.reverse { grid-template-columns: 1.1fr 0.9fr; }
.service-tile.reverse .service-tile-media { order: 2; }
.service-tile-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--green-50); }
.service-tile-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.service-tile:hover .service-tile-media img { transform: scale(1.035); }
.service-tile-body .eyebrow { margin-bottom: 10px; }

/* ==========================================================================
   Cards: Projects / Gallery
   ========================================================================== */

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  background: var(--green-50);
}
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.project-card:hover img { transform: scale(1.06); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(9,20,13,0.88) 0%, rgba(9,20,13,0.15) 55%, rgba(9,20,13,0) 75%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  color: var(--white);
}
.project-tag {
  align-self: flex-start;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.project-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 4px; }
.project-card .project-loc { font-size: 0.85rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px; }

/* Gallery filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-strong);
  background: transparent;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--body-text);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--border-strong); color: var(--body-text); }
.filter-btn.active { background: var(--green-600); border-color: var(--green-600); color: var(--white); }
.filter-btn.active:hover { background: var(--green-600); border-color: var(--green-600); color: var(--white); }

.masonry { columns: 3 220px; column-gap: 24px; }
.masonry .project-card { margin-bottom: 24px; break-inside: avoid; aspect-ratio: auto; }
.masonry .project-card img { height: auto; }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--green-600);
  line-height: 1;
  margin-bottom: 10px;
}
.bg-dark .stat-item strong, .bg-green .stat-item strong { color: var(--gold-300); }
.stat-item span { font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.bg-dark .stat-item span, .bg-green .stat-item span { color: rgba(255,255,255,0.62); }

/* ==========================================================================
   Process steps
   ========================================================================== */

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.process-step .step-no {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--green-100);
  -webkit-text-stroke: 1.5px var(--green-600);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; }

/* ==========================================================================
   Why choose us / values
   ========================================================================== */

.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 32px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.value-item h4 { font-size: 1.02rem; margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}
.testimonial-stars { color: var(--gold-500); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote { font-family: var(--font-heading); font-size: 1.12rem; color: var(--ink); font-weight: 500; line-height: 1.5; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-heading);
}
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--ink); }
.testimonial-person span { font-size: 0.8rem; color: var(--muted); }

/* ==========================================================================
   Blog cards
   ========================================================================== */

.blog-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; height: 100%; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card:hover { border-color: rgba(201,151,62,0.36); }
.blog-card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--green-50); }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-body { padding: 26px 26px 28px; }
.blog-category { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-700); margin-bottom: 10px; display: block; }
.blog-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card p { font-size: 0.92rem; }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 0.8rem; color: var(--muted); margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.blog-meta i { color: var(--gold-600); }

.blog-featured { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; box-shadow: var(--shadow-sm); }
.blog-featured-media { aspect-ratio: 4/3; }
.blog-featured-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { padding: 20px 40px 20px 0; }

/* ==========================================================================
   Awards
   ========================================================================== */

.award-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; aspect-ratio: 4/3; background: var(--green-50); }
.award-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.award-card:hover img { transform: scale(1.05); }
.award-caption { padding: 16px 4px 0; font-size: 0.9rem; color: var(--body-text); }

/* ==========================================================================
   FAQ / Accordion (built on Bootstrap accordion classes)
   ========================================================================== */

.accordion-item { background: transparent; border: none; border-bottom: 1px solid var(--border); }
.accordion-item:first-of-type, .accordion-item:last-of-type { border-radius: 0; }
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  background: transparent;
  padding: 22px 4px;
  box-shadow: none !important;
}
.accordion-button:hover { color: var(--ink); background: transparent; box-shadow: none !important; }
.accordion-button:not(.collapsed) { color: var(--green-700); background: transparent; }
.accordion-button:not(.collapsed):hover { color: var(--green-700); background: transparent; }
.accordion-button::after { flex-shrink: 0; }
.accordion-body { padding: 0 4px 24px; color: var(--body-text); font-size: 0.96rem; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-control, .form-select {
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.form-control:focus, .form-select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px var(--green-100);
}
label.form-label { font-weight: 600; font-size: 0.86rem; color: var(--ink); margin-bottom: 6px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 6px; }

.contact-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }

.contact-info-item { display: flex; gap: 18px; padding-block: 20px; border-bottom: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 50px; height: 50px; border-radius: 50%; background: var(--green-600); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; }
.contact-info-item a { overflow-wrap: anywhere; }
.map-frame { aspect-ratio: 21 / 7; min-height: 320px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ==========================================================================
   Final CTA band
   ========================================================================== */

.cta-band {
  background:
    linear-gradient(105deg, rgba(6,46,25,0.96) 0%, rgba(10,66,35,0.9) 56%, rgba(14,30,21,0.72) 100%),
    url("https://winlandscape.in/wp-content/uploads/2026/08/contact-landscape-consultation-chennai.webp") center/cover;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow-md);
}
.cta-band::after {
  content: none;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); max-width: 46ch; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-band-text { position: relative; z-index: 1; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--dark); color: rgba(255,255,255,0.66); }
.footer-top { padding-block: 72px 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: inline-flex; align-items: center; margin-bottom: 20px; }
.footer-brand img { width: 90px; height: 90px; object-fit: contain; }
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.footer-social a:hover { background: transparent; border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.75); }

.footer-heading { color: var(--white); font-family: var(--font-body); font-weight: 700; font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.66); }
.footer-links a:hover { color: var(--gold-400); }

.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact i { color: var(--gold-400); margin-top: 3px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-block: 22px; }
.footer-bottom .container-xl { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--gold-400); }
.footer-legal { display: flex; gap: 22px; }

/* ==========================================================================
   Mobile off-canvas nav
   ========================================================================== */

.offcanvas { background: var(--bg); max-width: 340px; }
.offcanvas-header { border-bottom: 1px solid var(--border); padding: 18px 22px; }
.offcanvas-body { padding: 24px 22px; }
.mobile-nav li { border-bottom: 1px solid var(--border); }
.mobile-nav a { display: block; padding: 15px 4px; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.mobile-nav a:hover { color: var(--ink); }
.mobile-nav a.active { color: var(--green-700); }
.mobile-nav-meta { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.86rem; color: var(--muted); }

/* ==========================================================================
   Lightbox modal
   ========================================================================== */

#lightboxModal .modal-dialog { max-width: 900px; }
#lightboxModal .modal-content { background: var(--dark); border: none; border-radius: var(--radius-lg); overflow: hidden; }
#lightboxModal .modal-body { padding: 0; }
#lightboxModal img { width: 100%; height: auto; display: block; }
#lightboxModal .btn-close { filter: invert(1); opacity: 0.85; position: absolute; top: 14px; right: 14px; z-index: 2; }
#lightboxModal .btn-close:hover { opacity: 0.85; }
#lightboxModal figcaption { padding: 16px 22px; color: rgba(255,255,255,0.72); font-size: 0.88rem; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: none; color: var(--white); }

/* ==========================================================================
   404 page
   ========================================================================== */

.error-page { min-height: 80vh; display: flex; align-items: center; }
.error-code { font-family: var(--font-heading); font-size: clamp(5rem, 4rem + 5vw, 9rem); color: var(--green-100); -webkit-text-stroke: 2px var(--green-600); line-height: 1; margin-bottom: 8px; }

/* ==========================================================================
   Misc utilities
   ========================================================================== */

.text-gold { color: var(--gold-600); }
.text-green { color: var(--green-700); }
.text-muted-c { color: var(--muted); }
.divider { height: 1px; background: var(--border); border: none; margin-block: 0; }
.rounded-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--green-50); }
.rounded-img img { width: 100%; display: block; transition: transform 700ms var(--ease); }
.rounded-img:has(img):hover img { transform: scale(1.025); }
.shadow-soft { box-shadow: var(--shadow-md); }
.badge-soft {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-50); color: var(--green-700);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 8px 16px; border-radius: var(--radius-pill);
}

/* responsive.css */
/* ==========================================================================
   Responsive overrides
   Breakpoints follow Bootstrap 5 conventions: 1200 / 992 / 768 / 576
   ========================================================================== */

/* ---- Large desktop polish ---- */
@media (min-width: 1400px) {
  .container-xl { max-width: 1320px; }
}

/* ---- Laptop / small desktop ---- */
@media (max-width: 1199.98px) {
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.45rem; }
  h3 { font-size: 1.5rem; }

  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid .footer-col-services { grid-column: 1 / -1; }
  .value-list { grid-template-columns: 1fr; }
}

/* ---- Tablet ---- */
@media (max-width: 991.98px) {
  :root { --header-h: 92px; }

  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.35rem; }

  .topbar { display: none; }

  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .brand img { width: 72px; height: 72px; }

  .hero { min-height: 78vh; }
  .hero-media img { object-position: 58% center; }
  .hero-trust { gap: 24px 32px; }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }

  .service-tile, .service-tile.reverse { grid-template-columns: 1fr; gap: 28px; }
  .service-tile.reverse .service-tile-media { order: 0; }

  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-body { padding: 4px 32px 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand-col { grid-column: 1 / -1; }

  .cta-band { padding: 40px; text-align: center; justify-content: center; }
  .cta-band-text { max-width: 100%; }

  .masonry { columns: 2 220px; }
}

/* ---- Mobile ---- */
@media (max-width: 767.98px) {
  :root { --header-h: 86px; }

  .brand img { width: 66px; height: 66px; }
  .footer-brand img { width: 82px; height: 82px; }

  h1 { line-height: 1.14; }
  h1 { font-size: 1.95rem; }
  h2 { font-size: 1.72rem; }
  h3 { font-size: 1.22rem; }
  .section-pad { padding-block: 56px; }
  .section-pad-sm { padding-block: 40px; }

  .hero { min-height: auto; padding-block: 150px 64px; text-align: left; }
  .hero-content, .page-hero-content { max-width: 100%; }
  .hero h1, .page-hero h1 { font-size: 1.95rem; }
  .hero .eyebrow, .page-hero .eyebrow { max-width: 100%; line-height: 1.45; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { flex-direction: column; gap: 18px; }

  .page-hero { min-height: 340px; padding-block: 120px 48px; }
  .page-hero-media img { object-position: center; }

  .trust-strip .container-xl { flex-direction: column; align-items: flex-start; gap: 14px; }

  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .service-tile { padding-block: 40px; }

  .filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; margin-inline: -24px; padding-inline: 24px; }
  .filter-btn { flex-shrink: 0; }
  .masonry { columns: 1; }

  .cta-band { flex-direction: column; text-align: center; padding: 32px 24px; background-position: center; }
  .cta-band-actions { width: 100%; justify-content: center; }
  .cta-band-actions .btn { flex: 1; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-top { padding-block: 52px 32px; }
  .footer-bottom .container-xl { flex-direction: column; text-align: center; }

  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; font-size: 1.5rem; }

  .contact-panel { padding: 26px; }
  .map-frame { aspect-ratio: 4 / 3; min-height: 260px; }

  .blog-featured-media { aspect-ratio: 16/10; }
  .blog-featured-body { padding: 24px; }
}

/* ---- Small phones ---- */
@media (max-width: 420px) {
  .container-xl { padding-inline: 18px; }
  h1, .hero h1, .page-hero h1 { font-size: 1.78rem; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .btn { width: 100%; }
  .hero-cta { gap: 12px; }
}

/* animations.css */
/* ==========================================================================
   Restrained motion system — soft fade-up, image reveal, gentle zoom.
   Respects prefers-reduced-motion.
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 450ms; }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity 800ms var(--ease); }
.fade-in.is-visible { opacity: 1; }

@keyframes gentle-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.animate-float { animation: gentle-float 5s ease-in-out infinite; }

/* Lightbox modal fade */
.lightbox-fade { transition: opacity 260ms ease; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-stagger > *, .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .animate-float { animation: none; }
  .project-card img, .blog-card-media img, .award-card img { transition: none !important; }
}


/* ===== Full-bleed top sections (override theme content container) ===== */
html { overflow-x: clip; }
.elementor-section.elementor-top-section{ margin-left: calc(50% - 50vw) !important; margin-right: calc(50% - 50vw) !important; max-width: 100vw !important; }
.elementor-section.elementor-top-section > .elementor-container{ max-width: 100%; width: 100%; padding: 0; }\n.elementor-section.elementor-top-section .elementor-widget-container{ margin: 0; }

/* ===== Contact page (id-based, robust) ===== */
.elementor-section.elementor-element-wlcontsec{ margin-left:auto!important; margin-right:auto!important; max-width:var(--container-max)!important; padding-block:clamp(56px,8vw,96px); }
.elementor-section.elementor-element-wlcontsec > .elementor-container{ max-width:var(--container-max)!important; width:100%; padding-inline:24px; align-items:flex-start; }
.elementor-element-wlpanel > .elementor-widget-wrap, .elementor-element-wlpanel > .elementor-element-populated{ background:var(--bg-card); border:1px solid var(--border); border-radius:var(--radius-lg); padding:20px !important; box-shadow:var(--shadow-sm); }
.elementor-element-wlpanel .ff-btn-submit{ background:var(--green-600)!important; border-color:var(--green-600)!important; color:#fff!important; border-radius:var(--radius-pill)!important; padding:14px 30px!important; width:100%; font-weight:600!important; font-size:1rem!important; box-shadow:0 10px 24px rgba(0,168,72,0.28); }
.elementor-element-wlpanel .fluentform form{ display:flex; flex-wrap:wrap; column-gap:16px; }
.elementor-element-wlpanel .fluentform form > *{ flex:1 1 100%; min-width:0; }
.elementor-element-wlpanel .fluentform form > .ff-el-group.wl-half{ flex:1 1 calc(50% - 8px); }
.elementor-element-wlpanel .ff-el-form-control{ border:1.5px solid var(--border-strong)!important; border-radius:var(--radius-sm)!important; padding:12px 16px!important; }
.elementor-element-wlpanel .ff-el-input--label label{ font-weight:600; font-size:0.86rem; color:var(--ink); }
.elementor-element-wlpanel .ff-el-group{ margin-bottom:18px; }
@media(max-width:991.98px){ .elementor-section.elementor-element-wlcontsec > .elementor-container{ flex-direction:column; } .elementor-element-wlpanel .fluentform form > .ff-el-group.wl-half{ flex:1 1 100%; } }
