/*
Theme Name: Alo Usta Teknik Servis
Theme URI: https://aloustateknikservis.com
Author: Alo Usta Teknik Servis
Author URI: https://aloustateknikservis.com
Description: Sakarya/Adapazarı merkezli profesyonel beyaz eşya, kombi ve klima teknik servis firması. SEO optimize edilmiş, mobil uyumlu kurumsal WordPress teması.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alo-usta
Tags: service, business, responsive, seo, turkish, appliance-repair, blue, white, clean
*/

/* ============================
   GOOGLE FONTS
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
  --primary: #0a1628;
  --primary-light: #142240;
  --accent: #1e90ff;
  --accent-dark: #0070e0;
  --accent-light: #e8f4fd;
  --accent-glow: rgba(30, 144, 255, 0.2);
  --white: #ffffff;
  --off-white: #f8fafc;
  --text-dark: #1a1a2e;
  --text-medium: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-blue: 0 4px 20px rgba(30, 144, 255, 0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: all 0.3s ease;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; color: var(--text-medium); }

/* ============================
   LAYOUT UTILITIES
   ============================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; max-width: 650px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(30, 144, 255, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--accent-light);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-green {
  background: #25d366;
  color: white;
  border-color: #25d366;
}
.btn-green:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  color: white;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============================
   ANNOUNCEMENT TICKER
   ============================ */
.announcement-bar {
  background: var(--primary);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  position: relative;
}
.ticker-wrap {
  display: flex;
  overflow: hidden;
}
.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  gap: 60px;
}
.ticker-content span {
  font-size: 0.88rem;
  font-weight: 500;
  padding-right: 60px;
  color: rgba(255,255,255,0.9);
}
.ticker-content .ticker-highlight {
  color: var(--accent);
  font-weight: 700;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.announcement-bar:hover .ticker-content { animation-play-state: paused; }

/* ============================
   HEADER / NAVBAR
   ============================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  border-bottom: 3px solid var(--accent);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.navbar-brand img { height: 56px; width: auto; }
.navbar-brand-text { display: flex; flex-direction: column; }
.navbar-brand-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1; }
.navbar-brand-tagline { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.5px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.current-menu-item { color: var(--accent); background: var(--accent-light); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.nav-phone:hover { background: var(--accent); color: white; }
.nav-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: #25d366;
  color: white;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  transition: var(--transition);
}
.nav-whatsapp:hover { background: #20bd5a; color: white; transform: scale(1.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ============================
   HERO SECTION
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #142240 50%, #0d1f3c 100%);
  color: white;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,144,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 144, 255, 0.15);
  border: 1px solid rgba(30, 144, 255, 0.3);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero h1 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero h1 span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-visual { position: relative; z-index: 2; }
.hero-image-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-image-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
}
.hero-image-card img { width: 100%; height: 180px; object-fit: cover; }
.hero-image-card-large {
  grid-column: span 2;
}
.hero-image-card-large img { height: 220px; }

/* ============================
   SERVICE CARDS
   ============================ */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-blue);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px;
  height: 72px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.service-card p { font-size: 0.92rem; color: var(--text-medium); margin-bottom: 24px; }
.service-card .btn { width: 100%; justify-content: center; }

/* ============================
   WHY US / FEATURES
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.feature-item:hover .feature-icon { background: var(--accent); }
.feature-text h4 { margin-bottom: 6px; color: var(--primary); }
.feature-text p { font-size: 0.88rem; margin-bottom: 0; }

/* ============================
   BRANDS SECTION
   ============================ */
.brands-section { background: var(--white); }
.brands-image { border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; }
.brands-image img { width: 100%; }
.brands-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.brand-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 2px solid var(--border);
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.brand-tab.active, .brand-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.brand-tag {
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-dark);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
}
.brand-tag:hover { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }

/* ============================
   SERVICE AREAS
   ============================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
}
.area-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  background: var(--accent-light);
}
.area-card .area-icon { font-size: 1.5rem; margin-bottom: 10px; }
.area-card h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
.area-card p { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0; }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, #0070e0 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  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");
}
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================
   BLOG CARDS
   ============================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.blog-card-image { height: 200px; overflow: hidden; background: var(--accent-light); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-card-category {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.blog-card-title { font-size: 1.05rem; color: var(--primary); font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--accent); }
.blog-card-excerpt { font-size: 0.88rem; color: var(--text-medium); margin-bottom: 16px; line-height: 1.6; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-card-date { font-size: 0.8rem; color: var(--text-light); }
.blog-card-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); }

/* ============================
   CONTACT SECTION
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-info-item:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); margin-bottom: 4px; }
.contact-info-text a, .contact-info-text span { font-size: 1rem; font-weight: 600; color: var(--primary); }
.contact-social { display: flex; gap: 12px; }
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  transition: var(--transition);
}
.social-btn:hover { transform: translateY(-3px); color: white; }
.social-facebook { background: #1877f2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-youtube { background: #ff0000; }
.social-twitter { background: #000000; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 24px; }
.contact-map iframe { width: 100%; display: block; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-medium); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; font-weight: 700; }

/* ============================
   FAQ
   ============================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--accent); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  font-weight: 600;
  color: var(--primary);
  gap: 16px;
  user-select: none;
}
.faq-question .faq-icon { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: var(--transition); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  background: var(--white);
}
.faq-item.active .faq-answer { display: block; }
.faq-answer p { color: var(--text-medium); margin-bottom: 0; font-size: 0.95rem; }

/* ============================
   PAGE HERO (Inner Pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #142240 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, var(--accent-glow) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; margin-bottom: 14px; }
.page-hero-lead { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 650px; margin: 0 auto 24px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================
   SINGLE BLOG / PAGE CONTENT
   ============================ */
.entry-content {
  max-width: 800px;
  margin: 0 auto;
}
.entry-content h2 { margin: 36px 0 16px; }
.entry-content h3 { margin: 28px 0 12px; }
.entry-content p { margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; font-size: 1rem; line-height: 1.7; color: var(--text-medium); }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content strong { color: var(--text-dark); font-weight: 700; }
.entry-content img { border-radius: var(--radius-md); margin: 20px 0; }
.entry-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  background: var(--accent-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.entry-content blockquote p { margin-bottom: 0; color: var(--text-dark); font-style: italic; }

/* ============================
   FLOATING WHATSAPP BUTTON
   ============================ */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.float-whatsapp-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}
.float-whatsapp-btn:hover {
  background: #20bd5a;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.float-whatsapp-btn svg { width: 32px; height: 32px; fill: white; }
.float-whatsapp-label {
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.float-whatsapp-btn { animation: pulse 2.5s infinite; }

/* ============================
   FOOTER
   ============================ */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.75); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand img { height: 60px; width: auto; margin-bottom: 16px; filter: brightness(10) saturate(0); }
.footer-brand-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 8px; }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-col h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--accent); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copyright { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-links a:hover { color: var(--accent); }

/* ============================
   SIDEBAR
   ============================ */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  margin-bottom: 28px;
}
.sidebar-widget:last-child { margin-bottom: 0; }
.sidebar-widget h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); }
.sidebar-recent-posts { display: flex; flex-direction: column; gap: 14px; }
.sidebar-post-item { display: flex; gap: 12px; align-items: flex-start; }
.sidebar-post-item img { width: 64px; height: 64px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.sidebar-post-title a { font-size: 0.88rem; font-weight: 600; color: var(--primary); line-height: 1.4; }
.sidebar-post-title a:hover { color: var(--accent); }
.sidebar-post-date { font-size: 0.78rem; color: var(--text-light); }
.sidebar-categories { display: flex; flex-direction: column; gap: 8px; }
.sidebar-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}
.sidebar-categories a:hover { background: var(--accent-light); color: var(--accent); }
.sidebar-categories a span { background: var(--accent-light); color: var(--accent); font-size: 0.75rem; font-weight: 700; padding: 2px 8px; border-radius: 12px; }
.sidebar-cta {
  background: var(--primary);
  border: none;
  text-align: center;
}
.sidebar-cta h3 { color: white; border-color: var(--accent); }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ============================
   SEARCH FORM
   ============================ */
.search-form { display: flex; border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: var(--transition); }
.search-form:focus-within { border-color: var(--accent); }
.search-form input { flex: 1; padding: 10px 14px; border: none; outline: none; font-size: 0.9rem; font-family: inherit; }
.search-form button { padding: 10px 16px; background: var(--accent); color: white; border: none; cursor: pointer; transition: var(--transition); }
.search-form button:hover { background: var(--accent-dark); }

/* ============================
   404 PAGE
   ============================ */
.error-404-page { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 80px 0; text-align: center; }
.error-404-number { font-family: var(--font-heading); font-size: 8rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.error-404-page h2 { margin-bottom: 14px; }
.error-404-page p { font-size: 1.05rem; margin-bottom: 32px; }

/* ============================
   SCHEMA / BREADCRUMB NAV
   ============================ */
.breadcrumb-nav {
  padding: 12px 0;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-nav .container { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb-nav a { color: var(--text-light); }
.breadcrumb-nav a:hover { color: var(--accent); }
.breadcrumb-nav .sep { color: var(--border); }
.breadcrumb-nav .current { color: var(--text-dark); font-weight: 500; }

/* ============================
   INFO CALLOUT BOX
   ============================ */
.info-box {
  background: var(--accent-light);
  border: 1px solid rgba(30,144,255,0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.info-box .info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-box p { margin-bottom: 0; font-size: 0.92rem; color: var(--text-dark); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  .hero-visual { display: none; }
  .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

@media (max-width: 700px) {
  .navbar { flex-wrap: wrap; }
  .nav-menu { display: none; width: 100%; flex-direction: column; padding: 10px 0; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta .nav-phone span { display: none; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 16px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact-form-card { padding: 24px 20px; }
  .float-whatsapp-label { display: none; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 16px; justify-content: center; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 50px 0; }
}
