/* ============================================
   Phoenix Yards — style.css
   Colors: teal #0d6e6e | gold #c9a84c | off-white #f8f6f1 | charcoal #1c1c1e
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #0d6e6e;
  --teal-dark: #095454;
  --teal-light:#1a9090;
  --gold:      #c9a84c;
  --gold-dark: #a8872d;
  --offwhite:  #f8f6f1;
  --charcoal:  #1c1c1e;
  --gray:      #6b7280;
  --gray-light:#e5e3de;
  --white:     #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.18);
  --radius:    10px;
  --transition: .25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { color: var(--gray); }

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--dark { background: var(--charcoal); }
.section--teal { background: var(--teal); }
.section--offwhite { background: var(--offwhite); }
.section--white { background: var(--white); }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.section-title--white { color: var(--white); }
.section-title--center { text-align: center; }

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 3rem;
  color: var(--gray);
}

.section-subtitle--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-subtitle--white { color: rgba(255,255,255,.75); }

.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--teal); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

.btn-sm { padding: .55rem 1.25rem; font-size: .85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* --- NAV --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
}

.nav-logo svg { flex-shrink: 0; }

.nav-logo span.accent { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--teal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: .5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #093d3d 0%, #0d6e6e 40%, #1a5a3a 75%, #0f3828 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,61,61,.6) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
}

.hero-stat span {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.service-card h3 { color: var(--charcoal); margin-bottom: .6rem; }
.service-card p { font-size: .95rem; margin-bottom: 1.25rem; }
.service-card .learn-more {
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition);
}
.service-card:hover .learn-more { gap: .6rem; }

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  height: 500px;
  background: linear-gradient(160deg, #0d6e6e 0%, #1a9090 40%, #c9a84c 100%);
  box-shadow: var(--shadow-lg);
}

.why-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem;
}

.why-badge {
  background: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  box-shadow: var(--shadow-md);
}

.why-badge-icon { font-size: 1.75rem; }
.why-badge strong { display: block; font-size: .95rem; color: var(--charcoal); }
.why-badge span { font-size: .8rem; color: var(--gray); }

.why-list { display: flex; flex-direction: column; gap: 1.5rem; }

.why-item { display: flex; gap: 1rem; }

.why-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(13,110,110,.1), rgba(13,110,110,.2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.why-item h4 { color: var(--charcoal); margin-bottom: .2rem; }
.why-item p { font-size: .92rem; }

/* --- TESTIMONIALS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--teal);
  opacity: .15;
  position: absolute;
  top: .5rem; left: 1.5rem;
  line-height: 1;
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: .75rem; }
.testimonial-card blockquote {
  font-size: .97rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.testimonial-author strong { display: block; font-size: .93rem; color: var(--charcoal); }
.testimonial-author span { font-size: .82rem; color: var(--gray); }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(201,168,76,.08);
}

.cta-banner-content { text-align: center; position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* --- FOOTER --- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.5rem; }

.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
  font-size: .95rem;
}
.social-link:hover { background: var(--teal); color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .85rem;
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { font-size: .9rem; line-height: 1.5; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .83rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* --- PAGE HERO --- */
.page-hero {
  background: linear-gradient(135deg, #093d3d 0%, #0d6e6e 60%, #1a5a3a 100%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; margin-bottom: 1.25rem; font-size: .83rem; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold); }

/* --- SERVICE DETAIL PAGE --- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}

.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-img-placeholder {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  position: relative;
}

.service-img-placeholder.pools { background: linear-gradient(135deg, #0d3b6e, #0d6e6e); }
.service-img-placeholder.land  { background: linear-gradient(135deg, #1a5a3a, #3a8c5a); }
.service-img-placeholder.hard  { background: linear-gradient(135deg, #5a4a2a, #8c7040); }
.service-img-placeholder.irr   { background: linear-gradient(135deg, #0d4b6e, #1a7a9a); }
.service-img-placeholder.light { background: linear-gradient(135deg, #3a2a5a, #6a4a8c); }
.service-img-placeholder.maint { background: linear-gradient(135deg, #2a5a1a, #5a8c3a); }

.img-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: rgba(0,0,0,.5);
  color: var(--white);
  font-size: .75rem;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.service-detail-content h2 { margin-bottom: 1rem; }
.service-detail-content p { margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .95rem; color: var(--charcoal);
}
.feature-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- GALLERY PAGE --- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: .5rem 1.25rem;
  border: 2px solid var(--gray-light);
  background: var(--white);
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.gallery-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.gallery-thumb.pool1  { background: linear-gradient(145deg, #062b3d, #0d5e7a); }
.gallery-thumb.pool2  { background: linear-gradient(145deg, #083a50, #1a8098); }
.gallery-thumb.pool3  { background: linear-gradient(145deg, #053060, #0d6e6e); }
.gallery-thumb.land1  { background: linear-gradient(145deg, #1a3d1a, #4a8c4a); }
.gallery-thumb.land2  { background: linear-gradient(145deg, #1d4a1d, #2e7a2e); }
.gallery-thumb.land3  { background: linear-gradient(145deg, #254025, #5a9a3a); }
.gallery-thumb.hard1  { background: linear-gradient(145deg, #3d2a10, #8c6a30); }
.gallery-thumb.hard2  { background: linear-gradient(145deg, #4a3010, #a07840); }
.gallery-thumb.hard3  { background: linear-gradient(145deg, #302010, #6a5020); }
.gallery-thumb.light1 { background: linear-gradient(145deg, #1a0f30, #5a3a8c); }

.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
}

.gallery-thumb-label {
  position: absolute;
  bottom: .75rem; left: .75rem;
  z-index: 1;
  color: var(--white);
  font-size: .75rem;
  font-weight: 500;
  opacity: .85;
}

.gallery-info {
  background: var(--white);
  padding: 1rem 1.25rem;
}

.gallery-info h4 { color: var(--charcoal); font-size: 1rem; margin-bottom: .2rem; }
.gallery-info span { font-size: .8rem; color: var(--gray); }

.gallery-category-tag {
  display: inline-block;
  background: rgba(13,110,110,.1);
  color: var(--teal);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border-radius: 50px;
  margin-top: .5rem;
}

/* --- DEALS PAGE --- */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.deal-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.deal-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.deal-card.featured { border-color: var(--gold); }

.deal-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--charcoal);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.deal-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}

.deal-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.deal-header h3 { color: var(--charcoal); margin-bottom: .4rem; }
.deal-tagline { font-size: .92rem; color: var(--gray); }

.deal-price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin-top: 1rem;
}

.deal-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--teal);
}

.deal-price del { font-size: 1.1rem; color: var(--gray); }
.deal-price span { font-size: .85rem; color: var(--gray); }

.deal-body { padding: 1.5rem 2rem 2rem; }

.deal-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.5rem;
}

.deal-includes li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--charcoal);
}

.deal-includes li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}

.deal-expiry {
  display: flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: #e05555;
  margin-bottom: 1.5rem;
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 { color: var(--charcoal); margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(13,110,110,.1), rgba(13,110,110,.2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.contact-detail strong { display: block; color: var(--charcoal); margin-bottom: .2rem; font-size: .95rem; }
.contact-detail span { font-size: .9rem; color: var(--gray); }

.map-placeholder {
  margin-top: 2rem;
  height: 220px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #d4e8e8, #b0d8d8);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  font-size: .9rem;
  color: var(--teal);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 { color: var(--charcoal); margin-bottom: 1.75rem; }

.form-group { margin-bottom: 1.35rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .4rem;
}

input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--offwhite);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,110,110,.12);
  background: var(--white);
}

textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: .8rem; color: var(--gray); margin-top: 1rem; text-align: center; }

/* --- ABOUT PAGE --- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 { margin-bottom: 1.25rem; }
.story-content p { margin-bottom: 1.25rem; }

.story-img {
  border-radius: 16px;
  height: 460px;
  background: linear-gradient(145deg, #0d3b6e, #0d6e6e, #1a5a3a);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
}

.value-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.value-card h4 { color: var(--charcoal); margin-bottom: .4rem; }
.value-card p { font-size: .88rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-photo {
  height: 260px;
  position: relative;
}

.team-photo.p1 { background: linear-gradient(160deg, #0d4050, #0d6e6e); }
.team-photo.p2 { background: linear-gradient(160deg, #1a3d2a, #3a8c5a); }
.team-photo.p3 { background: linear-gradient(160deg, #3d2a0d, #8c6a30); }

.team-photo-initials {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(255,255,255,.25);
  font-weight: 700;
}

.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: .2rem; }
.team-info .title { font-size: .85rem; color: var(--teal); font-weight: 600; margin-bottom: .65rem; display: block; }
.team-info p { font-size: .88rem; }

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.badge-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  border: 2px solid var(--teal);
  box-shadow: var(--shadow-sm);
}

.badge-item .badge-icon { font-size: 1.75rem; }
.badge-item strong { display: block; font-size: .92rem; color: var(--charcoal); }
.badge-item span { font-size: .8rem; color: var(--gray); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { height: 340px; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    z-index: 999;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-cta.open { display: flex; padding: 0 1.5rem 1.5rem; position: fixed; top: calc(70px + 1rem + 6 * 2.5rem); left: 0; right: 0; background: var(--white); z-index: 999; }

  .hero { min-height: 85vh; }
  .hero-stats { gap: 1.25rem; }

  .service-detail-grid,
  .story-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .service-detail-grid.reverse { direction: ltr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}
