/*
Theme Name: Ay Halı Yıkama
Theme URI: https://www.ayhaliyikama.com.tr
Author: Ay Halı Yıkama
Author URI: https://www.ayhaliyikama.com.tr
Description: Ay Halı Yıkama için özel olarak geliştirilmiş canlı renkli, güven veren, ultra hızlı ve dönüşüm odaklı modern tema.
Version: 1.0.0
Text Domain: ay-haliyikama
*/

:root {
  --primary: #0284c7;
  --primary-dark: #0369a1;
  --primary-light: #38bdf8;
  --primary-subtle: #f0f9ff;
  
  --secondary: #0f172a;
  --secondary-light: #1e293b;
  --secondary-muted: #64748b;
  
  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --accent-green: #22c55e;
  --accent-green-dark: #16a34a;
  --accent-yellow: #eab308;
  
  --bg-main: #ffffff;
  --bg-gray: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 35px -8px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 25px rgba(249, 115, 22, 0.4);
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #334155;
  background-color: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

.ay-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   TOP ANNOUNCEMENT BAR
   ========================================= */
.ay-topbar {
  background: #0f172a;
  color: #cbd5e1;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ay-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.ay-topbar-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.ay-badge-pulse {
  display: inline-block;
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.ay-topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

.ay-topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

.ay-topbar-contacts a:hover {
  color: var(--primary-light);
}

/* =========================================
   MAIN NAVIGATION HEADER
   ========================================= */
.ay-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ay-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 86px;
}

/* Logo */
.ay-logo-link {
  display: flex;
  align-items: center;
}

.ay-logo-card {
  background: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-md);
  border: 1px solid #f1f5f9;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  display: inline-block;
  transition: transform 0.2s ease;
}

.ay-logo-card:hover {
  transform: scale(1.02);
}

.ay-logo-img {
  max-height: 52px;
  width: auto;
}

/* Nav Menu */
.ay-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ay-nav-item {
  position: relative;
}

.ay-nav-link {
  font-size: 15px;
  font-weight: 700;
  color: #1e293b;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.ay-nav-link:hover,
.ay-nav-item.active .ay-nav-link {
  color: var(--primary);
  background: var(--primary-subtle);
}

/* Dropdown */
.ay-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-color);
  padding: 10px 0;
  display: none;
  animation: fadeInDown 0.2s ease;
  z-index: 1000;
}

.ay-nav-item:hover .ay-dropdown {
  display: block;
}

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

.ay-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: #334155;
  transition: all 0.2s ease;
}

.ay-dropdown-link:hover {
  background: var(--primary-subtle);
  color: var(--primary);
  padding-left: 22px;
}

.ay-dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 15px;
}

.ay-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ay-header-btn {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.ay-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.45);
}

/* Mobile Toggle */
.ay-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #0f172a;
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.ay-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  z-index: 10000;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  padding: 24px 20px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.ay-drawer.open {
  right: 0;
}

.ay-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  z-index: 9999;
  display: none;
}

.ay-drawer-backdrop.active {
  display: block;
}

.ay-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-color);
}

.ay-drawer-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
}

.ay-drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ay-drawer-link {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ay-drawer-link:hover {
  background: var(--primary-subtle);
  color: var(--primary);
}

/* =========================================
   HERO BANNER
   ========================================= */
.ay-hero {
  background: linear-gradient(135deg, #0a192f 0%, #032b43 50%, #064e3b 100%);
  color: #ffffff;
  padding: 60px 0 70px 0;
  position: relative;
  overflow: hidden;
}

.ay-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ay-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.ay-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fde047;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.ay-hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.ay-hero-highlight {
  color: #facc15;
  text-shadow: 0 0 25px rgba(250, 204, 21, 0.4);
}

.ay-hero-desc {
  font-size: 17px;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 560px;
}

/* Campaign Price Tag */
.ay-hero-price {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.ay-hero-price-label {
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.ay-hero-price-val {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.ay-hero-price-num {
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.ay-hero-price-unit {
  font-size: 22px;
  font-weight: 800;
  color: #facc15;
}

.ay-hero-price-old {
  font-size: 20px;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600;
}

.ay-hero-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

.ay-hero-btn-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.5);
  transition: all 0.25s ease;
}

.ay-hero-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.6);
}

.ay-hero-sub-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ay-hero-btn-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1e293b;
  border: 1px solid #334155;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.ay-hero-btn-call:hover {
  background: #334155;
  color: var(--primary-light) !important;
}

.ay-hero-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #15803d;
  border: 1px solid #16a34a;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.ay-hero-btn-wa:hover {
  background: #16a34a;
}

/* =========================================
   CALCULATOR WIDGET (Hero Sag Kolon)
   ========================================= */
.ay-calc-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  color: #0f172a;
}

.ay-calc-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ay-calc-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ay-calc-header h3 {
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
}

.ay-calc-header p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.ay-calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ay-calc-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ay-calc-label {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.ay-calc-select,
.ay-calc-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: all 0.2s ease;
}

.ay-calc-select:focus,
.ay-calc-input:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.ay-calc-result-box {
  background: #f0fdf4;
  border: 2px dashed #86efac;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  margin-top: 4px;
}

.ay-calc-res-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #166534;
}

.ay-calc-res-amount {
  font-size: 32px;
  font-weight: 900;
  color: #15803d;
  line-height: 1.1;
}

.ay-calc-order-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.ay-calc-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.4);
}

/* =========================================
   TRUST BAR (4 Temel Guvence)
   ========================================= */
.ay-trust-bar {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.ay-trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--bg-gray);
  border: 1px solid #f1f5f9;
}

.ay-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ay-t-blue { background: #e0f2fe; color: #0284c7; }
.ay-t-green { background: #dcfce7; color: #16a34a; }
.ay-t-orange { background: #ffedd5; color: #ea580c; }
.ay-t-purple { background: #f3e8ff; color: #9333ea; }

.ay-trust-text h4 {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.ay-trust-text p {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
}

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.ay-section {
  padding: 70px 0;
}

.ay-section-gray {
  background-color: var(--bg-gray);
}

.ay-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.ay-pill {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.ay-pill-blue {
  color: var(--primary);
  background: var(--primary-subtle);
  border: 1px solid #bae6fd;
}

.ay-section-title {
  font-size: 34px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 12px;
}

.ay-section-subtitle {
  font-size: 16px;
  color: var(--secondary-muted);
}

/* =========================================
   SERVICES GRID (Hizmetler)
   ========================================= */
.ay-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ay-service-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.ay-service-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.ay-service-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.ay-service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ay-service-box:hover .ay-service-img {
  transform: scale(1.08);
}

.ay-service-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.85);
  color: #facc15;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(6px);
}

.ay-service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ay-service-body h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.ay-service-body p {
  font-size: 14px;
  color: var(--secondary-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ay-service-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  margin-top: auto;
}

.ay-service-foot-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--primary);
}

.ay-service-foot-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}

.ay-service-foot-link:hover {
  color: var(--accent-orange);
}

/* =========================================
   PRICE LIST (Fiyat Tablosu)
   ========================================= */
.ay-prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ay-price-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.ay-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ay-price-card.featured {
  border: 2px solid var(--accent-orange);
  background: #fffdfa;
  position: relative;
}

.ay-price-featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-orange);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.ay-price-name {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.ay-price-val-main {
  font-size: 38px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.ay-price-card.featured .ay-price-val-main {
  color: var(--accent-orange);
}

.ay-price-unit-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

/* =========================================
   PROCESS STEPS (3 Adimda Temizlik)
   ========================================= */
.ay-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ay-step-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.ay-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  font-size: 24px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.ay-step-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.ay-step-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

/* =========================================
   TESTIMONIALS (Musteri Yorumlari)
   ========================================= */
.ay-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ay-review-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.ay-review-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.ay-review-card p {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 18px;
}

.ay-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.ay-review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e0f2fe;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.ay-review-info h4 {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.ay-review-info span {
  font-size: 12px;
  color: #64748b;
}

/* =========================================
   FAQ ACCORDION (SSS)
   ========================================= */
.ay-faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ay-faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.ay-faq-btn {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ay-faq-btn:hover {
  background: #f8fafc;
}

.ay-faq-icon {
  font-size: 18px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.ay-faq-item.active .ay-faq-icon {
  transform: rotate(180deg);
}

.ay-faq-content {
  padding: 0 24px 20px 24px;
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.6;
  display: none;
}

.ay-faq-item.active .ay-faq-content {
  display: block;
}

/* =========================================
   DISTRICT TAGS
   ========================================= */
.ay-districts {
  background: #0f172a;
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.ay-districts h3 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ay-districts-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 960px;
  margin: 0 auto;
}

.ay-district-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.ay-district-item:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================
   FOOTER
   ========================================= */
.ay-footer {
  background: #0a101d;
  color: #cbd5e1;
  padding: 70px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ay-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.ay-footer-col h4 {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.ay-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--accent-orange);
  border-radius: 2px;
}

.ay-footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 16px;
}

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

.ay-footer-link {
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ay-footer-link:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.ay-footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ay-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #94a3b8;
}

.ay-footer-contact-item i {
  color: var(--primary-light);
  margin-top: 4px;
}

.ay-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 13.5px;
  color: #64748b;
}

/* =========================================
   SINGLE BLOG & PAGE TEMPLATES
   ========================================= */
.ay-page-header {
  background: linear-gradient(135deg, #0f172a 0%, #032b43 100%);
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.ay-page-header h1 {
  font-size: 38px;
  font-weight: 900;
  margin-bottom: 12px;
}

.ay-breadcrumbs {
  font-size: 14px;
  color: #94a3b8;
}

.ay-breadcrumbs a {
  color: #cbd5e1;
}

.ay-breadcrumbs a:hover {
  color: #ffffff;
}

.ay-content-wrap {
  padding: 60px 0;
}

.ay-single-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.ay-single-article {
  background: #ffffff;
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.ay-single-article h2 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 14px 0;
}

.ay-single-article h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 24px 0 12px 0;
}

.ay-single-article p {
  font-size: 16px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 20px;
}

.ay-single-article ul {
  list-style: disc;
  margin: 0 0 20px 24px;
  font-size: 15.5px;
  line-height: 1.8;
}

.ay-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ay-widget {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
}

.ay-widget h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 8px;
}

/* =========================================
   MOBILE BOTTOM STICKY BAR
   ========================================= */
.ay-mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .ay-mobile-bottom-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 10px 14px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    gap: 10px;
  }

  .ay-mob-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 800;
    padding: 12px;
    border-radius: 10px;
  }

  .ay-mob-btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent-green);
    color: #ffffff !important;
    font-size: 14.5px;
    font-weight: 800;
    padding: 12px;
    border-radius: 10px;
  }

  /* Responsive tweaks */
  .ay-topbar {
    display: none;
  }

  .ay-header-inner {
    height: 72px;
  }

  .ay-nav,
  .ay-header-actions {
    display: none;
  }

  .ay-mobile-toggle {
    display: block;
  }

  .ay-hero {
    padding: 40px 0 50px 0;
  }

  .ay-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ay-hero h1 {
    font-size: 32px;
  }

  .ay-hero-price-num {
    font-size: 44px;
  }

  .ay-hero-sub-btns {
    grid-template-columns: 1fr;
  }

  .ay-trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ay-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ay-prices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .ay-steps-grid,
  .ay-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ay-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ay-single-grid {
    grid-template-columns: 1fr;
  }

  .ay-section {
    padding: 45px 0;
  }

  .ay-section-title {
    font-size: 26px;
  }
}
