/*
Theme Name: Yalıkavak Teknik Servis
Theme URI: https://yalikavak-teknik-servis.com
Author: Yalıkavak Teknik Servis
Author URI: https://yalikavak-teknik-servis.com
Description: Bodrum Yalıkavak Teknik Servis - Beyaz Eşya, Kombi, Klima, Hidrofor, Su Deposu ve Güneş Enerji Sistemleri. Premium, SEO optimized Turkish technical service website theme.
Version: 1.0.0
Requires at least: 5.8
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: yalikavak-teknik-servis
Tags: one-page, seo, turkish, service, business, responsive
*/

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

:root {
  --primary: #0D2B6E;
  --primary-light: #1a3d8f;
  --accent: #1E90FF;
  --accent-dark: #1570CC;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;
  --green-wa: #25D366;
  --green-wa-dark: #20BA5A;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.22);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s ease;
}

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

body {
  font-family: 'Inter', 'Nunito', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ========================
   LAYOUT UTILITIES
   ======================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

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

.section-header h2 {
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

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

.btn-primary {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-whatsapp:hover {
  background: var(--green-wa-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-navy {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

/* ========================
   ANNOUNCEMENT TICKER
   ======================== */
.announcement-ticker {
  background: var(--accent);
  color: var(--white);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.ticker-track {
  display: inline-flex;
  animation: marquee 40s linear infinite;
}

.ticker-track span {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 20px;
  display: inline-block;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========================
   HEADER / NAVIGATION
   ======================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(13,43,110,0.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(13,43,110,0.15);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

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

.logo-text {
  display: none;
}

@media (min-width: 576px) {
  .logo-text {
    display: block;
  }
  .logo-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
  }
  .logo-text small {
    font-size: 0.75rem;
    color: var(--gray-500);
  }
}

.site-nav {
  display: none;
}

@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .site-nav a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: color var(--transition);
  }
  .site-nav a:hover {
    color: var(--primary);
  }
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
  }
}

.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (min-width: 1024px) {
  .burger-btn { display: none; }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 12px;
}

/* Header offset for fixed navbar */
body {
  padding-top: 80px;
}

/* ========================
   HERO SECTION
   ======================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* The ticker is INSIDE hero so remove extra top padding */
  padding-top: 0;
}

/* We remove the body padding-top shift since ticker is between header and hero */
.hero-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,43,110,0.78) 0%, rgba(13,43,110,0.55) 50%, rgba(13,43,110,0.25) 100%);
}

.hero-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-section h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.hero-section h1 .accent-text {
  color: #60c0ff;
}

.hero-subtitle {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  font-weight: 600;
}

.hero-badge .check-icon {
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge .check-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6px;
}

.scroll-indicator .mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scroll-dot 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

@keyframes scroll-dot {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50%       { opacity: 0.3; transform: translateY(4px); }
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@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: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

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

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

.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-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}

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

.service-card-body h3 {
  font-size: 1.25rem;
  color: var(--gray-900);
  margin-bottom: 12px;
  transition: color var(--transition);
}

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

.service-card-body p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--accent);
  transition: gap var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--accent-dark);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ========================
   WHY US SECTION
   ======================== */
.whyus-section {
  background: var(--white);
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

.whyus-card {
  text-align: center;
}

.whyus-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(30,144,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all var(--transition);
}

.whyus-icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
  transition: color var(--transition);
}

.whyus-card:hover .whyus-icon {
  background: var(--accent);
  transform: scale(1.1);
}

.whyus-card:hover .whyus-icon svg {
  color: var(--white);
}

.whyus-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.whyus-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ========================
   ABOUT SECTION
   ======================== */
.about-section {
  background: var(--gray-50);
}

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

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

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

.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.experience-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.experience-badge .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 4px;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-stat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(30,144,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.stat-num {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ========================
   AREAS SECTION
   ======================== */
.areas-section {
  background: var(--white);
}

.areas-box {
  background: linear-gradient(135deg, rgba(13,43,110,0.04) 0%, rgba(30,144,255,0.06) 100%);
  border: 1px solid rgba(30,144,255,0.12);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

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

.area-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.area-pin {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.area-pin svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  transition: color var(--transition);
}

.area-item:hover .area-pin {
  background: var(--accent);
}

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

.area-item span {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

.area-item:hover span {
  color: var(--primary);
}

.areas-note {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9375rem;
  color: var(--gray-500);
}

.areas-note a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* ========================
   CONTACT SECTION
   ======================== */
.contact-section {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.contact-section::before {
  top: -200px;
  left: -200px;
}

.contact-section::after {
  bottom: -200px;
  right: -200px;
}

.contact-section .section-header h2 {
  color: var(--white);
}

.contact-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(255,255,255,0.22);
}

.contact-info-icon svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

.contact-info-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  transition: color var(--transition);
}

a.contact-info-main:hover {
  color: #60c0ff;
}

.contact-info-sub {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.contact-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.contact-card h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.contact-card p {
  color: rgba(255,255,255,0.75);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.contact-card-btns .btn {
  width: 100%;
  font-size: 1.0625rem;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
}

.contact-btn-call {
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
}

.contact-btn-call:hover {
  background: #f0f4ff;
}

.response-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}

.response-note strong {
  color: var(--white);
}

/* ========================
   FLOATING WHATSAPP
   ======================== */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-wa);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all var(--transition);
  overflow: hidden;
  max-width: 56px;
}

.floating-whatsapp a:hover {
  max-width: 220px;
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.floating-wa-label {
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
}

.floating-whatsapp a:hover .floating-wa-label {
  opacity: 1;
}

.wa-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 64px 0 0;
}

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

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

.footer-brand img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 20px;
}

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

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 24px 0;
  text-align: center;
}

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

/* ========================
   SCROLL ANIMATION CLASSES
   ======================== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================
   RESPONSIVE FIXES
   ======================== */
@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .hero-cta-group .btn { width: 100%; max-width: 300px; }
  .about-stats { grid-template-columns: 1fr; }
  .areas-box { padding: 24px; }
  .contact-card { padding: 28px; }
  .floating-whatsapp { bottom: 20px; right: 20px; }
  .experience-badge { bottom: -12px; right: -12px; padding: 14px 18px; }
}

/* ========================
   WORDPRESS DEFAULT STYLES
   ======================== */
.wp-block-image { margin: 0; }
.aligncenter { margin: 0 auto; }
