/*
Theme Name: Parıltım Theme
Theme URI: https://pariltim.com.tr
Author: Parıltım
Author URI: https://pariltim.com.tr
Description: Parıltım Catering WordPress Theme
Version: 1.0
Text Domain: pariltim
*/

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Custom Properties ── */
:root {
  /* Colors */
  --peach: #F28C28;
  --peach-light: #F5A623;
  --peach-dark: #E07B1A;
  --caramel: #C86B1A;
  --burgundy: #651C32;
  --deep: #3A0F1F;
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-400: #ABABAB;
  --gray-600: #6B6B6B;
  --gray-800: #333333;
  --black: #1A1A1A;

  /* Typography */
  --font-header: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 12rem;

  /* Layout */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-pill: 999px;
  --radius-oval: 50%;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
  --duration-slower: 800ms;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.16);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background-color: 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(--duration-fast) var(--ease-out);
}

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

ul, ol {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 800;
  line-height: 1.1;
}

.h-display {
  font-family: var(--font-header);
  font-weight: 900;
  font-stretch: expanded;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.text-peach { color: var(--peach); }
.text-burgundy { color: var(--burgundy); }
.text-deep { color: var(--deep); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-600); }
.bg-peach { background-color: var(--peach); }
.bg-burgundy { background-color: var(--burgundy); }
.bg-white { background-color: var(--white); }
.bg-off-white { background-color: var(--off-white); }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--duration-slow) var(--ease-out);
}

.site-header.scrolled {
  background-color: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

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

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Burger Menu Button */
.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.125rem;
  transition: transform var(--duration-fast) var(--ease-out);
}

.burger-btn:hover {
  transform: scale(1.1);
}

.burger-btn span {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: width var(--duration-fast) var(--ease-out);
}

.burger-btn span:nth-child(2) {
  width: 66%;
}

.burger-btn:hover span:nth-child(2) {
  width: 100%;
}

/* Header Nav Links */
.header-nav {
  display: none;
  gap: 1.75rem;
}

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width var(--duration-normal) var(--ease-out);
}

.header-nav a:hover::after {
  width: 100%;
}

/* Logo */
.logo {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  transition: color var(--duration-slow) var(--ease-out);
}

.logo .logo-accent {
  color: var(--peach);
}

.site-header:not(.scrolled) .logo {
  color: var(--white);
}

.site-header.scrolled .logo {
  color: var(--black);
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta {
  display: none;
  align-items: center;
  gap: 1.25rem;
  padding: 0.6rem 1.75rem;
  border: 2px solid currentColor;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--duration-slow) var(--ease-out);
}

.site-header.scrolled .header-cta {
  background-color: var(--peach);
  border-color: var(--peach);
  color: var(--white);
}

.header-cta svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-cta-divider {
  width: 2px;
  height: 1.5rem;
  background: currentColor;
  opacity: 0.4;
}

.search-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-oval);
  transition: background var(--duration-fast) var(--ease-out);
}

.search-btn:hover {
  background: rgba(255,255,255,0.15);
}

.site-header.scrolled .search-btn:hover {
  background: rgba(0,0,0,0.05);
}

/* Header color states */
.site-header:not(.scrolled) {
  color: var(--white);
}

.site-header.scrolled {
  color: var(--black);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--peach);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(242, 140, 40, 0.4) 0%, 
    rgba(242, 140, 40, 0.7) 50%,
    rgba(242, 140, 40, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: var(--space-3xl) 0;
  z-index: 2;
}

.hero-subtitle {
  font-family: var(--font-header);
  font-weight: 700;
  font-stretch: expanded;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(1rem) scale(0.95);
  animation: heroTextIn 0.8s var(--ease-out) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-header);
  font-weight: 900;
  font-stretch: expanded;
  font-size: clamp(2.5rem, 9vw, 8.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(1rem) scale(0.95);
  animation: heroTextIn 0.8s var(--ease-out) 0.5s forwards;
}

.hero-description {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  opacity: 0.9;
  opacity: 0;
  transform: translateY(1rem);
  animation: heroTextIn 0.8s var(--ease-out) 0.7s forwards;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--duration-normal) var(--ease-out);
  opacity: 0;
  transform: translateY(1rem);
  animation: heroTextIn 0.8s var(--ease-out) 0.9s forwards;
}

.hero-btn:hover {
  background: var(--white);
  color: var(--peach);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stamp / Emblem */
.hero-stamp {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  width: 108px;
  height: 108px;
  z-index: 3;
}

.stamp-circle {
  width: 100%;
  height: 100%;
  border: 2px solid var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
}

.stamp-inner {
  width: 100%;
  height: 100%;
  animation: stampSpin 20s linear infinite;
  position: absolute;
}

.stamp-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  color: var(--peach);
}

.stamp-waves svg {
  width: 100%;
  height: 100%;
}

@keyframes stampSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--space-4xl) 0;
  background: var(--white);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.services-content {
  position: relative;
}

.services-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.services-label svg {
  width: 1.25rem;
  height: 1.25rem;
}

.services-title {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--burgundy);
  line-height: 1.1;
  margin-bottom: var(--space-xl);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid var(--gray-200);
}

.service-item {
  padding: 1rem 0 1rem 1.5rem;
  position: relative;
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gray-800);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.service-item::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--peach);
  transform: scaleY(0);
  transition: transform var(--duration-normal) var(--ease-out);
}

.service-item:hover {
  color: var(--burgundy);
  padding-left: 2rem;
}

.service-item:hover::before {
  transform: scaleY(1);
}

/* Services Visual */
.services-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.services-img-main {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.services-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.services-img-accent {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 10%;
  overflow: hidden;
  z-index: 3;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.services-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-shape {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 200px;
  height: 200px;
  background: var(--peach);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 1;
}

.services-shape-2 {
  position: absolute;
  top: 50%;
  right: -1.5rem;
  transform: translateY(-50%);
  z-index: 4;
}

.waves-icon {
  width: 80px;
  color: var(--peach);
  opacity: 0.6;
}

/* ============================================
   ABOUT / STATS SECTION
   ============================================ */
.about {
  background: var(--peach);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  border-radius: 0 0 50% 50%;
}

.about-inner {
  position: relative;
  z-index: 2;
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

.about-label svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-title {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.about-text {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

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

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-sm);
  color: var(--white);
  opacity: 0.85;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2.25rem;
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--duration-normal) var(--ease-out);
}

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

/* ============================================
   MARQUEE / SCROLLING TEXT
   ============================================ */
.marquee-section {
  padding: var(--space-2xl) 0;
  overflow: hidden;
  background: var(--white);
  position: relative;
}

.marquee-row {
  display: flex;
  white-space: nowrap;
  margin-bottom: var(--space-sm);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-row:nth-child(2) .marquee-track {
  animation-direction: reverse;
  animation-duration: 30s;
}

.marquee-text {
  font-family: var(--font-header);
  font-weight: 900;
  font-stretch: expanded;
  font-size: clamp(4rem, 10vw, 9rem);
  text-transform: uppercase;
  color: var(--white);
  paint-order: stroke fill;
  -webkit-text-stroke: 1.5px var(--peach);
  text-shadow: none;
  padding: 0 2rem;
  user-select: none;
  line-height: 1.1;
}

.marquee-text.filled {
  color: var(--peach);
  -webkit-text-stroke: 0;
  opacity: 0.08;
  paint-order: fill stroke;
}

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

/* Outlined decorative shapes in marquee */
.marquee-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.marquee-shape {
  position: absolute;
  border: 2px solid var(--peach);
  border-radius: var(--radius-xl);
  opacity: 0.2;
}

.marquee-shape:nth-child(1) {
  width: 200px;
  height: 120px;
  top: 10%;
  left: 5%;
  transform: rotate(-12deg);
}

.marquee-shape:nth-child(2) {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  top: 20%;
  right: 15%;
}

.marquee-shape:nth-child(3) {
  width: 280px;
  height: 100px;
  bottom: 15%;
  right: 5%;
  transform: rotate(8deg);
}

/* ============================================
   GLOBAL NETWORK / LOCATIONS
   ============================================ */
.network {
  position: relative;
  padding: var(--space-3xl) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.network-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(26,26,26,0.85) 0%, 
    rgba(26,26,26,0.6) 50%,
    rgba(26,26,26,0.4) 100%
  );
}

.network-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.network-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--peach);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.network-label svg {
  width: 1.25rem;
  height: 1.25rem;
}

.network-title {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: var(--peach);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
}

.network-text {
  max-width: 580px;
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: var(--space-lg);
}

.network-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  border: 2px solid var(--peach);
  border-radius: var(--radius-pill);
  color: var(--peach);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all var(--duration-normal) var(--ease-out);
}

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

/* Dot matrix effect */
.dot-matrix {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image: radial-gradient(circle, var(--white) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Curved transition */
.network-curve {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
}

.network-curve svg {
  width: 100%;
  height: 100%;
}

/* Orange accent shapes */
.network-accent {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.network-accent-left {
  left: 0;
  width: 200px;
  height: 300px;
  background: var(--peach);
  border-radius: 0 var(--radius-xl) 0 0;
  opacity: 0.8;
}

.network-accent-right {
  right: 0;
  width: 150px;
  height: 200px;
  background: var(--peach);
  border-radius: var(--radius-xl) 0 0 0;
  opacity: 0.6;
}

/* ============================================
   NEWS / BLOG SECTION
   ============================================ */
.news {
  padding: var(--space-3xl) 0 var(--space-4xl);
  background: var(--off-white);
  overflow: hidden;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.news-title {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
}

.news-see-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--peach);
  font-size: 0.95rem;
  transition: gap var(--duration-normal) var(--ease-out);
}

.news-see-all:hover {
  gap: 1rem;
}

.news-see-all svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* News Slider */
.news-slider {
  display: flex;
  gap: var(--space-lg);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-md);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.news-slider::-webkit-scrollbar {
  display: none;
}

.news-card {
  flex: 0 0 85%;
  max-width: 420px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

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

.news-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.news-card:hover .news-card-img img {
  transform: scale(1.06);
}

.news-card-content {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.news-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--peach);
  margin-bottom: var(--space-xs);
}

.news-card-title {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--burgundy);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

.news-card-date {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--deep);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo {
  margin-bottom: var(--space-md);
  color: var(--white);
}

.footer-brand-text {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.65;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--peach);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.88rem;
  opacity: 0.65;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--peach);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer-social a:hover {
  background: var(--peach);
  border-color: var(--peach);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 0.8rem;
  opacity: 0.5;
}

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

.footer-bottom-links a:hover {
  opacity: 1;
  color: var(--peach);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity var(--duration-slower) var(--ease-out),
              transform var(--duration-slower) var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--container-padding);
  border-bottom: 1px solid var(--gray-200);
}

.close-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: transform var(--duration-fast) var(--ease-out);
}

.close-btn:hover {
  transform: rotate(90deg);
}

.mobile-menu-body {
  flex: 1;
  padding: var(--space-xl) var(--container-padding);
}

.mobile-nav-group {
  margin-bottom: var(--space-xl);
}

.mobile-nav-title {
  font-family: var(--font-header);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--peach);
  margin-bottom: var(--space-sm);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-list a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--burgundy);
  padding: 0.5rem 0;
  transition: color var(--duration-fast);
}

.mobile-nav-list a:hover {
  color: var(--peach);
}

.mobile-menu-footer {
  padding: var(--space-md) var(--container-padding) var(--space-xl);
  background: var(--peach);
  color: var(--white);
}

.mobile-menu-footer .footer-social a {
  border-color: rgba(255,255,255,0.4);
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
.counter {
  font-variant-numeric: tabular-nums;
}

/* ============================================
   CURSOR TRAIL (optional flair)
   ============================================ */
.cursor-dot {
  display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 768px) {
  :root {
    --container-padding: 2.5rem;
  }

  .header-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .services-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-2xl);
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-card {
    flex: 0 0 40%;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-3xl);
  }

  .news-card {
    flex: 0 0 30%;
  }

  .hero-title {
    font-size: clamp(5rem, 9vw, 8.5rem);
  }
}

@media (min-width: 1280px) {
  :root {
    --container-padding: 3rem;
  }
}

/* ============================================
   SMOOTH SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  opacity: 0;
  animation: heroTextIn 0.8s var(--ease-out) 1.2s forwards;
  z-index: 5;
}

.scroll-indicator-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scrollLine 1.5s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  color: var(--white);
}

.loader-logo {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.04em;
  animation: loaderPulse 1.2s var(--ease-in-out) infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.98); }
}

/* ============================================
   ADDITIONAL MICRO-INTERACTIONS
   ============================================ */

/* Parallax scroll effect for shapes */
.parallax-shape {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Image hover zoom */
.img-hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.img-hover-zoom img {
  transition: transform var(--duration-slow) var(--ease-out);
}

.img-hover-zoom:hover img {
  transform: scale(1.08);
}

/* Button ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-ripple:hover::after {
  width: 300px;
  height: 300px;
}
