/*
Theme Name: Tuzla Cam
Theme URI: https://tuzlacam.com
Author: Tuzla Cam
Author URI: https://tuzlacam.com
Description: Tuzla Cam için özel geliştirilmiş modern kurumsal WordPress teması.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: tuzlacam
Tags: corporate, business, responsive, custom-colors, custom-logo, custom-menu, featured-images, theme-options
*/

/* ============================================================
   TUZLA CAM v2.0 - Modern Kurumsal Tasarım
   ============================================================ */

:root {
  --color-primary: #0f2540;
  --color-primary-dark: #061a2e;
  --color-primary-light: #2c5282;
  --color-secondary: #475569;
  --color-accent: #f59e0b;
  --color-accent-dark: #d97706;
  --color-accent-light: #fbbf24;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-info: #3b82f6;

  --color-text: #0f172a;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-soft: #f8fafc;
  --color-bg-muted: #f1f5f9;
  --color-border: #e2e8f0;
  --color-border-dark: #cbd5e1;

  --gradient-primary: linear-gradient(135deg, #061a2e 0%, #0f2540 50%, #1a3a5c 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --gradient-hero: linear-gradient(135deg, rgba(6, 26, 46, 0.95) 0%, rgba(15, 37, 64, 0.75) 50%, rgba(44, 82, 130, 0.5) 100%);

  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Poppins', 'Inter', system-ui, sans-serif;

  --container: 1280px;
  --header-height: 80px;
  --header-height-mobile: 64px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(15, 37, 64, 0.04);
  --shadow-sm: 0 2px 8px rgba(15, 37, 64, 0.06);
  --shadow: 0 4px 16px rgba(15, 37, 64, 0.08);
  --shadow-md: 0 12px 32px rgba(15, 37, 64, 0.12);
  --shadow-lg: 0 24px 64px rgba(15, 37, 64, 0.18);
  --shadow-xl: 0 32px 80px rgba(15, 37, 64, 0.22);
  --shadow-accent: 0 12px 32px rgba(245, 158, 11, 0.3);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
table { width: 100%; border-collapse: collapse; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1em; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.bg-soft { background: var(--color-bg-soft); }
.bg-primary { background: var(--gradient-primary); color: white; }
.bg-gradient-mesh {
  background-color: var(--color-bg-soft);
  background-image:
    radial-gradient(at 20% 30%, rgba(245, 158, 11, 0.05) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(26, 58, 92, 0.08) 0px, transparent 50%);
}

.text-center { text-align: center; }
.d-flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; } .gap-3 { gap: 1.5rem; } .gap-4 { gap: 2rem; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; } .mb-5 { margin-bottom: 3rem; }
.hidden { display: none !important; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

/* ============================================================
   SECTION TITLE (Modern)
   ============================================================ */
.section-title { text-align: center; margin-bottom: 4rem; position: relative; }
.section-title .subtitle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(245, 158, 11, 0.06));
  color: var(--color-accent-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.section-title h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS (Modern)
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.875rem 1.75rem; font-size: 0.95rem; font-weight: 600;
  border-radius: var(--radius); cursor: pointer; transition: var(--transition);
  text-decoration: none; border: 2px solid transparent; white-space: nowrap;
  line-height: 1.2; position: relative; overflow: hidden;
  font-family: var(--font-body);
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white; border-color: transparent;
  box-shadow: 0 4px 12px rgba(15, 37, 64, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 37, 64, 0.35);
  color: white;
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: white; border-color: transparent;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.4);
  color: white;
}

.btn-outline {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-border-dark);
}
.btn-outline:hover {
  background: var(--color-primary); color: white;
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: white; color: var(--color-primary);
  border-color: white; box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: white;
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* ============================================================
   TOPBAR (Glassmorphism)
   ============================================================ */
.topbar {
  background: var(--gradient-primary);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 1001;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar a { color: rgba(255, 255, 255, 0.9); }
.topbar a:hover { color: var(--color-accent-light); }
.topbar-info { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-info span { display: flex; align-items: center; gap: 0.4rem; }
.topbar-info i { color: var(--color-accent); }
.topbar-social { display: flex; gap: 0.5rem; }
.topbar-social a {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.topbar-social a:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
  color: white;
}

/* ============================================================
   HEADER (Modern Sticky)
   ============================================================ */
.header-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}
.header-main.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}
.header-main .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header-height); gap: 2rem;
}

.site-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.site-logo img { max-height: 56px; width: auto; }
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 800;
  color: var(--color-primary); line-height: 1.1;
  letter-spacing: -0.02em;
}
.site-logo-text small {
  display: block; font-size: 0.7rem; font-weight: 500;
  color: var(--color-text-light); letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-menu { display: flex; align-items: center; gap: 0.25rem; flex: 1; justify-content: center; }
.main-menu > li > a {
  display: block; padding: 0.75rem 1.1rem; color: var(--color-text);
  font-weight: 600; font-size: 0.92rem; border-radius: var(--radius);
  position: relative;
}
.main-menu > li > a:hover, .main-menu > .current-menu-item > a {
  color: var(--color-primary); background: var(--color-bg-muted);
}
.main-menu > li > a::after {
  content: ''; position: absolute; bottom: 0.5rem; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--gradient-accent);
  transition: var(--transition); border-radius: 2px;
}
.main-menu > li > a:hover::after, .main-menu > .current-menu-item > a::after { width: 24px; }

.header-cta { display: flex; gap: 0.75rem; align-items: center; }
.btn-quote-mobile { display: none; background: var(--gradient-accent); color: white; padding: 0.55rem 1rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; align-items: center; gap: 0.4rem; box-shadow: var(--shadow-accent); }
.btn-quote-mobile:hover { color: white; transform: translateY(-2px); }

.menu-toggle { display: none; background: transparent; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: var(--radius); }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--color-primary); border-radius: 3px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER (Modern - Galeri görselleri)
   ============================================================ */
.hero-slider {
  position: relative;
  background: var(--color-primary-dark);
  overflow: hidden;
}
.hero-slide {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: white;
}
.hero-slide::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
}
.hero-slide .container { position: relative; z-index: 3; padding: 5rem 1.5rem; }
.hero-content { max-width: 720px; }
.hero-subtitle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(245, 158, 11, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--color-accent-light);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.5rem; color: white;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
.hero-desc {
  font-size: 1.15rem; margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.slick-dots {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 0.5rem;
  z-index: 5; list-style: none;
}
.slick-dots li button {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0; border: 2px solid white;
  transition: var(--transition);
}
.slick-dots li.slick-active button {
  background: var(--color-accent); border-color: var(--color-accent);
  width: 32px; border-radius: 6px;
}

.slick-prev, .slick-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}
.slick-prev { left: 24px; }
.slick-next { right: 24px; }
.slick-prev:hover, .slick-next:hover {
  background: var(--gradient-accent);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-accent);
}

/* ============================================================
   STATS BAR (Glassmorphism Floating)
   ============================================================ */
.stats-bar {
  background: var(--gradient-primary);
  color: white;
  padding: 3.5rem 0;
  position: relative; z-index: 3;
  margin-top: -50px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
}
.stat-icon {
  width: 72px; height: 72px; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  font-size: 1.75rem; color: var(--color-accent-light);
}
.stat-value {
  font-size: 2.75rem; font-weight: 800;
  font-family: var(--font-heading);
  color: white; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix { color: var(--color-accent-light); }
.stat-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem; margin-top: 0.5rem;
  font-weight: 500;
}

/* ============================================================
   SERVICE CARD (Modern)
   ============================================================ */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%; display: flex; flex-direction: column;
  position: relative;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 2;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-bg-muted);
}
.service-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.1); }

.service-card-icon {
  position: absolute; bottom: -25px; left: 25px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 2; border: 4px solid white;
}

.service-card-body {
  padding: 2rem 1.5rem 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}
.service-card-title {
  font-size: 1.25rem; margin-bottom: 0.75rem;
  color: var(--color-primary); font-weight: 700;
}
.service-card-title a { color: inherit; }
.service-card-summary {
  color: var(--color-text-light); font-size: 0.95rem;
  margin-bottom: 1.25rem; flex: 1; line-height: 1.7;
}
.service-card-link {
  color: var(--color-accent-dark); font-weight: 600;
  font-size: 0.9rem; display: inline-flex;
  align-items: center; gap: 0.4rem;
  transition: var(--transition);
}
.service-card-link:hover {
  color: var(--color-accent-dark); gap: 0.7rem;
}

/* ============================================================
   PRODUCT CARD (Modern)
   ============================================================ */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%; display: flex; flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.product-card-image {
  aspect-ratio: 1; overflow: hidden; position: relative;
  background: var(--color-bg-muted);
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.1); }
.product-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15, 37, 64, 0.85), rgba(44, 82, 130, 0.75));
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; opacity: 0; transition: var(--transition);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-body {
  padding: 1.5rem; text-align: center;
  flex: 1; display: flex; flex-direction: column;
}
.product-card-title {
  font-size: 1.1rem; margin-bottom: 0.5rem;
  color: var(--color-primary); font-weight: 700;
}
.product-card-title a { color: inherit; }
.product-card-summary {
  font-size: 0.875rem; color: var(--color-text-light);
  margin-bottom: 1rem; flex: 1; line-height: 1.6;
}
.product-card-actions { display: flex; gap: 0.5rem; flex-direction: column; }

/* ============================================================
   VIDEO GALLERY (Modern Layout)
   ============================================================ */
.video-gallery-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.video-main-feature { position: relative; }
.video-main-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}
.video-main-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.video-main-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--color-primary-dark);
  overflow: hidden;
}
.video-main-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.video-main-card:hover .video-main-thumb img { transform: scale(1.08); opacity: 0.9; }
.video-main-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; padding-left: 5px;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 4px solid white;
}
.video-main-card:hover .video-main-play {
  background: var(--gradient-accent);
  color: white;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: var(--shadow-accent);
}
.video-main-duration {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: white; padding: 0.3rem 0.7rem;
  font-size: 0.8rem; border-radius: var(--radius-sm);
  font-weight: 600;
}
.video-main-body { padding: 1.5rem; }
.video-main-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.video-main-body h3 {
  font-size: 1.4rem; margin-bottom: 0.5rem;
  color: var(--color-primary); font-weight: 700;
}
.video-main-body p {
  color: var(--color-text-light); font-size: 0.95rem; margin: 0;
}

.video-side-list {
  display: flex; flex-direction: column; gap: 1rem;
}
.video-side-item {
  display: flex; gap: 1rem;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}
.video-side-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
  border-color: var(--color-primary-light);
}
.video-side-thumb {
  position: relative; width: 140px; flex-shrink: 0;
  aspect-ratio: 16 / 10;
  background: var(--color-primary-dark);
  overflow: hidden;
}
.video-side-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.video-side-item:hover .video-side-thumb img { transform: scale(1.1); opacity: 0.9; }
.video-side-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; padding-left: 2px;
  transition: var(--transition);
}
.video-side-item:hover .video-side-play {
  background: var(--color-accent); color: white;
}
.video-side-duration {
  position: absolute; bottom: 4px; right: 4px;
  background: rgba(0, 0, 0, 0.8);
  color: white; padding: 0.15rem 0.4rem;
  font-size: 0.7rem; border-radius: 3px;
  font-weight: 600;
}
.video-side-info {
  padding: 0.75rem 0.5rem 0.75rem 0;
  flex: 1; min-width: 0;
}
.video-side-info h4 {
  font-size: 0.95rem; color: var(--color-primary);
  margin-bottom: 0.25rem; line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.video-side-info p {
  font-size: 0.8rem; color: var(--color-text-light); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999; display: none;
  align-items: center; justify-content: center;
  padding: 1rem;
}
.video-modal.active { display: flex; }
.video-modal-content {
  width: 100%; max-width: 900px;
  aspect-ratio: 16/9; position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.video-modal-content iframe, .video-modal-content video {
  width: 100%; height: 100%; border: 0;
}
.video-modal-close {
  position: absolute; top: -50px; right: 0;
  color: white; font-size: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.video-modal-close:hover {
  background: var(--color-danger);
  transform: rotate(90deg);
}

/* ============================================================
   GALLERY SLIDER (Modern)
   ============================================================ */
.gallery-slider {
  margin: 0 -12px; padding: 0 12px;
}
.gallery-slider .slick-list { margin: 0 -12px; }
.gallery-slider .slick-slide { margin: 0 12px; outline: none; }

.gallery-slide-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-slide-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.gallery-slide-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-slide-item:hover img { transform: scale(1.12); }
.gallery-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 37, 64, 0.95) 0%, rgba(15, 37, 64, 0.3) 50%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 1.25rem; opacity: 0;
  transition: var(--transition);
}
.gallery-slide-item:hover .gallery-slide-overlay { opacity: 1; }
.gallery-slide-title {
  color: white; font-weight: 700; font-size: 1rem;
  font-family: var(--font-heading);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.gallery-slide-zoom {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: var(--gradient-accent);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; opacity: 0;
  transition: var(--transition);
  margin-top: -30px;
  box-shadow: var(--shadow-accent);
}
.gallery-slide-item:hover .gallery-slide-zoom {
  opacity: 1; margin-top: 0;
}
.gallery-slider .slick-prev,
.gallery-slider .slick-next {
  position: absolute; top: 50%;
  transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; border: 3px solid white;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.gallery-slider .slick-prev { left: -24px; }
.gallery-slider .slick-next { right: -24px; }
.gallery-slider .slick-prev:hover,
.gallery-slider .slick-next:hover {
  background: var(--gradient-accent); color: white;
  border-color: transparent;
}
.gallery-slider .slick-dots {
  position: relative; bottom: auto;
  margin-top: 2rem; text-align: center;
}

/* ============================================================
   REFERENCE CARD (Modern)
   ============================================================ */
.reference-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
}
.reference-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.reference-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden; position: relative;
  background: var(--color-bg-muted);
}
.reference-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.reference-card:hover .reference-card-image img { transform: scale(1.08); }
.reference-card-body { padding: 1.5rem; }
.reference-card-category {
  display: inline-block;
  background: linear-gradient(135deg, rgba(26, 58, 92, 0.08), rgba(44, 82, 130, 0.04));
  color: var(--color-primary);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 700;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(26, 58, 92, 0.1);
}
.reference-card-title {
  font-size: 1.2rem; color: var(--color-primary);
  margin-bottom: 0.5rem; font-weight: 700;
}
.reference-card-meta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--color-text-light);
  margin-top: 0.75rem;
}
.reference-card-meta span { display: flex; align-items: center; gap: 0.4rem; }
.reference-card-meta i { color: var(--color-accent); }

/* ============================================================
   BLOG CARD (Modern)
   ============================================================ */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden; position: relative;
  background: var(--color-bg-muted);
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-date {
  position: absolute; top: 15px; left: 15px;
  background: var(--gradient-accent);
  color: white; padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  text-align: center; font-weight: 700;
  line-height: 1.1;
  box-shadow: var(--shadow-accent);
}
.blog-card-date .day { font-size: 1.25rem; display: block; }
.blog-card-date .month { font-size: 0.75rem; text-transform: uppercase; }
.blog-card-body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column;
}
.blog-card-category {
  color: var(--color-accent-dark);
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.blog-card-title {
  font-size: 1.2rem; margin-bottom: 0.75rem;
  color: var(--color-primary); line-height: 1.4;
  font-weight: 700;
}
.blog-card-title a { color: inherit; }
.blog-card-summary {
  color: var(--color-text-light); font-size: 0.92rem;
  flex: 1; margin-bottom: 1rem; line-height: 1.6;
}
.blog-card-meta {
  display: flex; justify-content: space-between;
  font-size: 0.85rem; color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}

/* ============================================================
   PAGE HEADER (Modern)
   ============================================================ */
.page-header {
  background: var(--gradient-primary);
  color: white;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(44, 82, 130, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 {
  color: white; font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.breadcrumb {
  display: flex; gap: 0.5rem; align-items: center;
  color: rgba(255, 255, 255, 0.85); font-size: 0.9rem;
}
.breadcrumb a { color: var(--color-accent-light); }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: rgba(255, 255, 255, 0.4); }

/* ============================================================
   CONTENT
   ============================================================ */
.content-area { padding: 4rem 0; }
.content-area h2, .content-area h3, .content-area h4 { margin-top: 2rem; margin-bottom: 1rem; }
.content-area h2:first-child, .content-area h3:first-child { margin-top: 0; }
.content-area p { line-height: 1.8; margin-bottom: 1.25rem; color: var(--color-text); }
.content-area ul, .content-area ol { margin: 1rem 0 1.5rem 1.5rem; }
.content-area ul li { list-style: disc; margin-bottom: 0.5rem; }
.content-area ol li { list-style: decimal; margin-bottom: 0.5rem; }
.content-area img { border-radius: var(--radius); margin: 1.5rem 0; }
.content-area blockquote {
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-soft);
  padding: 1rem 1.5rem; margin: 1.5rem 0;
  font-style: italic; color: var(--color-text-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.content-area table { border: 1px solid var(--color-border); margin: 1.5rem 0; }
.content-area th, .content-area td {
  padding: 0.75rem 1rem; border: 1px solid var(--color-border);
  text-align: left;
}
.content-area th { background: var(--color-bg-soft); font-weight: 700; }

.sidebar {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  height: fit-content;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.sidebar h4 {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 0.5rem; margin-bottom: 1rem;
  font-size: 1.1rem;
}
.sidebar-widget { margin-bottom: 2rem; }
.sidebar-widget:last-child { margin-bottom: 0; }

/* ============================================================
   FORM (Modern)
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-weight: 600;
  color: var(--color-text); margin-bottom: 0.4rem;
  font-size: 0.92rem;
}
.form-label .req { color: var(--color-danger); }
.form-control, input[type="text"], input[type="email"], input[type="tel"], input[type="password"], input[type="date"], input[type="url"], textarea, select {
  width: 100%; padding: 0.875rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.95rem; background: white;
  transition: var(--transition);
  font-family: inherit;
}
.form-control:focus, input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 4px rgba(44, 82, 130, 0.1);
}
textarea { min-height: 120px; resize: vertical; }

.alert {
  padding: 1rem 1.25rem; border-radius: var(--radius);
  margin-bottom: 1.5rem; display: flex;
  align-items: flex-start; gap: 0.75rem;
  border: 1px solid transparent;
}
.alert-success { background: #d1fae5; color: #065f46; border-color: #6ee7b7; }
.alert-danger, .alert-error { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.alert-warning { background: #fef3c7; color: #92400e; border-color: #fcd34d; }
.alert-info { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }

/* ============================================================
   CONTACT INFO (Modern)
   ============================================================ */
.contact-info-item {
  display: flex; gap: 1rem; padding: 1.25rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
  border-left: 4px solid var(--color-accent);
  transition: var(--transition);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.contact-info-item:hover {
  transform: translateX(5px); box-shadow: var(--shadow-md);
}
.contact-info-icon {
  width: 52px; height: 52px;
  background: var(--gradient-primary);
  color: var(--color-accent-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.contact-info-content h5 {
  color: var(--color-primary); margin-bottom: 0.25rem;
  font-size: 1rem; font-weight: 700;
}
.contact-info-content a, .contact-info-content p {
  color: var(--color-text-light); margin: 0; font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ============================================================
   FAQ (Modern Accordion)
   ============================================================ */
.faq-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}
.faq-question {
  padding: 1.25rem 1.5rem; font-weight: 700;
  color: var(--color-primary); cursor: pointer;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  font-size: 1.05rem;
}
.faq-question i {
  color: var(--color-accent);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-text-light); line-height: 1.7;
}

/* ============================================================
   CTA SECTION (Modern)
   ============================================================ */
.cta-section {
  background: var(--gradient-primary);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(44, 82, 130, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-content { max-width: 720px; }
.cta-content h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   WHATSAPP FLOATING (Modern)
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 25px; right: 25px;
  width: 60px; height: 60px;
  background: #25d366;
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 998; transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  background: #1fa855; color: white;
  transform: scale(1.1);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.scroll-top {
  position: fixed; bottom: 25px; left: 25px;
  width: 50px; height: 50px;
  background: var(--gradient-primary);
  color: white; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 997; transition: var(--transition);
}
.scroll-top.active { display: flex; }
.scroll-top:hover {
  background: var(--color-primary-dark); color: white;
  transform: translateY(-3px);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999; display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%; max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: white; font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.lightbox-close:hover {
  background: var(--color-danger);
  transform: rotate(90deg);
}

/* ============================================================
   PAGINATION (Modern)
   ============================================================ */
.pagination { margin-top: 3rem; text-align: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 1rem;
  background: white; border: 2px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text); font-weight: 600;
  transition: var(--transition);
  margin: 0 0.2rem; text-decoration: none;
}
.pagination .page-numbers:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.pagination .page-numbers.current {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER (Modern)
   ============================================================ */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-accent);
}
.footer h4 {
  color: white; font-size: 1.125rem;
  margin-bottom: 1.5rem; position: relative;
  padding-bottom: 0.75rem; font-weight: 700;
}
.footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--color-accent);
}
.footer-about p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.4rem; font-weight: 800; color: white;
  margin-bottom: 1rem; font-family: var(--font-heading);
  letter-spacing: -0.02em;
}
.footer-links li { padding: 0.4rem 0; }
.footer-links a {
  color: rgba(255, 255, 255, 0.7); font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: var(--transition);
}
.footer-links a::before {
  content: '\f105'; font-family: 'Font Awesome 6 Free';
  font-weight: 900; color: var(--color-accent);
  font-size: 0.75rem;
}
.footer-links a:hover {
  color: var(--color-accent-light); padding-left: 5px;
}
.footer-contact-item {
  display: flex; gap: 0.75rem;
  margin-bottom: 1rem; font-size: 0.9rem;
}
.footer-contact-item i {
  color: var(--color-accent); font-size: 1rem;
  margin-top: 4px; flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255, 255, 255, 0.7); }
.footer-contact-item a:hover { color: var(--color-accent-light); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social a:hover {
  background: var(--gradient-accent);
  transform: translateY(-3px);
  border-color: transparent;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0; margin-top: 3rem;
  font-size: 0.875rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.footer-bottom a { color: var(--color-accent-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .topbar-info span:not(:first-child):not(:nth-child(2)) { display: none; }
  .menu-toggle { display: flex; }
  .main-menu {
    position: fixed; top: var(--header-height-mobile); left: 0; right: 0; bottom: 0;
    background: white;
    flex-direction: column; align-items: stretch;
    padding: 1rem; overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999; gap: 0;
    box-shadow: var(--shadow-lg);
  }
  .main-menu.active { transform: translateX(0); }
  .main-menu li { border-bottom: 1px solid var(--color-border); }
  .main-menu > li > a { padding: 1rem; border-radius: 0; font-size: 1rem; }
  .main-menu > li > a::after { display: none; }
  .header-cta .btn-quote-desktop { display: none; }
  .btn-quote-mobile { display: inline-flex; }
  .header-main .container { min-height: var(--header-height-mobile); gap: 1rem; }
  .site-logo img { max-height: 45px; }
  .site-logo-text { font-size: 1.25rem; }
  .hero-slide { min-height: 480px; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-value { font-size: 2rem; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .video-gallery-layout { grid-template-columns: 1fr; }
  .video-side-list { flex-direction: row; overflow-x: auto; padding-bottom: 0.5rem; }
  .video-side-item { min-width: 280px; flex-shrink: 0; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .section-title { margin-bottom: 2.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .topbar { display: none; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 15px; right: 15px; }
  .scroll-top { bottom: 15px; left: 15px; width: 44px; height: 44px; }
  .video-side-list { flex-direction: column; }
  .video-side-item { min-width: auto; }
  .video-main-play { width: 64px; height: 64px; font-size: 1.3rem; }
  .video-side-thumb { width: 110px; }
  .gallery-slider .slick-prev, .gallery-slider .slick-next { width: 40px; height: 40px; }
}

/* ============================================================
   WP DEFAULTS
   ============================================================ */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--color-text-light); text-align: center; margin-top: 0.5rem; }
.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; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.8s ease forwards; }
