/* ============================================
   CLEANIC DETAILING - Main Stylesheet
   Premium Car Fumigation & Steam Cleaning Singapore
   ============================================ */

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-section: #161616;
  --accent-green: #00c896;
  --accent-orange: #ff6b35;
  --accent-gold: #f5a623;
  --whatsapp: #25D366;
  --text-white: #ffffff;
  --text-light: #cccccc;
  --text-muted: #888888;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--bg-dark);
  color: var(--text-white);
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--accent-green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-orange); }

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

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-green { color: var(--accent-green); }
.text-orange { color: var(--accent-orange); }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }

.section-tag {
  display: inline-block;
  background: rgba(0, 200, 150, 0.12);
  border: 1px solid rgba(0, 200, 150, 0.3);
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-green);
  color: #000;
}
.btn-primary:hover {
  background: #00e6ad;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 200, 150, 0.35);
}

.btn-urgent {
  background: var(--accent-orange);
  color: #fff;
}
.btn-urgent:hover {
  background: #ff8557;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #2de065;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(0,200,150,0.06);
}

.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
#announcement-bar {
  background: linear-gradient(90deg, #ff6b35, #ff3d00);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}

#announcement-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-green), #008f6b);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 10px;
  color: var(--accent-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.main-nav a {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--accent-green);
  transform: scaleX(0);
  transition: transform 0.2s;
}

nav.main-nav a:hover { color: #fff; }
nav.main-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--text-light);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

#mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #fff;
  font-size: 24px;
}

/* Mobile nav */
#mobile-nav {
  display: none;
  background: #111;
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 16px;
}

#mobile-nav a {
  color: var(--text-light);
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,200,150,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 30%, rgba(255,107,53,0.05) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #111820 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.3);
  color: var(--accent-orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-title .highlight {
  color: var(--accent-green);
  position: relative;
}

.hero-description {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hero visual card */
.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-image {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, #0d2b1f 0%, #112 50%, #1a0d07 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}

.hero-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,200,150,0.15), transparent 70%);
}

.hero-card-body {
  padding: 24px;
}

.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.service-badge {
  background: rgba(0,200,150,0.1);
  border: 1px solid rgba(0,200,150,0.2);
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.availability-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,200,150,0.9);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
}

/* ============================================
   TRUST BAR
   ============================================ */
#trust-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.trust-icon {
  font-size: 22px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
#services {
  background: var(--bg-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(0,200,150,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,200,150,0.08);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,200,150,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  border: 1px solid rgba(0,200,150,0.15);
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-white);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card.featured {
  background: linear-gradient(135deg, #0d2b1f 0%, #111 100%);
  border-color: rgba(0,200,150,0.25);
}

.service-card.featured .service-icon {
  background: rgba(0,200,150,0.2);
  border-color: rgba(0,200,150,0.3);
}

/* ============================================
   URGENT SECTION
   ============================================ */
#urgent-cta {
  background: linear-gradient(135deg, #1a0800, #0f1a00, #001a0f);
  border-top: 1px solid rgba(255,107,53,0.15);
  border-bottom: 1px solid rgba(255,107,53,0.15);
  padding: 60px 0;
}

.urgent-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.urgent-icon { font-size: 64px; }

.urgent-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.urgent-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.urgent-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
#why-us {
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,200,150,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(0,200,150,0.15);
}

.why-feature h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.why-feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(0,200,150,0.2);
  transform: translateY(-2px);
}

.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how-it-works {
  background: var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  background: var(--bg-card);
  border: 2px solid var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-green);
  margin: 0 auto 20px;
  position: relative;
}

.step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   INSTAGRAM / GALLERY
   ============================================ */
#gallery {
  background: var(--bg-section);
  overflow: hidden;
}

.instagram-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.instagram-handle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.instagram-handle .ig-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-card), #1a2620);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: transform 0.3s ease;
  position: relative;
}

.gallery-item:hover .gallery-item-inner { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,200,150,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 16px 10px 10px;
  font-size: 10px;
  color: var(--text-light);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ============================================
   ARTICLES / BLOG
   ============================================ */
#articles {
  background: var(--bg-dark);
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: rgba(0,200,150,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.article-thumb {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #0d2b1f, #0a1520);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}

.article-category {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--accent-green);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  gap: 16px;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}

.article-card h3 a {
  color: var(--text-white);
}
.article-card h3 a:hover { color: var(--accent-green); }

.article-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-read-more {
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--bg-section);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.review-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-2px);
}

.review-stars {
  color: var(--accent-gold);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green), #008f6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #000;
  flex-shrink: 0;
}

.review-name { font-size: 14px; font-weight: 600; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-source { font-size: 11px; color: var(--text-muted); }

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
  background: var(--bg-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  user-select: none;
}

.faq-question:hover { color: var(--accent-green); }

.faq-toggle {
  font-size: 20px;
  color: var(--accent-green);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ============================================
   CONTACT / BOOKING SECTION
   ============================================ */
#contact {
  background: var(--bg-section);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-decoration: none;
  color: var(--text-white);
  transition: var(--transition);
}

.contact-method:hover {
  border-color: rgba(0,200,150,0.25);
  color: var(--text-white);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cm-phone .contact-method-icon { background: rgba(0,200,150,0.12); }
.cm-whatsapp .contact-method-icon { background: rgba(37,211,102,0.12); }
.cm-email .contact-method-icon { background: rgba(255,107,53,0.12); }

.contact-method-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method-value { font-size: 16px; font-weight: 600; }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}

.contact-form-wrap h3 { font-size: 20px; margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text-white);
  font-size: 14px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  background: rgba(0,200,150,0.04);
}

.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--accent-green);
  color: #000;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit-btn:hover {
  background: #00e6ad;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,200,150,0.3);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-tooltip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.3s ease;
  max-width: 220px;
  text-align: right;
  line-height: 1.5;
}

.whatsapp-btn {
  width: 58px; height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  cursor: pointer;
  text-decoration: none;
  animation: pulse-wa 2.5s infinite;
  transition: transform 0.2s;
}

.whatsapp-btn:hover { transform: scale(1.08); }

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.65); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social:hover {
  border-color: var(--accent-green);
  background: rgba(0,200,150,0.08);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent-green); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   BLOG / ARTICLES PAGE
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #0a0a0a, #111820);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 60px 0;
}

.single-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.single-post h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 20px; }
.single-post .post-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 32px; }
.single-post .post-content { font-size: 16px; line-height: 1.8; color: var(--text-light); }
.single-post .post-content h2 { font-size: 24px; margin: 36px 0 14px; }
.single-post .post-content h3 { font-size: 20px; margin: 28px 0 12px; }
.single-post .post-content p { margin-bottom: 18px; }
.single-post .post-content ul, .single-post .post-content ol { padding-left: 24px; margin-bottom: 18px; }
.single-post .post-content li { margin-bottom: 8px; }
.single-post .post-content strong { color: var(--text-white); }
.single-post .post-content a { color: var(--accent-green); }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  nav.main-nav { display: none; }
  .header-cta .btn { display: none; }
  #mobile-menu-btn { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .articles-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .urgent-inner { grid-template-columns: 1fr; text-align: center; }
  .trust-items { gap: 20px; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .why-stats-grid { grid-template-columns: 1fr 1fr; }
  #whatsapp-float { bottom: 20px; right: 16px; }
}

/* ============================================
   GALLERY — REAL PHOTOS
   ============================================ */
.gallery-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-item:hover .gallery-item-inner img { transform: scale(1.07); }

.gallery-item-featured {
  grid-column: span 2;
}

.gallery-more-inner {
  background: linear-gradient(135deg, rgba(0,200,150,0.08), rgba(0,0,0,0.6));
  border: 1px dashed rgba(0,200,150,0.3);
  justify-content: center;
}
.gallery-more-content { text-align: center; }

/* ============================================
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ============================================ */

/* Base touch improvements */
*, *::before, *::after { -webkit-tap-highlight-color: transparent; }
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* Announcement bar mobile */
@media (max-width: 480px) {
  #announcement-bar {
    font-size: 11px;
    padding: 8px 12px;
    text-align: center;
  }
}

/* Header mobile improvements */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: 60px;
  }
  .logo-name { font-size: 18px; }
  .logo-tagline { font-size: 10px; }
  #mobile-menu-btn {
    font-size: 26px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-phone { display: none; }
}

/* Hero mobile */
@media (max-width: 768px) {
  #hero { min-height: 85svh; padding: 100px 0 60px; }
  .hero-content { padding: 0 20px; }
  .hero-title { font-size: clamp(30px, 8vw, 44px); line-height: 1.15; }
  .hero-description { font-size: 15px; }
  .hero-badge { font-size: 12px; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 20px;
    font-size: 16px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
  }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-label { font-size: 11px; }
}

@media (max-width: 480px) {
  #hero { min-height: 90svh; padding: 90px 0 48px; }
  .hero-title { font-size: clamp(26px, 9vw, 36px); }
}

/* Trust bar mobile */
@media (max-width: 768px) {
  .trust-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .trust-item { font-size: 12px; gap: 6px; }
}

/* Services grid mobile */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 18px; }
}

/* Why us mobile */
@media (max-width: 768px) {
  .why-features-grid { grid-template-columns: 1fr; }
  .why-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 32px; }
}

/* Steps mobile */
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step-card { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
  .step-number { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 18px; }
}

/* Gallery mobile */
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .gallery-item-featured { grid-column: span 1; }
  .gallery-caption { font-size: 9px; padding: 10px 6px 6px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}

/* Reviews mobile */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 20px; }
  .review-text { font-size: 13px; }
}

/* FAQ mobile */
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-question { font-size: 14px; padding: 16px 20px; }
}

/* Contact / WhatsApp section mobile */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info h2 { font-size: clamp(22px, 6vw, 32px); }
  .wa-quick-buttons { gap: 12px; }
  .wa-quick-btn { padding: 12px 14px; }
  .wa-quick-title { font-size: 13px; }
  .wa-quick-sub { font-size: 11px; }
  .wa-quick-icon { font-size: 24px; }
}

/* WhatsApp float mobile */
@media (max-width: 768px) {
  #whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-btn { width: 52px; height: 52px; font-size: 24px; }
  .whatsapp-tooltip { display: none; }
}

/* Articles mobile */
@media (max-width: 768px) {
  .articles-grid { grid-template-columns: 1fr; gap: 16px; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Footer mobile */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  #site-footer { padding: 40px 0 0; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { flex-wrap: wrap; }
}

/* Urgent CTA mobile */
@media (max-width: 768px) {
  .urgent-inner { padding: 32px 20px; text-align: center; }
  .urgent-inner .btn { width: 100%; justify-content: center; }
}

/* Container padding mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(22px, 7vw, 32px); }
  .section-subtitle { font-size: 14px; }
}

/* Touch-friendly button sizes */
@media (max-width: 768px) {
  .btn { min-height: 48px; }
  a.btn { display: flex; align-items: center; justify-content: center; }
}

/* Blog/articles page mobile */
@media (max-width: 768px) {
  .posts-grid { grid-template-columns: 1fr; padding: 40px 0; }
  .page-hero { padding: 60px 0 40px; }
  .single-post { padding: 40px 16px; }
}
