/*
Theme Name: Ayaz Nakliyat
Theme URI: https://ayaznakliyatbatman.com
Author: Ayaz Nakliyat
Author URI: https://ayaznakliyatbatman.com
Description: Batman Evden Eve Nakliyat firması için özel geliştirilmiş profesyonel WordPress teması. SEO uyumlu, responsive ve modern tasarım.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ayaz-nakliyat
Tags: responsive, custom-colors, custom-menu, featured-images, full-width-template, translation-ready, blog, business, portfolio
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --primary: #ec5b13;
  --primary-dark: #c94d0f;
  --primary-light: #f97316;
  --background-light: #f8f6f6;
  --background-dark: #221610;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --whatsapp: #25D366;
  --whatsapp-dark: #1ebd57;
  --font-main: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius: 0.25rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--background-light);
  color: var(--background-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

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

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

p {
  line-height: 1.75;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 5rem; }
}

.section-padding {
  padding: 4rem 1rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: block;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--background-dark);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 91, 19, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-white:hover {
  background-color: var(--gray-100);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.top-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .top-bar-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 2.5rem;
  }
}

.top-bar-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .top-bar-contacts {
    flex-direction: row;
    gap: 2rem;
  }
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item a {
  color: var(--white);
  transition: opacity 0.2s;
}

.top-bar-item a:hover {
  opacity: 0.8;
}

.top-bar-item .material-symbols-outlined {
  font-size: 18px;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

@media (min-width: 768px) {
  .header-inner { padding: 1rem 2.5rem; }
}

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

.site-logo .logo-icon {
  color: var(--primary);
  line-height: 0;
}

.site-logo .logo-icon svg {
  width: 2rem;
  height: 2rem;
}

.site-logo .logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--background-dark);
  letter-spacing: -0.025em;
  white-space: nowrap;
}

/* Desktop Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-menu a {
  font-weight: 600;
  color: var(--gray-600);
  transition: color 0.2s;
  font-size: 0.9375rem;
  text-decoration: none;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .menu-toggle { display: none; }
}

.menu-toggle .material-symbols-outlined {
  font-size: 2rem;
}

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1.5rem 1rem;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 600;
  color: var(--gray-600);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--primary);
  background: var(--background-light);
}

.mobile-nav .btn {
  margin-top: 0.5rem;
  width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-section { min-height: 600px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 42rem;
  color: var(--white);
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .hero-content { padding: 4rem 5rem; }
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* =============================================
   ABOUT / WHY US SECTION
   ============================================= */
.about-section {
  background-color: var(--background-light);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-tag {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  display: block;
  margin-bottom: 0.5rem;
}

.about-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.about-desc {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-item .material-symbols-outlined {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.feature-item strong {
  display: block;
  font-weight: 700;
  color: var(--background-dark);
  margin-bottom: 0.25rem;
}

.feature-item span {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-badge {
  display: none;
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .about-badge { display: block; }
}

.about-badge .badge-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 0.25rem;
}

.about-badge .badge-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@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 {
  background-color: var(--background-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

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

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--background-dark);
}

.service-card-body p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  flex: 1;
  font-size: 0.9375rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: gap 0.2s;
  text-decoration: none;
}

.service-link:hover {
  gap: 0.5rem;
}

.service-link .material-symbols-outlined {
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.service-link:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Pricing card (6th card) */
.service-card.pricing-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
}

.pricing-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(236,91,19,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
}

.pricing-icon .material-symbols-outlined {
  font-size: 1.875rem;
}

.pricing-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--background-dark);
}

.pricing-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  text-align: left;
  margin-bottom: 1.25rem;
}

/* =============================================
   HOW WE WORK SECTION
   ============================================= */
.process-section {
  background-color: var(--background-light);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

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

.process-step-icon {
  width: 5rem;
  height: 5rem;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-lg);
  color: var(--primary);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.process-step:hover .process-step-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}

.process-step-icon .material-symbols-outlined {
  font-size: 2.25rem;
}

.process-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--background-dark);
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* =============================================
   CTA BANNER SECTION
   ============================================= */
.cta-section {
  position: relative;
  padding: 6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--primary);
  opacity: 0.92;
  mix-blend-mode: multiply;
}

.cta-content {
  position: relative;
  z-index: 10;
  color: var(--white);
  max-width: 56rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.875rem, 4vw, 3.125rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  color: var(--white);
}

.cta-content p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; }
}

/* =============================================
   TESTIMONIALS (WordPress-ready placeholder)
   ============================================= */
.testimonials-section {
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--background-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.testimonial-text {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.75;
  font-style: italic;
  font-size: 0.9375rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--background-dark);
}

.testimonial-city {
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: var(--background-dark);
  padding: 4rem 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--gray-400);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--background-dark);
  color: var(--white);
  padding: 4rem 1rem 2rem;
}

@media (min-width: 768px) {
  .site-footer { padding: 4rem 2.5rem 2rem; }
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand .site-logo {
  margin-bottom: 1.5rem;
}

.footer-brand .site-logo .logo-text {
  color: var(--white);
}

.footer-about {
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary);
}

.social-link .material-symbols-outlined {
  font-size: 1.125rem;
}

.footer-widget h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: color 0.2s;
  font-size: 0.9375rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-links a .material-symbols-outlined {
  font-size: 1rem;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.footer-contact-item .material-symbols-outlined {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--gray-400);
  transition: color 0.2s;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  text-decoration: none;
}

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

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--whatsapp);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: var(--white);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75); }
}

/* =============================================
   WORDPRESS CONTENT AREA
   ============================================= */
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.entry-content p { margin-bottom: 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content a { color: var(--primary); }
.entry-content a:hover { text-decoration: underline; }

/* =============================================
   SIDEBAR
   ============================================= */
.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  color: var(--background-dark);
}

.widget { margin-bottom: 2.5rem; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--background-light);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.875rem;
  color: var(--gray-600);
}

.breadcrumb-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--background-dark) 0%, #3d1f10 100%);
  color: var(--white);
  padding: 4rem 1rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.page-hero p {
  opacity: 0.8;
  font-size: 1.125rem;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background-color: var(--background-light);
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--background-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 1rem;
  display: block;
}

.contact-form input:focus,
.contact-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(236, 91, 19, 0.15);
}

.contact-form textarea,
.wpcf7-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-form label,
.wpcf7-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--background-dark);
  font-size: 0.9375rem;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: block; } }

.hidden-desktop { display: block; }
@media (min-width: 768px) { .hidden-desktop { display: none; } }

/* =============================================
   ACCESSIBILITY
   ============================================= */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  z-index: 9999;
  transition: top 0.1s;
}

.skip-link:focus { top: 1rem; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .site-footer, .whatsapp-float, .top-bar { display: none; }
  body { background: white; color: black; }
}
