/*
Theme Name: SER-AL Halı & Koltuk Yıkama
Theme URI: https://seral-hali.com
Author: SER-AL
Author URI: https://seral-hali.com
Description: SER-AL Halı & Koltuk Yıkama profesyonel temizlik hizmeti WordPress teması. İçerik yönetim sistemi destekli, alt sayfalı, SEO uyumlu tema.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
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: seral
Tags: one-column, custom-menu, featured-images, theme-options, translation-ready, business

SER-AL Halı & Koltuk Yıkama - Profesyonel Halı Yıkama WordPress Teması
*/

/* ============================================
   SER-AL Halı & Koltuk Yıkama - Stylesheet
   ============================================ */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --primary: #0062cc;
  --primary-dark: #004a99;
  --primary-light: #3a8dde;
  --primary-gradient: linear-gradient(135deg, #0062cc 0%, #004a99 100%);
  --secondary: #00a550;
  --secondary-dark: #008a42;
  --accent: #00bcd4;
  --white: #ffffff;
  --off-white: #f4f8fc;
  --light-blue: #e8f2fc;
  --light-gray: #f0f4f8;
  --gray: #6b7c93;
  --dark: #1a2a3a;
  --dark-blue: #0d1b2a;
  --text: #2c3e50;
  --text-light: #5a6d7e;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--light-blue);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--dark-blue);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.9);
}

.top-bar-left a:hover {
  color: var(--accent);
}

.top-bar-left svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar-right svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ---------- Header / Navbar ---------- */
.navbar {
  background: var(--white);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img,
.logo-img {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.footer-logo-img {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav-links,
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a,
.nav-menu a,
.nav-menu li a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after,
.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-menu li a:hover::after {
  width: 100%;
}

.nav-links a:hover,
.nav-menu li a:hover {
  color: var(--primary);
}

/* WordPress menu items */
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu li.current-menu-item>a,
.nav-menu li.current_page_item>a {
  color: var(--primary);
}

.nav-menu li.current-menu-item>a::after,
.nav-menu li.current_page_item>a::after {
  width: 100%;
}

/* Dropdown menus */
.nav-menu li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 12px 0;
  z-index: 100;
  flex-direction: column;
  gap: 0;
}

.nav-menu li:hover>ul.sub-menu {
  display: flex;
}

.nav-menu li ul.sub-menu li a {
  padding: 10px 20px;
  display: block;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-menu li ul.sub-menu li a:hover {
  background: var(--light-blue);
}

.nav-menu li ul.sub-menu li a::after {
  display: none;
}

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

.nav-cta .btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-cta .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 98, 204, 0.4);
}

.nav-cta .btn-call svg {
  width: 18px;
  height: 18px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #e8f4fd 0%, #d6ecfa 30%, #c4e3f7 60%, #b0d9f5 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 98, 204, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 165, 80, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(0, 98, 204, 0.1);
  border: 1px solid rgba(0, 98, 204, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, #0062cc, #00a550);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 98, 204, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 98, 204, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 98, 204, 0.3);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

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

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

.hero-visual {
  flex: 1;
  max-width: 520px;
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  bottom: 20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-floating-card.card-2 {
  top: 20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-delay: 1s;
}

.floating-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-icon.blue {
  background: rgba(0, 98, 204, 0.12);
  color: var(--primary);
}

.floating-icon.green {
  background: rgba(0, 165, 80, 0.12);
  color: var(--secondary);
}

.floating-icon svg {
  width: 22px;
  height: 22px;
}

.floating-text strong {
  display: block;
  font-size: 0.82rem;
  color: var(--dark);
}

.floating-text span {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ---------- About / Introduction Section ---------- */
.about-section {
  background: var(--white);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 98, 204, 0.2), transparent);
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.overlay-stat {
  text-align: center;
}

.overlay-stat .stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.overlay-stat .stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
}

.overlay-divider {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--light-blue);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateX(4px);
  background: rgba(0, 98, 204, 0.12);
}

.about-feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--off-white);
  position: relative;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.service-card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-icon-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.service-icon-badge svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

.service-card-body {
  padding: 20px;
}

.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Why Choose Us ---------- */
.why-section {
  background: var(--white);
}

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

.why-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-content>p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.8;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.why-item:hover {
  transform: translateX(6px);
  background: var(--light-blue);
}

.why-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.why-item span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
}

.why-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ---------- Gallery Section ---------- */
.gallery-section {
  background: var(--off-white);
}

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

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.gallery-image-container {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.gallery-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image-container img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
}

.gallery-label {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.gallery-label.left {
  background: rgba(220, 53, 69, 0.8);
}

.gallery-label.right {
  background: rgba(0, 165, 80, 0.8);
}

.gallery-label.center {
  background: rgba(0, 98, 204, 0.8);
  margin: 0 auto;
}

.gallery-caption {
  padding: 18px;
}

.gallery-caption h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---------- Process Section ---------- */
.process-section {
  background: var(--white);
}

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

.process-timeline::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--light-blue);
  z-index: 0;
}

.process-card {
  position: relative;
  text-align: center;
}

.process-step-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.process-card-inner {
  padding: 24px 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.process-card:hover .process-card-inner {
  background: var(--light-blue);
  transform: translateY(-4px);
}

.process-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
}

.process-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.process-card-inner h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.process-card-inner p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---------- Service Areas ---------- */
.areas-section {
  background: var(--off-white);
}

.areas-content {
  text-align: center;
}

.areas-note {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.areas-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 98, 204, 0.15);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.area-tag svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.area-tag:hover svg {
  color: var(--white);
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--white);
}

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

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  border-color: rgba(0, 98, 204, 0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #ffc107;
  stroke: none;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- Pricing Section ---------- */
.pricing-section {
  background: var(--off-white);
}

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

.pricing-card.featured {
  border: 2px solid var(--primary);
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--primary-gradient);
  color: var(--white);
  text-align: center;
  padding: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card-header {
  padding: 28px 24px 0;
  text-align: center;
}

.pricing-card.featured .pricing-card-header {
  padding-top: 46px;
}

.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.pricing-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.pricing-card-header h3 {
  font-size: 1.2rem;
}

.pricing-body {
  padding: 20px 24px 28px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.price-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark);
}

.price-unit {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 24px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 24px;
}

/* ---------- FAQ Section ---------- */
.faq-section {
  background: var(--white);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Quote / CTA Section ---------- */
.quote-section {
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

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

.quote-info h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 16px;
}

.quote-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  line-height: 1.8;
}

.quote-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

.quote-benefit svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.quote-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 98, 204, 0.1);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-gradient);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 98, 204, 0.4);
}

.btn-submit svg {
  width: 20px;
  height: 20px;
}

/* ---------- Contact Section ---------- */
.contact-section {
  background: var(--off-white);
}

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

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.contact-info>p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon.phone {
  background: rgba(0, 98, 204, 0.1);
  color: var(--primary);
}

.contact-item-icon.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-item-icon.address {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
}

.contact-item-icon.hours {
  background: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
}

.contact-item-icon svg {
  width: 24px;
  height: 24px;
}

.contact-item-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.85rem;
  color: var(--gray);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.map-styled {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #e8f2fc 0%, #d6ecfa 100%);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-inner {
  text-align: center;
  padding: 40px;
}

.map-pin-animation {
  margin-bottom: 20px;
}

.map-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--white);
  animation: float 3s ease-in-out infinite;
}

.map-pin svg {
  width: 30px;
  height: 30px;
}

.map-pin-shadow {
  width: 40px;
  height: 8px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin: 8px auto 0;
  animation: pulse 3s ease-in-out infinite;
}

.map-inner h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.map-inner p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.map-info-cards {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.map-info-card {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
}

.map-info-card svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0062cc 0%, #00a550 100%);
  padding: 50px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-text h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.btn-cta-call {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-cta-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-cta-wp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-cta-wp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-col ul li a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ---------- Fixed Elements ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: var(--white);
}

.phone-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 98, 204, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: phonePulse 2s ease-in-out infinite;
}

.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 98, 204, 0.6);
}

.phone-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@keyframes phonePulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(0, 98, 204, 0.5);
  }

  50% {
    box-shadow: 0 4px 30px rgba(0, 98, 204, 0.8);
  }
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  color: var(--white);
}

/* ---------- Page Header for Subpages ---------- */
.page-header {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 98, 204, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 165, 80, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.page-header .breadcrumb a:hover {
  color: var(--accent);
}

.page-header .breadcrumb .separator {
  color: rgba(255, 255, 255, 0.4);
}

.page-header .breadcrumb .current {
  color: var(--accent);
}

/* ---------- WordPress Content Styles ---------- */
.wp-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.wp-content h1,
.wp-content h2,
.wp-content h3,
.wp-content h4 {
  margin-bottom: 16px;
  margin-top: 32px;
}

.wp-content h1:first-child,
.wp-content h2:first-child {
  margin-top: 0;
}

.wp-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.wp-content img {
  border-radius: var(--radius-md);
  margin: 24px 0;
}

.wp-content ul,
.wp-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.wp-content ol {
  list-style: decimal;
}

.wp-content li {
  margin-bottom: 8px;
  color: var(--text-light);
  line-height: 1.7;
}

.wp-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--light-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.wp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.wp-content table th,
.wp-content table td {
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}

.wp-content table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

.wp-content table tr:nth-child(even) {
  background: var(--off-white);
}

/* ---------- Blog Styles ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 0;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

.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-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--gray);
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-meta svg {
  width: 14px;
  height: 14px;
}

.blog-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body h3 a {
  color: var(--dark);
  transition: var(--transition);
}

.blog-card-body h3 a:hover {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
  transform: translateX(4px);
}

/* Single Post */
.single-post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.single-post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--gray);
}

.single-post-meta svg {
  width: 16px;
  height: 16px;
}

.single-post-featured-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 30px;
  max-height: 450px;
  object-fit: cover;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 40px 0 60px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.pagination a {
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.pagination a:hover {
  background: var(--primary);
  color: var(--white);
}

.pagination span.current {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

/* ---------- Service Detail Page ---------- */
.service-detail {
  padding: 60px 0;
}

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

.service-detail-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.service-detail-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-detail-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--light-blue);
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--dark);
}

.service-detail-feature svg {
  width: 22px;
  height: 22px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* ---------- Sidebar ---------- */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}

.sidebar-widget ul li a:hover {
  background: var(--light-blue);
  color: var(--primary);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process-timeline::before {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .top-bar .container {
    justify-content: center;
  }

  .top-bar-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
  }

  .nav-links.active,
  .nav-menu.active {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-visual {
    max-width: 100%;
  }

  .about-grid,
  .why-grid,
  .quote-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .testimonials-grid,
  .pricing-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    margin: 0 auto;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

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

  .page-header h1 {
    font-size: 1.8rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Dropdown on mobile */
  .nav-menu li ul.sub-menu {
    position: static;
    box-shadow: none;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .hero-floating-card {
    display: none;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ---------- WordPress Alignment Classes ---------- */
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.aligncenter {
  display: block;
  margin: 20px auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
  margin-top: 8px;
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* WordPress admin bar fix */
body.admin-bar .navbar {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px;
  }
}