/*
Theme Name: Ankara Su Jeti - Stone Design
Theme URI: https://ankarasujetikesim.com.tr
Author: Ankara Su Jeti
Description: Ankara Su Jeti Stone Design WordPress Teması
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ankara-sujeti
*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #0a0a0a;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #10b981, #14b8a6);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #059669, #0d9488);
}

/* ===== COLORS (CSS Variables) ===== */
:root {
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --cyan-500: #06b6d4;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --sky-500: #0ea5e9;
  --cyan-600: #0891b2;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --purple-500: #a855f7;
  --pink-500: #ec4899;
  --zinc-500: #71717a;
  --zinc-700: #3f3f46;
  --stone-500: #78716c;
  --stone-700: #44403c;
  --red-500: #ef4444;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

/* ===== GRID ===== */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== SPACING ===== */
.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-5 {
  padding: 1.25rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pl-4 {
  padding-left: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mb-20 {
  margin-bottom: 5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ===== SIZING ===== */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.h-auto {
  height: auto;
}

.max-w-md {
  max-width: 28rem;
}

.max-w-lg {
  max-width: 32rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* ===== TYPOGRAPHY ===== */
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== COLORS ===== */
.text-white {
  color: #fff;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-slate-400 {
  color: var(--slate-400);
}

.text-slate-500 {
  color: var(--slate-500);
}

.text-slate-600 {
  color: var(--slate-600);
}

.text-slate-700 {
  color: var(--slate-700);
}

.text-slate-800 {
  color: var(--slate-800);
}

.text-emerald-400 {
  color: var(--emerald-400);
}

.text-emerald-500 {
  color: var(--emerald-500);
}

.text-emerald-600 {
  color: var(--emerald-600);
}

.text-teal-600 {
  color: var(--teal-600);
}

.text-cyan-500 {
  color: var(--cyan-500);
}

.text-cyan-600 {
  color: var(--cyan-600);
}

.text-amber-400 {
  color: var(--amber-400);
}

.text-amber-500 {
  color: var(--amber-500);
}

.text-sky-500 {
  color: var(--sky-500);
}

.bg-white {
  background-color: #fff;
}

.bg-slate-50 {
  background-color: var(--slate-50);
}

.bg-slate-100 {
  background-color: var(--slate-100);
}

.bg-emerald-50 {
  background-color: #ecfdf5;
}

.bg-emerald-100 {
  background-color: #d1fae5;
}

.bg-teal-50 {
  background-color: #f0fdfa;
}

/* ===== BORDERS ===== */
.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border: 1px solid var(--slate-200);
}

.border-slate-50 {
  border-color: var(--slate-50);
}

.border-slate-100 {
  border-color: var(--slate-100);
}

.border-slate-200 {
  border-color: var(--slate-200);
}

.border-slate-700 {
  border-color: rgba(51, 65, 85, 0.5);
}

.border-slate-800 {
  border-color: var(--slate-800);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.border-white-20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white-30 {
  border-color: rgba(255, 255, 255, 0.3);
}

.border-emerald-400 {
  border-color: var(--emerald-400);
}

.border-t {
  border-top: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

/* ===== SHADOWS ===== */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== POSITIONING ===== */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

/* ===== TRANSITIONS ===== */
.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.transition-transform {
  transition: transform 0.3s;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

/* ===== OBJECT ===== */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* ===== BACKDROP ===== */
.backdrop-blur-sm {
  backdrop-filter: blur(4px);
}

.backdrop-blur-lg {
  backdrop-filter: blur(16px);
}

/* ===== GRADIENTS ===== */
.bg-gradient-emerald {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
}

.bg-gradient-emerald-br {
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
}

.bg-gradient-dark {
  background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800));
}

.bg-gradient-dark-teal {
  background: linear-gradient(to bottom right, var(--slate-900), var(--slate-800), #134e4a);
}

.bg-gradient-slate {
  background: linear-gradient(to right, var(--slate-900), var(--slate-800));
}

.bg-gradient-footer {
  background: linear-gradient(to bottom, var(--slate-900), var(--slate-950));
}

.text-gradient-emerald {
  background: linear-gradient(to right, var(--emerald-400), var(--teal-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-gradient-emerald-dark {
  background: linear-gradient(to right, var(--emerald-600), var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== ICON SIZES (for inline SVGs) ===== */
.icon-14 {
  width: 14px;
  height: 14px;
}

.icon-16 {
  width: 16px;
  height: 16px;
}

.icon-18 {
  width: 18px;
  height: 18px;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.icon-24 {
  width: 24px;
  height: 24px;
}

.icon-28 {
  width: 28px;
  height: 28px;
}

.icon-32 {
  width: 32px;
  height: 32px;
}

.icon-36 {
  width: 36px;
  height: 36px;
}

.icon-40 {
  width: 40px;
  height: 40px;
}

.icon-48 {
  width: 48px;
  height: 48px;
}

svg.lucide {
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== SPECIFIC SIZES ===== */
.w-8 {
  width: 2rem;
}

.h-8 {
  height: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.h-10 {
  height: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.h-14 {
  height: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-20 {
  width: 5rem;
}

.h-20 {
  height: 5rem;
}

.w-24 {
  width: 6rem;
}

.h-24 {
  height: 6rem;
}

.h-0\.5 {
  height: 2px;
}

.h-1 {
  height: 0.25rem;
}

.w-1\.5 {
  width: 6px;
}

.h-1\.5 {
  height: 6px;
}

.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

/* ===== HEADER ===== */
.top-bar {
  background: linear-gradient(to right, var(--slate-900), var(--slate-800));
  color: #fff;
  padding: 0.5rem 0;
}

.top-bar a:hover {
  color: var(--emerald-400);
}

.main-header {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
  padding: 1rem 0;
  top: 40px;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  top: 0 !important;
}

.header-logo {
  height: 3.5rem;
  width: auto;
}

/* Desktop nav */
.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
}

.scrolled .nav-link {
  color: var(--slate-700);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.scrolled .nav-link:hover {
  color: var(--emerald-600);
  background: #ecfdf5;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  min-width: 220px;
  z-index: 60;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu-inner {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--slate-100);
  overflow: hidden;
}

.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--slate-700);
  transition: all 0.3s;
  border-bottom: 1px solid var(--slate-50);
}

.nav-dropdown-link:last-child {
  border-bottom: none;
}

.nav-dropdown-link:hover {
  background: #ecfdf5;
  color: var(--emerald-600);
}

.chevron-icon {
  transition: transform 0.3s;
}

.nav-dropdown:hover .chevron-icon {
  transform: rotate(180deg);
}

.cta-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s;
  display: inline-block;
}

.cta-btn:hover {
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: #fff;
}

.scrolled .mobile-menu-btn {
  color: var(--slate-800);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-menu-panel {
  position: absolute;
  right: -100%;
  top: 0;
  height: 100%;
  width: 90%;
  max-width: 420px;
  background: linear-gradient(to bottom, var(--slate-900), var(--slate-800));
  overflow-y: auto;
  transition: right 0.3s ease;
  z-index: 51;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  right: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.mobile-menu-link {
  display: block;
  padding: 1rem 0;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: var(--emerald-400);
}

.mobile-menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  color: #fff;
  font-weight: 500;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1rem;
}

.mobile-submenu.active {
  max-height: 500px;
}

.mobile-submenu a {
  display: block;
  padding: 0.5rem 0;
  color: var(--slate-300);
  transition: color 0.3s;
}

.mobile-submenu a:hover {
  color: var(--emerald-400);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6, 78, 59, 0.3), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: var(--emerald-400);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 42rem;
  line-height: 1.625;
}

.hero-btn-primary {
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  font-weight: 600;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s;
  display: inline-block;
}

.hero-btn-primary:hover {
  box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.hero-btn-secondary {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  color: #fff;
  font-weight: 600;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounceY 2s infinite;
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.decorative-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  animation: pulse 4s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ===== PAGE HERO (Sub pages) ===== */
.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.page-hero .blur-blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  opacity: 0.1;
}

.page-hero h1 {
  line-height: 1.15;
}

/* ===== SECTION LABEL ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-600);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-label .line {
  width: 2.5rem;
  height: 2px;
  background: var(--emerald-600);
}

.section-label.light {
  color: var(--emerald-400);
}

.section-label.light .line {
  background: var(--emerald-400);
}

/* ===== SERVICE CARD ===== */
.service-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--slate-100);
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: #a7f3d0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.service-card .icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s;
  color: #fff;
}

.service-card:hover .icon-box {
  transform: scale(1.1);
}

.service-card-hover-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s;
}

.service-card:hover .service-card-hover-bg {
  opacity: 0.05;
}

/* ===== TESTIMONIAL ===== */
.testimonials-bg {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  position: relative;
}

.testimonials-bg .pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  border: 2px solid var(--emerald-400);
  object-fit: cover;
}

.star-filled {
  fill: var(--amber-400);
  color: var(--amber-400);
  width: 1rem;
  height: 1rem;
}

.nav-btn-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: #fff;
}

.nav-btn-circle.dark {
  background: rgba(255, 255, 255, 0.1);
}

.nav-btn-circle.dark:hover {
  background: var(--emerald-500);
}

.nav-btn-circle.light {
  background: #fff;
  border: 1px solid var(--slate-200);
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.testimonial-dot.active {
  background: var(--emerald-400);
  width: 2rem;
}

/* ===== GALLERY ===== */
.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .zoom-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
}

.gallery-item .title-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .title-bar {
  transform: translateY(0);
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s;
  background: #fff;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
}

.filter-btn:hover {
  background: var(--slate-100);
}

.filter-btn.active {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 1rem;
}

.lightbox-btn {
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.floating-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.floating-btn:hover {
  transform: scale(1.1) translateX(5px);
}

.floating-btn.whatsapp {
  background: linear-gradient(to bottom right, var(--green-400), var(--green-600));
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.floating-btn.phone {
  background: linear-gradient(to bottom right, #60a5fa, var(--blue-600));
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.floating-btn.map {
  background: linear-gradient(to bottom right, #fb923c, var(--orange-600));
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.floating-btn.contact {
  background: linear-gradient(to bottom right, var(--emerald-400), var(--teal-600));
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.contact-modal.active {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.contact-modal-content {
  position: relative;
  width: 100%;
  max-width: 26rem;
  max-height: 90vh;
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-modal-header {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  padding: 1.5rem;
  color: #fff;
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.contact-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  transition: all 0.3s;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-4px);
}

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  background: linear-gradient(to bottom, var(--slate-900), var(--slate-950));
  color: #fff;
}

.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: 100%;
  height: 4rem;
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--emerald-500);
  transform: translateY(-4px);
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-heading .accent {
  width: 2rem;
  height: 2px;
  background: var(--emerald-500);
}

.footer-link {
  color: var(--slate-400);
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-link:hover {
  color: var(--emerald-400);
}

.footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--emerald-500);
}

.footer-contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.footer-contact-group:hover .footer-contact-icon {
  background: var(--emerald-500);
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--slate-800);
}

/* ===== FORM INPUTS ===== */
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
  background: #fff;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input.h-12 {
  height: 3rem;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
  margin-bottom: 0.5rem;
}

.btn-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.3s;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: linear-gradient(to right, var(--emerald-600), #0f766e);
}

/* ===== BLOG CARD ===== */
.blog-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-100);
  transition: all 0.5s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.1);
}

.blog-card-image .hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.blog-card:hover .blog-card-image .hover-overlay {
  opacity: 1;
}

.date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
}

.blog-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
  color: var(--emerald-600);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--emerald-600);
  font-weight: 600;
}

.read-more svg {
  transition: transform 0.3s;
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #a7f3d0;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline-item.reverse {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
}

.timeline-content.right {
  text-align: right;
}

.timeline-card {
  display: inline-block;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-100);
}

.timeline-dot {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  flex-shrink: 0;
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  z-index: 10;
}

/* ===== ANIMATIONS ===== */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.slide-left {
  transform: translateX(-50px);
}

.animate-on-scroll.slide-right {
  transform: translateX(50px);
}

.animate-on-scroll.scale-in {
  transform: scale(0.8);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Stagger delays */
.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-600 {
  transition-delay: 0.6s;
}

.delay-700 {
  transition-delay: 0.7s;
}

.delay-800 {
  transition-delay: 0.8s;
}

.delay-1000 {
  transition-delay: 1s;
}

/* ===== ASPECT RATIO ===== */
.aspect-square {
  aspect-ratio: 1;
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}

/* ===== DISPLAY HELPERS ===== */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-flex {
  display: inline-flex;
}

.inline-block {
  display: inline-block;
}

.shrink-0 {
  flex-shrink: 0;
}

/* ===== PAGINATION ===== */
.pagination-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pagination-btn.page {
  background: #fff;
  border: 1px solid var(--slate-200);
  color: var(--slate-700);
}

.pagination-btn.page:hover {
  background: var(--slate-50);
}

.pagination-btn.page.active {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  transform: scale(1.1);
  border: none;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sm\:flex-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:p-12 {
    padding: 3rem;
  }

  .md\:col-span-2 {
    grid-column: span 2;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-desc {
    font-size: 1.25rem;
  }

  .stat-value {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:block {
    display: block;
  }

  .lg\:px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
  }

  .lg\:text-7xl {
    font-size: 4.5rem;
  }

  .desktop-nav {
    display: flex !important;
  }

  .desktop-cta {
    display: block !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }

  .top-bar-desktop {
    display: block !important;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 1023px) {
  .desktop-nav {
    display: none !important;
  }

  .desktop-cta {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  .top-bar-desktop {
    display: none !important;
  }

  .main-header {
    top: 0;
  }

  .timeline-line {
    display: none;
  }

  .timeline-dot {
    display: none;
  }

  .timeline-item,
  .timeline-item.reverse {
    flex-direction: column;
  }

  .timeline-content.right {
    text-align: left;
  }

  .timeline-spacer {
    display: none;
  }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .floating-buttons {
    left: 0.5rem;
  }

  .floating-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
  }
}

/* ===== WHATSAPP CTA ===== */
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(to right, var(--green-500), var(--green-600));
  border-radius: 1rem;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.whatsapp-cta:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.whatsapp-cta .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.whatsapp-cta:hover .icon-wrap {
  transform: scale(1.1);
}

/* ===== MAP ===== */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  height: 300px;
  border: 1px solid var(--slate-100);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== VIDEO GALLERY ===== */
.video-card {
  background: #fff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-100);
  transition: all 0.5s;
}

.video-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-card .video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-card .video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card .play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.video-card:hover .play-btn-overlay {
  opacity: 1;
}

/* ===== UYGULAMALAR GALLERY ===== */
.app-gallery-item {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.app-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.app-gallery-item:hover img {
  transform: scale(1.1);
}

.app-gallery-item .app-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.app-gallery-item:hover .app-overlay {
  opacity: 1;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  text-align: center;
  padding: 3rem 0;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 9999px;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== GALLERY CARD (used in gallery pages) ===== */
.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
  color: #fff;
  font-weight: 600;
}

.gallery-card:hover .gallery-title {
  transform: translateY(0);
}

/* ===== GALLERY FILTER BUTTONS ===== */
.gallery-filter {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s;
  background: #fff;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  cursor: pointer;
}

.gallery-filter:hover {
  background: var(--slate-100);
}

.gallery-filter.active {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ===== VIDEO TAB BUTTONS ===== */
.video-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 500;
  transition: all 0.3s;
  background: #fff;
  color: var(--slate-700);
  border: 1px solid var(--slate-200);
  cursor: pointer;
}

.video-tab:hover {
  background: var(--slate-100);
}

.video-tab.active {
  background: linear-gradient(to right, var(--emerald-500), var(--teal-600));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ===== CONTACT INFO CARD ===== */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--slate-100);
  transition: all 0.3s;
}

.contact-info-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #a7f3d0;
}

.contact-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--emerald-500), var(--teal-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.3s;
}

.contact-info-card:hover .contact-icon-box {
  transform: scale(1.1);
}

/* ===== CTA BUTTONS (white and ghost variants) ===== */
.cta-white-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #fff;
  color: var(--emerald-600);
  font-weight: 600;
  border-radius: 1rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-white-btn:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.cta-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-weight: 600;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.cta-ghost-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== RESPONSIVE GRID OVERRIDES ===== */
@media (max-width: 767px) {
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .page-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .page-hero h1 {
    font-size: 2rem !important;
  }

  /* ===== FLOATING BUTTONS: fixed bottom bar on mobile ===== */
  .floating-buttons {
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    bottom: 0 !important;
    transform: none !important;
    flex-direction: row !important;
    gap: 0 !important;
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
  }

  .floating-btn {
    width: 100% !important;
    height: 3.25rem !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
  }

  /* Add bottom padding so content isn't hidden behind the bar */
  body {
    padding-bottom: 3.25rem;
  }

  /* ===== HERO SECTION z-index fix for clickable buttons ===== */
  .hero-btn-primary,
  .hero-btn-primary+a,
  .hero-actions,
  .hero-actions a,
  .hero-actions button {
    position: relative;
    z-index: 5;
  }

  /* ===== TESTIMONIALS SECTION: stack vertically ===== */
  [style*="grid-template-columns:1fr 1fr"][style*="align-items:stretch"] {
    grid-template-columns: 1fr !important;
  }

  .testimonials-bg [style*="padding:6rem 4rem 6rem 6rem"] {
    padding: 3rem 1.5rem !important;
  }

  .testimonials-bg [style*="position:relative"] img[style*="position:absolute"] {
    position: relative !important;
    height: 250px;
    width: 100%;
  }

  /* ===== FOOTER: responsive grid ===== */
  .site-footer [style*="grid-template-columns:1.2fr 1fr 1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .footer-bottom .flex-wrap {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  /* ===== GENERAL OVERFLOW FIX ===== */
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100% !important;
    overflow-x: hidden;
  }

  img,
  iframe,
  video {
    max-width: 100%;
  }

  /* ===== CONTACT PAGE GRID ===== */
  #contact-form-page {
    padding: 1.5rem !important;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns:repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Footer 2-column on tablet */
  .site-footer [style*="grid-template-columns:1.2fr 1fr 1fr 1.2fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }

  /* Testimonials stack on tablet too */
  [style*="grid-template-columns:1fr 1fr"][style*="align-items:stretch"] {
    grid-template-columns: 1fr !important;
  }

  .testimonials-bg [style*="padding:6rem 4rem 6rem 6rem"] {
    padding: 4rem 3rem !important;
  }
}