/* Base */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #144160;
  --accent-gold: #c89c29;
  --accent-gold-light: #e0b548;
  --accent-gold-dark: #a8821f;
  --text-soft: #4b5563;
  --text-white: #ffffff;
  --border-subtle: rgba(20, 65, 96, 0.1);
  --radius-soft: 999px;
  --radius-card: 18px;
  --shadow-soft: 0 18px 45px rgba(20, 65, 96, 0.25);
  --glossy-gradient: linear-gradient(135deg, rgba(200, 156, 41, 0.15) 0%, rgba(200, 156, 41, 0.05) 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111827;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(200, 156, 41, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(20, 65, 96, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

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

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

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}

.about-header .section-title {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--accent-gold) 50%, var(--bg-secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 5s ease infinite;
  position: relative;
}

.about-header .section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(200, 156, 41, 0.6);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-subtitle {
  margin: 0;
  max-width: 580px;
  color: rgba(15, 23, 42, 0.7);
  font-size: 0.98rem;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding-block: 18px;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
}

.site-header.scrolled {
  background: linear-gradient(to bottom, rgba(20, 65, 96, 0.98), rgba(20, 65, 96, 0.95));
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(20, 65, 96, 0.3), 0 0 0 1px rgba(200, 156, 41, 0.1);
  border-bottom: 1px solid rgba(200, 156, 41, 0.2);
  padding-block: 12px;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 55px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 8px rgba(200, 156, 41, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.site-header.scrolled .brand-logo {
  filter: drop-shadow(0 2px 8px rgba(200, 156, 41, 0.3));
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(200, 156, 41, 0.5));
}

.site-header.scrolled .brand:hover .brand-logo {
  filter: drop-shadow(0 4px 12px rgba(200, 156, 41, 0.5));
}

.brand-mark {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: text-shadow 0.3s ease;
}

.site-header.scrolled .brand-name {
  text-shadow: none;
}

.brand-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(200, 156, 41, 0.95);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: text-shadow 0.3s ease;
}

.site-header.scrolled .brand-tagline {
  text-shadow: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled .main-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
}

.main-nav a:hover {
  color: var(--accent-gold);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  transition: width 0.3s ease;
  box-shadow: 0 0 8px rgba(200, 156, 41, 0.5);
}

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

.nav-cta-mobile {
  display: none;
}

.header-cta {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(200, 156, 41, 0.3);
  background: rgba(20, 65, 96, 0.8);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  backdrop-filter: blur(10px);
}

.nav-toggle span {
  width: 18px;
  height: 1.5px;
  background: var(--accent-gold);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* Header responsive */
@media (max-width: 960px) {
  .brand-text {
    gap: 0;
  }

  .brand-name {
    font-size: 0.9rem;
    letter-spacing: 0.09em;
  }

  .brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .header-inner {
    gap: 16px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1.5rem;
    left: 1.5rem;
    margin-top: 10px;
    background: rgba(15, 35, 55, 0.97);
    border-radius: 18px;
    border: 1px solid rgba(200, 156, 41, 0.35);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.65);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow: hidden;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 18px 16px;
    gap: 14px;
  }

  .nav-cta-mobile {
    display: block;
    width: 100%;
    margin-top: 6px;
  }

  .nav-cta-mobile .btn {
    width: 100%;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-shadow: none;
  }

  .main-nav a::after {
    bottom: -4px;
  }

  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(200, 156, 41, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(200, 156, 41, 0.1) 0%, transparent 50%);
  z-index: 4;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  animation: subtleZoom 8s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20, 66, 96, 0.764) 0%, rgba(20, 66, 96, 0.742) 30%, rgba(20, 66, 96, 0.512) 60%, rgba(20, 65, 96, 0.2) 100%);
  z-index: 2;
}

.hero-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, rgba(200, 156, 41, 0.4), transparent),
    radial-gradient(2px 2px at 60% 70%, rgba(200, 156, 41, 0.3), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(200, 156, 41, 0.5), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(200, 156, 41, 0.35), transparent),
    radial-gradient(2px 2px at 40% 80%, rgba(200, 156, 41, 0.4), transparent);
  background-size: 200% 200%;
  background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%;
  animation: particleFloat 20s ease-in-out infinite;
  opacity: 0.7;
}

@keyframes particleFloat {
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 50%, 0% 100%, 100% 100%; }
  50% { background-position: 100% 100%, 0% 100%, 50% 0%, 100% 0%, 0% 0%; }
}

.hero-decorations {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 211, 105, 0.2);
  animation: float 15s ease-in-out infinite;
}

.decoration-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(255, 211, 105, 0.1), transparent 70%);
}

.decoration-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 8%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(255, 211, 105, 0.08), transparent 70%);
}

.decoration-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 15%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(255, 211, 105, 0.12), transparent 70%);
}

.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 105, 0.3), transparent);
  animation: lineMove 12s ease-in-out infinite;
}

.decoration-line-1 {
  width: 2px;
  height: 400px;
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.decoration-line-2 {
  width: 400px;
  height: 2px;
  bottom: 25%;
  left: 10%;
  animation-delay: 4s;
  background: linear-gradient(0deg, transparent, rgba(255, 211, 105, 0.25), transparent);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes lineMove {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(-20px); }
}

.hero-content {
  padding-top: 96px;
  padding-bottom: 120px;
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-text-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  z-index: 1;
}

@keyframes linePulse {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scaleY(1); }
  50% { opacity: 1; transform: translateY(-50%) scaleY(1.2); }
}

.hero .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0 auto 32px;
  color: var(--accent-gold);
  font-weight: 600;
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid rgba(200, 156, 41, 0.5);
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
              0 0 20px rgba(200, 156, 41, 0.3);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .eyebrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.hero .eyebrow:hover::before {
  left: 100%;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 auto 32px;
  line-height: 1.15;
  font-weight: 700;
  text-shadow: 
    0 4px 40px rgba(0, 0, 0, 0.8),
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(200, 156, 41, 0.5),
    0 0 100px rgba(200, 156, 41, 0.3);
  text-align: center;
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(200, 156, 41, 0.6);
  animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
  0%, 100% { 
    width: 100px;
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(200, 156, 41, 0.6);
  }
  50% { 
    width: 150px;
    opacity: 1;
    box-shadow: 0 0 30px rgba(200, 156, 41, 0.9);
  }
}

.hero-title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpFade 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title-line:nth-child(1) {
  animation-delay: 0.3s;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-gold) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(200, 156, 41, 0.4));
}

.hero-title-line:nth-child(2) {
  animation-delay: 0.5s;
  color: #ffffff;
  display: block;
  text-shadow: 0 2px 15px rgba(200, 156, 41, 0.3);
}

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

.hero-subtitle {
  margin: 0 auto 48px;
  max-width: 600px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.98);
  line-height: 1.8;
  font-weight: 300;
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
  text-shadow: 
    0 3px 15px rgba(0, 0, 0, 0.7),
    0 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  justify-content: center;
  align-items: center;
}

.hero-actions .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-actions .btn span {
  position: relative;
  z-index: 1;
}

.hero-actions .btn svg {
  margin-left: 8px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.hero-actions .btn:hover svg {
  transform: translateX(4px);
}

.hero-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.hero-actions .btn:hover::before {
  opacity: 1;
}

.hero-actions .btn-gold {
  box-shadow: 0 12px 35px rgba(255, 211, 105, 0.35);
}

.hero-actions .btn-gold:hover {
  box-shadow: 0 18px 50px rgba(255, 211, 105, 0.5);
  transform: translateY(-3px);
}

.hero-actions .btn-outline {
  backdrop-filter: blur(15px);
  border: 2px solid rgba(200, 156, 41, 0.5);
  background: linear-gradient(135deg, rgba(200, 156, 41, 0.1), rgba(200, 156, 41, 0.05));
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(20, 65, 96, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-actions .btn-outline:hover {
  background: linear-gradient(135deg, rgba(200, 156, 41, 0.2), rgba(200, 156, 41, 0.1));
  border-color: var(--accent-gold);
  box-shadow: 0 12px 35px rgba(200, 156, 41, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #ffffff;
}

/* Animation classes */
.animate-fade-up {
  animation: fadeUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slide-up {
  animation: slideUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.8rem;
  border-radius: var(--radius-soft);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold-dark) 100%);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(200, 156, 41, 0.4), 
              0 0 0 1px rgba(200, 156, 41, 0.2) inset,
              0 2px 10px rgba(200, 156, 41, 0.3) inset,
              0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(200, 156, 41, 0.5),
              0 0 0 1px rgba(200, 156, 41, 0.3) inset,
              0 2px 15px rgba(200, 156, 41, 0.4) inset;
}

.btn-outline {
  border-color: rgba(246, 246, 246, 0.5);
  color: var(--text-soft);
  background: rgba(10, 10, 25, 0.3);
}

.btn-outline:hover {
  background: rgba(246, 246, 246, 0.08);
}

.btn-full {
  width: 100%;
}

/* Stats */
.stats {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.3;
}

.stats::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 156, 41, 0.08), transparent 70%);
  border-radius: 50%;
  animation: floatBg 20s ease-in-out infinite;
}

@keyframes floatBg {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-secondary);
  margin: 0 0 16px;
  font-weight: 700;
}

.stats-subtitle {
  font-size: 1.05rem;
  color: rgba(75, 85, 99, 0.8);
  margin: 0;
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  position: relative;
  width: 100%;
}

.stat-item {
  position: relative;
  padding: 40px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(200, 156, 41, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.stat-item-1 .stat-bg-pattern {
  background: 
    radial-gradient(circle at 20% 30%, rgba(200, 156, 41, 0.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(20, 65, 96, 0.08), transparent 50%);
}

.stat-item-2 .stat-bg-pattern {
  background: 
    radial-gradient(circle at 30% 20%, rgba(200, 156, 41, 0.1), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(20, 65, 96, 0.1), transparent 50%);
}

.stat-item-3 .stat-bg-pattern {
  background: 
    radial-gradient(circle at 50% 50%, rgba(200, 156, 41, 0.15), transparent 60%),
    linear-gradient(135deg, rgba(20, 65, 96, 0.05), transparent);
}

.stat-item-4 .stat-bg-pattern {
  background: 
    radial-gradient(circle at 80% 30%, rgba(200, 156, 41, 0.12), transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(20, 65, 96, 0.08), transparent 50%);
}

.stat-item-5 .stat-bg-pattern {
  background: 
    radial-gradient(circle at 50% 30%, rgba(200, 156, 41, 0.1), transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(20, 65, 96, 0.1), transparent 50%);
}

.stat-item:hover .stat-bg-pattern {
  opacity: 1;
}

.stat-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 156, 41, 0.08), rgba(20, 65, 96, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 24px;
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 156, 41, 0.4);
  box-shadow: 
    0 20px 50px rgba(20, 65, 96, 0.15),
    0 0 0 1px rgba(200, 156, 41, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(200, 156, 41, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 50%;
}

.stat-item:hover .stat-glow {
  opacity: 1;
}

.stat-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.stat-icon-wrapper::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(200, 156, 41, 0.2), rgba(20, 65, 96, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

.stat-item:hover .stat-icon-wrapper::before {
  opacity: 1;
  transform: scale(1.2);
}

.stat-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(200, 156, 41, 0.35),
    0 0 0 4px rgba(255, 255, 255, 0.8),
    inset 0 2px 15px rgba(255, 255, 255, 0.4),
    inset 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
  padding: 20px;
}

.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 
    0 15px 40px rgba(200, 156, 41, 0.5),
    0 0 0 4px rgba(255, 255, 255, 0.9),
    inset 0 2px 20px rgba(255, 255, 255, 0.5),
    inset 0 -2px 15px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(200, 156, 41, 0.4);
}

.stat-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.stat-item:hover .stat-icon svg {
  transform: scale(1.1);
}

.stat-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--accent-gold);
  position: relative;
  visibility: visible;
  opacity: 1;
  min-height: 1.2em;
  text-align: center;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(20, 65, 96, 0.8);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
}

/* Stats responsive */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    grid-column: span 1;
  }

  .stat-item:nth-child(4) {
    grid-column: 1 / 2;
  }

  .stat-item:nth-child(5) {
    grid-column: 3 / 4;
  }

  .stat-item {
    min-height: 180px;
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .stats {
    padding: 60px 0;
  }

  .stats-header {
    margin-bottom: 40px;
  }

  .stats-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
  }

  .stats-subtitle {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .stat-item {
    padding: 28px 16px;
    min-height: 160px;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    grid-column: span 1;
  }

  .stat-item:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 280px;
    margin: 0 auto;
  }

  .stat-number {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 480px) {
  .stats {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
  }

  .stat-item {
    padding: 24px 16px;
    min-height: 140px;
    width: 100%;
  }

  .stat-item:nth-child(5) {
    grid-column: 1;
    max-width: none;
  }

  .stat-number {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* About */
.about {
  background: 
    linear-gradient(135deg, rgba(200, 156, 41, 0.05) 0%, transparent 30%),
    linear-gradient(225deg, rgba(20, 65, 96, 0.05) 0%, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 30%, #ffffff 60%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200, 156, 41, 0.15), rgba(200, 156, 41, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 30s ease-in-out infinite;
  z-index: 0;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20, 65, 96, 0.12), rgba(20, 65, 96, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  animation: floatBg 25s ease-in-out infinite reverse;
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

/* Decorative geometric shapes */
.about .container::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(200, 156, 41, 0.08), transparent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphShape 20s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.about .container::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(225deg, rgba(20, 65, 96, 0.08), transparent);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: morphShape 15s ease-in-out infinite reverse;
  z-index: 0;
  pointer-events: none;
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    transform: rotate(180deg) scale(0.9);
  }
  75% {
    border-radius: 70% 30% 40% 60% / 30% 60% 70% 40%;
    transform: rotate(270deg) scale(1.05);
  }
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(200, 156, 41, 0.2);
  box-shadow: 
    0 20px 60px rgba(20, 65, 96, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 80px rgba(200, 156, 41, 0.05);
  position: relative;
  overflow: hidden;
}

.about-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(200, 156, 41, 0.1), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(20, 65, 96, 0.08), transparent 50%);
  animation: rotateBg 30s linear infinite;
  z-index: 0;
}

.about-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(200, 156, 41, 0.03), transparent);
  z-index: 0;
  pointer-events: none;
}

@keyframes rotateBg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-header > * {
  position: relative;
  z-index: 1;
}

.about-content {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.about-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--bg-secondary);
  margin: 0 0 24px;
  font-weight: 500;
}

.about-intro strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.about-text {
  margin: 0 0 20px;
  max-width: 100%;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(55, 65, 81, 0.9);
}

.about-text:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--bg-secondary);
  font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.why-choose-icon {
  font-size: 3rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(200, 156, 41, 0.3));
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.why-choose-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-secondary);
  margin: 0;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.why-choose-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  border-radius: 2px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.why-choose-item {
  position: relative;
  padding: 40px 32px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border: 2px solid rgba(200, 156, 41, 0.15);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.why-choose-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 156, 41, 0.08), rgba(20, 65, 96, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.why-choose-item:hover::before {
  opacity: 1;
}

.why-choose-item:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 156, 41, 0.4);
  box-shadow: 
    0 20px 50px rgba(20, 65, 96, 0.12),
    0 0 0 1px rgba(200, 156, 41, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.why-choose-item-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 50%, var(--accent-gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 10px 30px rgba(200, 156, 41, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.8),
    inset 0 2px 15px rgba(255, 255, 255, 0.4),
    inset 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.why-choose-item:hover .why-choose-item-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 
    0 15px 40px rgba(200, 156, 41, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.9),
    inset 0 2px 20px rgba(255, 255, 255, 0.5),
    inset 0 -2px 15px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(200, 156, 41, 0.3);
}

.why-choose-item-icon svg {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.why-choose-item:hover .why-choose-item-icon svg {
  transform: scale(1.1);
}

.why-choose-item-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--bg-secondary);
  margin: 0 0 16px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.why-choose-item-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(55, 65, 81, 0.85);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Services */
.services {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 156, 41, 0.12), transparent 70%);
  border-radius: 50%;
  animation: floatBg 30s ease-in-out infinite;
  z-index: 0;
}

.services::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 65, 96, 0.1), transparent 70%);
  border-radius: 50%;
  animation: floatBg 25s ease-in-out infinite reverse;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  padding: 0;
  border-radius: var(--radius-card);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(20, 65, 96, 0.3) 50%, rgba(20, 65, 96, 0.85) 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.service-card:hover .service-image-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 65, 96, 0.2) 50%, rgba(20, 65, 96, 0.75) 100%);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(200, 156, 41, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

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

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(200, 156, 41, 0.5);
  box-shadow: 0 25px 70px rgba(20, 65, 96, 0.3), 0 0 40px rgba(200, 156, 41, 0.2);
}

.service-content {
  position: relative;
  z-index: 3;
  padding: 32px 24px 28px;
  width: 100%;
  color: #ffffff;
}

.service-icon-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  border-color: var(--accent-gold);
  box-shadow: 0 6px 20px rgba(200, 156, 41, 0.4);
}

.service-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), rgba(200, 156, 41, 0.3), transparent);
  box-shadow: 0 0 10px rgba(200, 156, 41, 0.5);
  transition: all 0.3s ease;
}

.service-card:hover .service-line {
  background: linear-gradient(90deg, var(--accent-gold), rgba(200, 156, 41, 0.6), transparent);
  box-shadow: 0 0 15px rgba(200, 156, 41, 0.7);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Services responsive */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-content {
    padding: 20px 16px 18px;
  }

  .service-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .service-icon {
    width: 30px;
    height: 30px;
  }

  .service-icon-wrap {
    margin-bottom: 14px;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .services {
    padding: 50px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .service-card {
    min-height: 300px;
    width: 100%;
    max-width: 100%;
  }

  .service-content {
    padding: 24px 20px 20px;
  }

  .service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .service-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .service-icon {
    width: 32px;
    height: 32px;
  }

  .service-icon-wrap {
    margin-bottom: 16px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .services {
    padding: 40px 0;
  }

  .services-grid {
    gap: 16px;
    padding: 0 15px;
  }

  .service-card {
    min-height: 280px;
  }

  .service-content {
    padding: 20px 16px 18px;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .service-icon {
    width: 28px;
    height: 28px;
  }
}

/* Gallery */
.gallery {
  background: 
    linear-gradient(135deg, rgba(200, 156, 41, 0.03) 0%, transparent 30%),
    linear-gradient(225deg, rgba(20, 65, 96, 0.03) 0%, transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 40%, #ffffff 80%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
  
}

.gallery::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 156, 41, 0.12), transparent 70%);
  border-radius: 50%;
  animation: floatBg 35s ease-in-out infinite;
  z-index: 0;
}

.gallery::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 65, 96, 0.1), transparent 70%);
  border-radius: 50%;
  animation: floatBg 30s ease-in-out infinite reverse;
  z-index: 0;
}

.gallery .container {
  position: relative;
  z-index: 1;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 300px;
  gap: 24px;
  margin: 50px 0;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 15px 40px rgba(20, 65, 96, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: #000;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.gallery-item:hover {
  box-shadow: 
    0 30px 70px rgba(20, 65, 96, 0.3),
    0 0 60px rgba(200, 156, 41, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  border-color: rgba(200, 156, 41, 0.5);
  z-index: 10;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-item:nth-child(9) { animation-delay: 0.9s; }
.gallery-item:nth-child(10) { animation-delay: 1s; }
.gallery-item:nth-child(11) { animation-delay: 1.1s; }
.gallery-item:nth-child(12) { animation-delay: 1.2s; }
.gallery-item:nth-child(13) { animation-delay: 1.3s; }
.gallery-item:nth-child(14) { animation-delay: 1.4s; }

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

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-medium {
  grid-row: span 1.5;
}

.gallery-item-small {
  grid-row: span 1;
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.gallery-item:hover img {
  transform: scale(1.15) rotate(2deg);
  filter: brightness(1.1) contrast(1.2);
}

.gallery-shine {
    position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: transform 0.8s ease;
    opacity: 0;
  z-index: 2;
    pointer-events: none;
  }

.gallery-item:hover .gallery-shine {
  transform: translate(50%, 50%) rotate(45deg);
    opacity: 1;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    transparent 0%, 
    rgba(20, 65, 96, 0.2) 40%,
    rgba(20, 65, 96, 0.7) 80%,
    rgba(20, 65, 96, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 20px;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
}

.gallery-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

.gallery-caption {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
  margin: 0;
}

.gallery-border-glow {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(15px);
  animation: borderPulse 3s ease-in-out infinite;
}

.gallery-item:hover .gallery-border-glow {
  opacity: 0.8;
  filter: blur(20px);
}

@keyframes borderPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Portfolio */
.portfolio {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 30%, #f8fafc 70%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(200, 156, 41, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(20, 65, 96, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, transparent 0%, rgba(200, 156, 41, 0.03) 50%, transparent 100%);
  z-index: 0;
  animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% { opacity: 0.8; transform: translate(0, 0); }
  50% { opacity: 1; transform: translate(20px, -20px); }
}

.portfolio .container {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.portfolio-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 211, 105, 0.32), transparent 60%);
  opacity: 0;
  mix-blend-mode: soft-light;
  transition: opacity 0.4s ease;
}

.portfolio-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  right: 18px;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-white);
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

.portfolio-item:hover img {
  transform: scale(1.06);
  opacity: 0.95;
}

.portfolio-item:hover::before {
  opacity: 1;
}

/* Portfolio responsive */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .portfolio {
    padding: 60px 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 10px;
  }

  .portfolio-item {
    border-radius: 16px;
    min-height: 220px;
    width: 100%;
  }

  .portfolio-item figcaption {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    left: 12px;
    bottom: 10px;
    right: 12px;
  }
}

@media (max-width: 600px) {
  .portfolio {
    padding: 50px 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    max-width: 100%;
  }

  .portfolio-item {
    min-height: 280px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .portfolio-item figcaption {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    left: 16px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .portfolio {
    padding: 40px 0;
  }

  .portfolio-grid {
    gap: 16px;
    padding: 0 15px;
  }

  .portfolio-item {
    min-height: 260px;
    border-radius: 14px;
  }

  .portfolio-item figcaption {
    font-size: 0.8rem;
    left: 14px;
    bottom: 14px;
    right: 14px;
  }
}

/* Clients */
.clients {
  background: linear-gradient(135deg, #e0e8f3 0%, #fbedc8 100%);
  position: relative;
  padding: 80px 0;
  min-height: 400px;
}

.clients-row-img {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
  align-items: center;
  justify-items: center;
  margin: 45px 0 0 0;
}

.client-card {
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 4px 24px rgba(20,65,96,0.05), 0 0 0 2px rgba(200,156,41,0.09);
  border: 2.5px solid #e9d493;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  min-height: 95px;
  min-width: 120px;
}

.client-card:hover {
  box-shadow: 0 10px 38px rgba(200,156,41,0.17), 0 0 0 3.5px var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-5px) scale(1.04);
}

.client-card img {
  max-width: 120px;
  max-height: 55px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

@media(max-width: 800px) {
  .clients-row-img {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
}
  .client-card {
    padding: 14px 10px;
    min-height: 65px;
  }
  .client-card img {
    max-width: 80px;
    max-height: 40px;
  }
}

.contact {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #ffffff 55%);
  padding: 90px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.08), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(148, 163, 184, 0.22), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.contact .section-title,
.contact .section-subtitle {
  color: #1f2933;
}

.contact .section-title {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  letter-spacing: 0.14em;
}

.contact .section-subtitle {
  margin-top: 8px;
  font-weight: 500;
}

.contact-flex {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.contact-details {
  color: #1f2933;
  max-width: 520px;
  text-align: center;
}

.contact-block {
  margin-top: 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.contact-item + .contact-item {
  margin-top: 18px;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.contact-link,
.contact-text {
  font-size: 0.98rem;
  color: #111827;
  font-weight: 600;
}

.contact-link {
  position: relative;
  text-decoration: none;
}

.contact-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  transition: width 0.18s ease;
}

.contact-link:hover::after {
  width: 100%;
}

.contact-social {
  margin-top: 26px;
  text-align: center;
}

.contact-social h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #4b5563;
  margin: 0 0 10px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b88618;
  background: #ffffff;
  border: 1px solid rgba(200, 156, 41, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(200, 156, 41, 0.35);
  background: var(--accent-gold);
  color: #ffffff;
}

.contact-form-card {
  position: relative;
  z-index: 1;
  background: #0f172a;
  border-radius: 20px;
  padding: 26px 24px 30px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 20px 55px rgba(15, 23, 42, 0.95);
}

.contact-form-card h3 {
  font-size: 1.2rem;
  margin: 0 0 18px;
  color: #e5e7eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.form-group input,
.form-group textarea {
  background: #020617;
  border-radius: 10px;
  border: 1px solid #1f2937;
  padding: 10px 12px;
  font-size: 0.95rem;
  color: #e5e7eb;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(200, 156, 41, 0.5);
  background: #020617;
}

.contact-btn {
  margin-top: 8px;
  width: 100%;
  border-radius: 999px;
  padding: 11px 18px;
  border: none;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  color: #0b1120;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(200, 156, 41, 0.55);
  filter: brightness(1.04);
}

@media (max-width: 900px) {
  .contact-flex {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .contact {
    padding: 70px 0 60px 0;
  }
  .contact-form-card {
    padding: 22px 18px 26px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #0e1c2f;
  color: #f3e7c8;
  padding: 38px 0 18px 0;
  border-top: 2px solid var(--accent-gold);
  font-size: 1rem;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo {
  width: 70px; height: 70px; border-radius: 12px; object-fit: contain;
}
.footer-text {
  font-weight: 700; letter-spacing: 0.04em; color: #fff; font-size: 1.15rem;
}
.footer-text span { color: #eed080; font-size: .85em;}
.footer-contact { flex: 2; text-align: center; }
.footer-right { text-align: right; min-width:120px;}
.footer-right a { color: #eed080; text-decoration: none; letter-spacing: 0.03em;}
.footer-right a:hover { color: #fff }

/* Footer responsive */
@media (max-width: 1024px) {
  .footer-grid {
    gap: 30px;
  }
  
  .footer-contact {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 0 20px 0;
  }
  
  .footer-grid {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-contact {
    flex: none;
  }
  
  .footer-right {
    text-align: center;
    min-width: auto;
  }
  
  .footer-text {
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 25px 0 15px 0;
  }
  
  .footer-grid {
    gap: 16px;
    padding: 0 10px;
  }
  
  .footer-brand {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-logo {
    width: 45px;
    height: 45px;
  }
  
  .footer-text {
    font-size: 0.95rem;
  }
  
  .footer-text span {
    font-size: 0.8em;
  }
  
  .footer-contact p {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer-right a {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 20px 0 12px 0;
  }
  
  .footer-grid {
    gap: 14px;
    padding: 0 15px;
  }
  
  .footer-brand {
    gap: 10px;
  }
  
  .footer-logo {
    width: 40px;
    height: 40px;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
  
  .footer-contact p {
    font-size: 0.85rem;
  }
  
  .footer-right a {
    font-size: 0.8rem;
  }
}

/* Clean gallery scroll styles: START */
.clean-gallery {
  background: none;
  padding-bottom: 60px;
}
.gallery-scroll-clean {
  display: flex;
  overflow-x: auto;
  gap: 28px;
  padding: 30px 0 15px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-gold) #f8fafc;
  scroll-snap-type: x mandatory;
}
.gallery-scroll-clean img {
  height: 320px;
  width: auto;
  min-width: 240px;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(20,65,96,0.06);
  object-fit: cover;
  scroll-snap-align: center;
  background: #f4f4f7;
  transition: box-shadow 0.26s, transform 0.31s cubic-bezier(.32,1.56,.6,1);
}
.gallery-scroll-clean img:hover {
  box-shadow: 0 15px 45px rgba(200,156,41,0.18),0 2px 10px rgba(20,65,96,0.10);
  transform: scale(1.04) translateY(-7px);
}
.gallery-scroll-clean::-webkit-scrollbar {
  height: 8px;
}
.gallery-scroll-clean::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
  border-radius: 8px;
}
@media (max-width: 700px) {
  .gallery-scroll-clean img {
    height: 170px;
    min-width: 120px;
    border-radius: 13px;
  }
  .section-title, .section-subtitle {text-align: center;}
}
/* Clean gallery scroll styles: END */

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.32);
  pointer-events: none;
  z-index: 1;
}
