/* ===================================================
   FERDA AYUS ALKAÇ GÜZELLİK — GLOBAL STYLES
   =================================================== */

/* ===========================
   DESIGN TOKENS
   =========================== */
:root {
  /* Colors */
  --color-primary: #4AAFCF;
  --color-primary-hover: #3A9BBD;
  --color-primary-active: #2B8BAD;
  --color-primary-subtle: rgba(74, 175, 207, 0.08);
  --color-primary-rgb: 74, 175, 207;
  --color-secondary: #2B8BAD;
  --color-accent: #B8953F;
  --color-accent-hover: #A6843A;
  --color-accent-subtle: rgba(184, 149, 63, 0.1);
  --color-bg: #FAFBFD;
  --color-surface: #FFFFFF;
  --color-surface-raised: #FFFFFF;
  --color-border: rgba(26, 35, 50, 0.08);
  --color-border-subtle: rgba(26, 35, 50, 0.04);
  --color-text: #1A2332;
  --color-text-muted: #6B7B8D;
  --color-text-disabled: #A0ADB8;
  --color-success: #2D9F6F;
  --color-warning: #D4A843;
  --color-error: #C44D56;
  --color-info: #4A8FCF;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.563rem;
  --text-2xl: 1.953rem;
  --text-3xl: 2.441rem;
  --text-4xl: 3.052rem;
  --text-5xl: 3.815rem;
  --text-6xl: 4.768rem;
  --leading-display: 1.1;
  --leading-heading: 1.25;
  --leading-body: 1.65;
  --tracking-tight: -0.03em;
  --tracking-snug: -0.015em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.15em;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.07), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 30px rgba(var(--color-primary-rgb), 0.15);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --duration-slower: 700ms;

  /* Z-Index */
  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-toast: 500;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: white;
  z-index: var(--z-toast);
  transition: top var(--duration-fast);
  font-family: var(--font-body);
}
.skip-link:focus { top: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

@media (min-width: 1280px) {
  .container { padding-inline: var(--space-12); }
}

section {
  padding-block: var(--space-20);
}

@media (min-width: 768px) {
  section { padding-block: var(--space-24); }
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--leading-display);
  letter-spacing: var(--tracking-tight);
  font-weight: 400;
}

h1 {
  font-size: var(--text-4xl);
  font-weight: 300;
}

h2 {
  font-size: var(--text-3xl);
  font-weight: 400;
}

h3 {
  font-size: var(--text-2xl);
  font-weight: 500;
}

h4 {
  font-size: var(--text-xl);
  font-weight: 500;
}

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

@media (min-width: 1024px) {
  h1 { font-size: var(--text-6xl); }
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.section-title {
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.section-desc {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-label {
  justify-content: center;
}
.text-center .section-label::before {
  display: none;
}
.text-center .section-desc {
  margin-inline: auto;
}

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

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.25);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 24px rgba(var(--color-primary-rgb), 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn-accent {
  background: var(--color-accent);
  color: white;
  box-shadow: 0 4px 16px rgba(184, 149, 63, 0.25);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 6px 24px rgba(184, 149, 63, 0.35);
}

.btn-white {
  background: white;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-base);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  padding: var(--space-5) 0;
  transition: background var(--duration-slow) var(--ease-out-expo),
              padding var(--duration-slow) var(--ease-out-expo),
              box-shadow var(--duration-slow) var(--ease-out-expo);
}

.navbar.scrolled {
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--space-3) 0;
  box-shadow: 0 1px 0 var(--color-border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 54px;
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.nav-logo:hover {
  transform: scale(1.03);
}

.navbar.scrolled .nav-logo {
  height: 44px;
}

.nav-links {
  display: none;
  gap: var(--space-8);
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-out-expo);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active::after {
  background: var(--color-accent);
}

/* Mobile Menu Button */
.nav-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
  z-index: calc(var(--z-overlay) + 1);
}

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

.nav-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--duration-normal) var(--ease-out-expo);
  transform-origin: center;
}

.nav-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(250, 251, 253, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-text);
  transition: color var(--duration-fast);
  letter-spacing: var(--tracking-tight);
}

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

/* ===========================
   PAGE HEADER (inner pages)
   =========================== */
.page-header {
  padding-top: calc(var(--space-32) + var(--space-10));
  padding-bottom: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 40%, rgba(var(--color-primary-rgb), 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 60%, rgba(184, 149, 63, 0.03) 0%, transparent 60%);
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.page-header .container {
  position: relative;
  z-index: var(--z-raised);
}

.page-header h1 {
  margin-bottom: var(--space-4);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-out-expo) 0.2s forwards;
}

.page-header .section-desc {
  margin-inline: auto;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out-expo) 0.4s forwards;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  opacity: 0;
  animation: fade-up 0.8s var(--ease-out-expo) 0.1s forwards;
}

.breadcrumb a {
  color: var(--color-primary);
  transition: color var(--duration-fast);
}

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

.breadcrumb .separator {
  color: var(--color-text-disabled);
  font-size: var(--text-xs);
}

/* ===========================
   HERO (home page)
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--space-20);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 30%, rgba(var(--color-primary-rgb), 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(184, 149, 63, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 90%, rgba(var(--color-primary-rgb), 0.04) 0%, transparent 50%);
  z-index: var(--z-base);
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: var(--z-base);
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: rgba(var(--color-primary-rgb), 0.12);
  top: -100px;
  right: -100px;
  animation: float-slow 12s ease-in-out infinite;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: rgba(184, 149, 63, 0.08);
  bottom: -50px;
  left: -80px;
  animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: var(--z-raised);
}

.hero-logo {
  width: 360px;
  height: auto;
  margin: 0 auto var(--space-8);
  opacity: 0;
  transform: scale(0.8);
  animation: hero-logo-in 1.2s var(--ease-out-expo) 0.3s forwards;
}

@keyframes hero-logo-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero h1 {
  color: var(--color-text);
  margin-bottom: var(--space-3);
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 1s var(--ease-out-expo) 0.6s forwards;
}

.hero h1 .text-light {
  font-weight: 300;
  color: var(--color-text-muted);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-6) auto;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-divider .line {
  width: 48px;
  height: 1px;
  background: var(--color-accent);
}

.hero-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-cta {
  margin-top: var(--space-12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 1.1s forwards;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-10);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  opacity: 0;
  animation: fade-up 1s var(--ease-out-expo) 1.5s forwards;
}

.scroll-indicator span {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-disabled);
  font-weight: 400;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===========================
   FEATURES STRIP
   =========================== */
.features-strip {
  background: var(--color-text);
  padding-block: var(--space-10);
  overflow: hidden;
}

.features-strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-10);
}

@media (min-width: 768px) {
  .features-strip-inner {
    gap: var(--space-16);
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.6);
}

.feature-item i {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.feature-item span {
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* ===========================
   SECTION DIVIDER
   =========================== */
.section-line {
  position: relative;
}

.section-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* ===========================
   SERVICE CARDS
   =========================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

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

.service-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--color-primary-rgb), 0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out-expo);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  transition: background var(--duration-normal) var(--ease-out-expo),
              color var(--duration-normal) var(--ease-out-expo);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: white;
}

.service-icon i {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
  color: var(--color-text);
  letter-spacing: var(--tracking-snug);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  padding-left: var(--space-4);
  position: relative;
  line-height: 1.6;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.4;
}

/* ── Services category heading ── */
.services-category {
  margin-bottom: var(--space-10);
}

.services-category:last-child {
  margin-bottom: 0;
}

.services-category-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.services-category-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.services-category-icon i {
  width: 20px;
  height: 20px;
}

.services-category-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: var(--tracking-snug);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

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

.about-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg,
    rgba(var(--color-primary-rgb), 0.06) 0%,
    rgba(184, 149, 63, 0.04) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.about-frame::before {
  content: '';
  position: absolute;
  inset: var(--space-4);
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
  border-radius: var(--radius-lg);
}

.about-frame-logo {
  width: 60%;
  opacity: 0.15;
}

.about-frame-text {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  text-align: center;
}

.about-frame-text span {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  font-weight: 300;
  font-size: var(--text-lg);
  line-height: 1.8;
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

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

.stat {
  text-align: center;
  padding: var(--space-4);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* ===========================
   INSTAGRAM CTA
   =========================== */
.instagram-section {
  position: relative;
  overflow: hidden;
}

.instagram-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-raised);
}

.instagram-icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.instagram-icon-wrapper:hover {
  transform: scale(1.08) rotate(-3deg);
}

.instagram-icon-wrapper i {
  width: 32px;
  height: 32px;
}

.instagram-handle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  letter-spacing: var(--tracking-wide);
}

.ig-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}

.ig-shape-1 {
  width: 300px;
  height: 300px;
  background: #833AB4;
  top: -100px;
  right: -100px;
}

.ig-shape-2 {
  width: 250px;
  height: 250px;
  background: #F77737;
  bottom: -80px;
  left: -80px;
}

/* ===========================
   VALUE CARDS
   =========================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo);
}

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

.value-card .value-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--color-primary);
}

.value-card .value-icon i {
  width: 24px;
  height: 24px;
}

.value-card h4 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ===========================
   CONTACT FORM
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-2);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  font-size: var(--text-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-disabled);
}

/* Contact Info Cards */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info-icon i {
  width: 20px;
  height: 20px;
}

.contact-info-text h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-1);
  color: var(--color-text);
}

.contact-info-text p,
.contact-info-text a {
  font-size: var(--text-base);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--color-primary);
}

/* Working Hours */
.working-hours {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--color-primary-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(var(--color-primary-rgb), 0.1);
}

.working-hours h4 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.working-hours i {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  font-weight: 300;
  color: var(--color-text-muted);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--color-border-subtle);
}

.hours-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list li .day {
  font-weight: 400;
  color: var(--color-text);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%);
  padding-block: var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}

.cta-banner .container {
  position: relative;
  z-index: var(--z-raised);
}

.cta-banner h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 500px;
  margin-inline: auto;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding-block: var(--space-16);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-16);
  }
}

.footer-brand .footer-logo {
  height: 48px;
  margin-bottom: var(--space-5);
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-weight: 300;
  font-size: var(--text-sm);
  line-height: 1.8;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  color: white;
  margin-bottom: var(--space-5);
  letter-spacing: var(--tracking-snug);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a,
.footer-links li {
  font-size: var(--text-sm);
  font-weight: 300;
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer-links a:hover {
  color: white;
}

.footer-links i {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

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

.footer-bottom p {
  font-size: var(--text-xs);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: var(--space-3);
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.footer-socials a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(var(--color-primary-rgb), 0.2);
}

.footer-socials i {
  width: 18px;
  height: 18px;
}

/* ===========================
   SERVICE CARD IMAGE
   =========================== */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

/* ===========================
   ABOUT IMAGE
   =========================== */
.about-image {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: 0 auto;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-xl) + 8px);
  background: linear-gradient(135deg,
    rgba(var(--color-primary-rgb), 0.15),
    rgba(184, 149, 63, 0.1));
  z-index: -1;
}

/* ===========================
   HERO WITH BACKGROUND IMAGE
   =========================== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 251, 253, 0.85) 0%,
    rgba(250, 251, 253, 0.92) 40%,
    rgba(250, 251, 253, 0.97) 70%,
    var(--color-bg) 100%
  );
}

/* ===========================
   PAGE HEADER WITH IMAGE
   =========================== */
.page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

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

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 251, 253, 0.78) 0%,
    rgba(250, 251, 253, 0.85) 40%,
    rgba(250, 251, 253, 0.93) 70%,
    var(--color-bg) 100%
  );
}

/* ===========================
   GALLERY STRIP
   =========================== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

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

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              filter var(--duration-normal) var(--ease-out-expo);
}

.gallery-strip img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* ===========================
   SERVICE DETAIL PAGE
   =========================== */
.service-detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 768px) {
  .service-detail-hero {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

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

.service-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

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

.service-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: transform var(--duration-normal) var(--ease-out-expo),
              box-shadow var(--duration-normal) var(--ease-out-expo),
              border-color var(--duration-normal) var(--ease-out-expo);
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--color-primary-rgb), 0.15);
}

.service-item h4 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.service-item h4 .item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.service-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Map Embed */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===========================
   WHATSAPP FLOAT
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: var(--space-8);
  right: var(--space-6);
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-sticky);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--duration-normal) var(--ease-out-expo);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5);
  animation: pop-in 0.5s var(--ease-spring) 2s forwards;
}

@keyframes pop-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float i {
  width: 28px;
  height: 28px;
}
