/*
Theme Name: Alliance Enterprises
Theme URI: https://allianceenterprises.pk
Author: Alliance Enterprises
Author URI: https://allianceenterprises.pk
Description: A professional B2B supply company WordPress theme for Alliance Enterprises. Features a modern, responsive design with Tailwind CSS, smooth animations, product catalog, blog, contact form, and full WordPress Customizer support.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
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: alliance-enterprises
Tags: custom-logo, custom-menu, featured-images, full-width-template

Copyright 2026 Alliance Enterprises
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
*/

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --background: 0 0% 100%;
  --foreground: 222 47% 11%;
  --primary: 221 83% 53%;
  --primary-foreground: 0 0% 100%;
  --secondary: 221 39% 11%;
  --secondary-foreground: 0 0% 100%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  --accent: 199 89% 48%;
  --accent-foreground: 0 0% 100%;
  --border: 214 32% 91%;
  --radius: 0.5rem;
}

/* ============================================
   BASE RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  color: hsl(var(--foreground));
  line-height: 1.15;
  margin-top: 0;
}
h1 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.875rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { line-height: 1.7; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.ae-container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px)  { .ae-container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .ae-container { padding: 0 2rem; } }

.section-spacing { padding: 5rem 0; }
@media (min-width: 768px) { .section-spacing { padding: 6rem 0; } }

/* ============================================
   COLOUR HELPERS
   ============================================ */
.bg-primary   { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted     { background-color: hsl(var(--muted)); }
.bg-white     { background-color: #ffffff; }

.text-primary-color { color: hsl(var(--primary)); }
.text-white   { color: #ffffff; }
.text-muted   { color: hsl(var(--muted-foreground)); }

.gradient-blue {
  background: linear-gradient(135deg, hsl(221 39% 11%) 0%, hsl(221 39% 22%) 100%);
}

.text-gradient {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent)) 100%);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; border-radius: var(--radius); font-weight: 500;
  font-size: 0.9375rem; border: none; cursor: pointer;
  transition: all 0.2s ease; text-decoration: none; font-family: inherit;
}
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover { background-color: hsl(221 83% 45%); transform: scale(0.98); color: #fff; }

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}
.btn-secondary:hover { background-color: hsl(221 39% 18%); transform: scale(0.98); color: #fff; }

.btn-accent {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}
.btn-accent:hover { background-color: hsl(199 89% 40%); transform: scale(0.98); color: #fff; }

.btn-outline {
  background: transparent; border: 2px solid hsl(var(--primary));
  color: hsl(var(--primary));
}
.btn-outline:hover { background-color: hsl(var(--primary)); color: #fff; transform: scale(0.98); }

.btn-outline-white {
  background: transparent; border: 2px solid #fff; color: #fff;
}
.btn-outline-white:hover { background-color: #fff; color: hsl(var(--secondary)); transform: scale(0.98); }

/* ============================================
   CARDS
   ============================================ */
.ae-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s ease;
}
.ae-card-hover:hover {
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Top bar */
.header-topbar {
  background-color: hsl(var(--secondary));
  color: #fff; font-size: 0.8125rem; padding: 0.5rem 0;
}
.header-topbar a { color: #fff; transition: color 0.2s; }
.header-topbar a:hover { color: hsl(var(--accent)); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}
.topbar-contact { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 0.4rem; }
.topbar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Main nav */
.header-main { background-color: #fff; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.site-logo img { height: 52px; width: auto; }
.site-logo:hover { opacity: 0.9; }

/* Desktop nav */
.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav { display: flex; align-items: center; gap: 2rem; }
}
.primary-nav a {
  font-size: 0.9375rem; font-weight: 500; color: hsl(var(--foreground));
  position: relative; padding-bottom: 2px; transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav a.current { color: hsl(var(--primary)); }
.primary-nav a.current::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background-color: hsl(var(--primary)); border-radius: 2px;
}

/* Get Quote button */
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }

/* Mobile menu toggle */
.mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; color: hsl(var(--foreground));
}
.mobile-toggle svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile nav panel */
.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: #fff; z-index: 201; padding: 2rem;
  transform: translateX(100%); transition: transform 0.3s ease;
  overflow-y: auto;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-close {
  display: flex; align-items: center; justify-content: flex-end;
  margin-bottom: 2rem; background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: hsl(var(--foreground));
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
  font-size: 1.0625rem; font-weight: 500; padding: 0.875rem 1rem;
  border-bottom: 1px solid hsl(var(--border)); color: hsl(var(--foreground));
  transition: color 0.2s, background 0.2s; display: block;
}
.mobile-nav-links a:hover,
.mobile-nav-links a.current {
  color: hsl(var(--primary));
  background-color: hsl(var(--muted));
}
.mobile-nav-cta { margin-top: 1.5rem; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background-color: hsl(var(--secondary));
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.72));
}
.hero-content {
  position: relative; z-index: 10;
  padding: 9rem 0 4rem;
  display: flex; flex-direction: column; align-items: flex-start;
  margin-left: 2rem;
  max-width: 580px;
}
.hero-content h1 {
  color: #fff; margin-bottom: 1.5rem; text-align: left;
  max-width: 480px;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15;
}
.hero-content p {
  color: rgba(255,255,255,0.88); font-size: 1rem;
  margin-bottom: 2rem; max-width: 420px; text-align: left; line-height: 1.7;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-start; }
@media (min-width: 640px)  { .hero-content { margin-left: 3rem; } }
@media (min-width: 1024px) { .hero-content { margin-left: 4rem; } }

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  padding: 2rem; border-radius: var(--radius);
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.12); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background-color: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; color: hsl(var(--primary)); }
.feature-card h4 { margin-bottom: 0.75rem; }
.feature-card p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; }

/* ============================================
   CATEGORIES SLIDER
   ============================================ */
.categories-wrapper {
  position: relative;
}
.categories-scroll {
  display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.category-card {
  min-width: 280px; border-radius: var(--radius); overflow: hidden;
  position: relative; height: 260px; flex-shrink: 0;
  scroll-snap-align: start; cursor: pointer;
  transition: transform 0.3s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.category-card:hover { transform: translateY(-4px); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.92) 0%, rgba(15,23,42,0.3) 60%, transparent 100%);
}
.category-card-title {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem;
  color: #fff; font-size: 1rem; font-weight: 700; line-height: 1.3;
}

.slider-controls { display: flex; gap: 0.75rem; }
.slider-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid hsl(var(--border));
  background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: hsl(var(--foreground));
}
.slider-btn:hover { background-color: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary)); }
.slider-btn svg { width: 18px; height: 18px; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  padding: 2rem; border-radius: var(--radius);
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.service-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background-color: hsl(var(--accent) / 0.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-icon svg { width: 24px; height: 24px; color: hsl(var(--accent)); }
.service-card h4 { margin-bottom: 0.75rem; }
.service-card p { color: hsl(var(--muted-foreground)); font-size: 0.9rem; }

/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-item { text-align: center; }
.stat-item svg { width: 48px; height: 48px; color: hsl(var(--accent)); margin: 0 auto 1rem; }
.stat-value { font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.9375rem; color: rgba(255,255,255,0.85); }

/* ============================================
   BLOG GRID
   ============================================ */
.blog-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); margin-bottom: 0.75rem; }
.blog-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.35; }
.blog-card-excerpt { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section { text-align: center; }
.cta-section h2 { color: #fff; margin-bottom: 1.25rem; }
.cta-section p  { color: rgba(255,255,255,0.88); font-size: 1.0625rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, hsl(221 39% 11%) 0%, hsl(221 39% 22%) 100%);
  padding: 10rem 0 4rem; color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p   { color: rgba(255,255,255,0.88); font-size: 1.125rem; max-width: 600px; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-filter {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem;
}
.filter-btn {
  padding: 0.5rem 1rem; border-radius: 9999px; border: 1px solid hsl(var(--border));
  background: #fff; cursor: pointer; font-size: 0.875rem; font-family: inherit;
  transition: all 0.2s; white-space: nowrap; color: hsl(var(--foreground));
}
.filter-btn:hover,
.filter-btn.active {
  background: hsl(var(--primary)); color: #fff; border-color: hsl(var(--primary));
}

.products-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07); transition: all 0.3s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 16px 35px rgba(0,0,0,0.12); }
.product-card-img { height: 180px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 1.25rem; }
.product-category-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem;
  border-radius: 9999px; background: hsl(var(--primary) / 0.1); color: hsl(var(--primary));
  margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.product-card-title { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-card-desc { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }

.search-bar {
  display: flex; align-items: center; gap: 0.75rem;
  border: 1px solid hsl(var(--border)); border-radius: var(--radius);
  padding: 0.625rem 1rem; background: #fff; margin-bottom: 2rem;
  max-width: 480px;
}
.search-bar svg { width: 18px; height: 18px; color: hsl(var(--muted-foreground)); flex-shrink: 0; }
.search-bar input {
  border: none; outline: none; font-size: 0.9375rem; width: 100%;
  font-family: inherit; color: hsl(var(--foreground));
}

/* Brands slider */
.brands-slider { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; }
.brands-slider::-webkit-scrollbar { display: none; }
.brand-card {
  min-width: 200px; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); flex-shrink: 0; background: #fff;
}
.brand-card img { width: 100%; height: 130px; object-fit: cover; }
.brand-name { padding: 0.625rem; font-size: 0.8125rem; font-weight: 600; text-align: center; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid; gap: 3rem; grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.5fr; } }

.contact-info-item {
  display: flex; gap: 1rem; margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: hsl(var(--primary) / 0.1); display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: hsl(var(--primary)); }
.contact-info-label { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: hsl(var(--muted-foreground)); margin-bottom: 0.25rem; }
.contact-info-value { font-weight: 500; }

/* Form */
.ae-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.875rem; font-weight: 500; }
.form-control {
  padding: 0.625rem 0.875rem; border: 1px solid hsl(var(--border)); border-radius: var(--radius);
  font-size: 0.9375rem; font-family: inherit; outline: none; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; background: #fff; color: hsl(var(--foreground));
}
.form-control:focus { border-color: hsl(var(--primary)); box-shadow: 0 0 0 3px hsl(var(--primary) / 0.15); }
textarea.form-control { resize: vertical; min-height: 140px; }

/* Toast */
.ae-toast {
  position: fixed; bottom: 2rem; right: 2rem;
  padding: 1rem 1.5rem; border-radius: 0.75rem; color: #fff;
  font-weight: 500; z-index: 9999; transform: translateY(120px); opacity: 0;
  transition: all 0.35s ease; max-width: 380px; font-size: 0.9375rem;
}
.ae-toast.show { transform: translateY(0); opacity: 1; }
.ae-toast.success { background-color: hsl(142 71% 40%); }
.ae-toast.error   { background-color: hsl(0 84% 55%); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  padding: 2rem; border-radius: var(--radius);
  background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px; border-radius: 14px; background: hsl(var(--primary) / 0.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem;
}
.value-icon svg { width: 26px; height: 26px; color: hsl(var(--primary)); }

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 2px; background: hsl(var(--border));
}
@media (min-width: 768px) { .timeline::before { left: 50%; transform: translateX(-50%); } }

.timeline-item {
  display: flex; gap: 1.5rem; margin-bottom: 2.5rem; position: relative;
}
@media (min-width: 768px) {
  .timeline-item:nth-child(even) { flex-direction: row-reverse; }
}
.timeline-marker {
  width: 40px; height: 40px; border-radius: 50%; background: hsl(var(--primary));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.75rem; flex-shrink: 0; z-index: 1;
}
.timeline-content {
  flex: 1; background: #fff; padding: 1.5rem; border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.timeline-year { font-size: 1.25rem; font-weight: 800; color: hsl(var(--primary)); }
.timeline-event { font-weight: 700; margin-bottom: 0.25rem; }
.timeline-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* Why choose us list */
.why-list { list-style: none; padding: 0; margin: 0; }
.why-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid hsl(var(--border)); font-size: 0.9375rem;
}
.why-list li::before {
  content: '✓'; color: hsl(var(--primary)); font-weight: 800; font-size: 1rem; margin-top: 0.05rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.service-detail-card {
  background: #fff; border-radius: var(--radius); padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.service-benefits { list-style: none; padding: 0; margin: 1rem 0 0; display: flex; flex-direction: column; gap: 0.5rem; }
.service-benefits li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; }
.service-benefits li::before { content: '→'; color: hsl(var(--accent)); font-weight: 700; }

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background-color: hsl(var(--secondary));
  color: rgba(255,255,255,0.88);
}
.footer-inner {
  display: grid; gap: 2.5rem; grid-template-columns: 1fr;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand img { height: 48px; width: auto; filter: brightness(0) invert(1); margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 380px; }
.footer-contact-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: flex; flex-direction: column; gap: 0.875rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.footer-contact-list li svg { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; color: hsl(var(--accent)); }
.footer-contact-list a:hover { color: hsl(var(--accent)); }

.footer-heading { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: hsl(var(--accent)); }

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: rgba(255,255,255,0.88);
}
.social-link:hover { background: hsl(var(--accent)); color: #fff; }
.social-link svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; font-size: 0.8125rem; text-align: center;
}

/* ============================================
   SKIP LINK & ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: hsl(var(--primary)); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 0 0 0.5rem 0.5rem; z-index: 10000; font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

/* Delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: hsl(var(--muted-foreground)); max-width: 560px; margin: 0 auto; }

.section-title-between {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem;
}
.section-title-between h2 { margin-bottom: 0.5rem; }
.section-title-between p { color: hsl(var(--muted-foreground)); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9998;
  width: 56px; height: 56px; border-radius: 50%;
  background-color: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all 0.3s ease; color: #fff;
}
.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: #fff;
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* Pulse animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================
   REQUIRED WORDPRESS CSS CLASSES
   ============================================ */
.wp-caption { max-width: 100%; background: hsl(var(--muted)); padding: .5rem; border-radius: var(--radius); }
.wp-caption img { display: block; width: 100%; height: auto; }
.wp-caption-text { text-align: center; font-size: .8125rem; color: hsl(var(--muted-foreground)); margin: .5rem 0 0; }
.sticky { border-left: 3px solid hsl(var(--primary)); padding-left: 1rem; }
.gallery-caption { font-size: .8125rem; color: hsl(var(--muted-foreground)); text-align: center; display: block; }
.bypostauthor { background: hsl(var(--muted)); padding: 1rem; border-radius: var(--radius); }
.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; }
.screen-reader-text:focus { background-color: #f1f1f1; border-radius: 3px; box-shadow: 0 0 2px 2px rgba(0,0,0,.6); clip: auto !important; clip-path: none; color: #21759b; display: block; font-size: .875rem; font-weight: 700; height: auto; left: 5px; line-height: normal; padding: 15px 23px 14px; text-decoration: none; top: 5px; width: auto; z-index: 100000; }
.wp-caption { max-width: 100%; }

/* ============================================
   WORDPRESS ALIGNMENT CLASSES
   ============================================ */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }

/* ============================================
   SINGLE POST
   ============================================ */
.post-content { max-width: 780px; margin: 0 auto; }
.post-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.post-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }

/* ============================================
   404 PAGE
   ============================================ */
.page-404 { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1rem; }
.page-404 h1 { font-size: 8rem; font-weight: 900; color: hsl(var(--primary)); line-height: 1; margin-bottom: 0; }
.page-404 h2 { margin-bottom: 1rem; }
.page-404 p  { color: hsl(var(--muted-foreground)); margin-bottom: 2rem; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.w-full { width: 100%; }
