/* ========================================
   MEHMET USTA SANATI - Çini Sanatı
   Modern, Animated, Elegant Design
======================================== */

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

:root {
  /* Iznik / Çini palette */
  --cobalt: #1a4480;
  --cobalt-deep: #0d2440;
  --cobalt-light: #2c5fa8;
  --turquoise: #20a4b5;
  --turquoise-light: #5cc7d6;
  --gold: #d4a017;
  --gold-light: #f0c14b;
  --iznik-red: #c84b3c;
  --cream: #faf3e0;
  --cream-dark: #ede4c5;
  --ivory: #fffdf7;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --gray-dark: #1f2937;

  /* Gradients */
  --grad-cobalt: linear-gradient(135deg, #1a4480 0%, #0d2440 100%);
  --grad-turquoise: linear-gradient(135deg, #20a4b5 0%, #1a4480 100%);
  --grad-gold: linear-gradient(135deg, #d4a017 0%, #f0c14b 100%);
  --grad-hero: linear-gradient(135deg, rgba(13,36,64,0.85) 0%, rgba(26,68,128,0.7) 50%, rgba(32,164,181,0.6) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13, 36, 64, 0.08);
  --shadow-md: 0 8px 24px rgba(13, 36, 64, 0.12);
  --shadow-lg: 0 16px 48px rgba(13, 36, 64, 0.18);
  --shadow-xl: 0 24px 64px rgba(13, 36, 64, 0.25);
  --shadow-gold: 0 8px 24px rgba(212, 160, 23, 0.35);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-dark);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease);
}

ul, ol {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cobalt-deep);
  letter-spacing: -0.02em;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 8rem 0; }

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-top: 1rem;
}

.title-ornament {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
}

.title-ornament::before,
.title-ornament::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.title-ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.title-ornament svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-gold);
  color: var(--cobalt-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-cobalt);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}

.btn-primary:hover {
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(13, 36, 64, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--cobalt-deep);
  border-color: var(--white);
  transform: translateY(-3px);
}

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

.btn-dark:hover {
  background: var(--grad-turquoise);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s var(--ease);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--cobalt-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar-info {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.topbar-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-info svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.topbar-social {
  display: flex;
  gap: 0.75rem;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.3s var(--ease);
}

.topbar-social a:hover {
  background: var(--gold);
  color: var(--cobalt-deep);
  transform: translateY(-2px);
}

.topbar-social svg {
  width: 14px;
  height: 14px;
}

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(13, 36, 64, 0.06);
  transition: all 0.3s var(--ease);
}

.header.scrolled {
  box-shadow: 0 4px 24px rgba(13, 36, 64, 0.12);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--cobalt-deep);
  transition: transform 0.3s var(--ease);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
  color: var(--cobalt-deep);
}

.logo-text > span {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  margin-top: 3px;
}

/* Footer: invert black logo to white on dark background */
.footer-brand .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-brand .logo-text strong {
  color: var(--white);
}

@media (max-width: 768px) {
  .logo-img { height: 42px; }
  .logo-text strong { font-size: 1rem; }
  .logo-text > span { font-size: 0.6rem; letter-spacing: 0.2em; }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu a {
  padding: 0.6rem 1.1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--gray-dark);
  border-radius: 6px;
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--cobalt);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--cobalt-deep);
}

.nav-phone-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2.5s infinite;
}

.nav-phone-icon svg {
  width: 18px;
  height: 18px;
  color: var(--cobalt-deep);
}

.nav-phone span:not(.nav-phone-icon) {
  display: block;
  font-size: 0.7rem;
  color: var(--gray);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-phone strong {
  font-size: 1rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--cobalt);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: calc(100vh - 130px);
  min-height: 600px;
  max-height: 820px;
  overflow: hidden;
  background: var(--cobalt-deep);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 1.2s var(--ease);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 8s linear;
}

.hero-slide.active .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4a017' fill-opacity='0.07'%3E%3Cpath d='M40 0 L50 30 L80 40 L50 50 L40 80 L30 50 L0 40 L30 30 Z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 2;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 700px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 1.2rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: var(--gold-light);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero-slide.active .hero-eyebrow {
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-title {
  animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 500;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  max-width: 580px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-desc {
  animation: fadeUp 1s 0.7s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-slide.active .hero-actions {
  animation: fadeUp 1s 0.9s var(--ease-out) forwards;
}

/* Hero controls */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 4;
  display: flex;
  gap: 0.75rem;
}

.hero-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.hero-arrow:hover {
  background: var(--gold);
  color: var(--cobalt-deep);
  border-color: var(--gold);
  transform: scale(1.05);
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  z-index: 4;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.6); }
  50% { box-shadow: 0 0 0 12px rgba(212, 160, 23, 0); }
}

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

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

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* AOS-style scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal-zoom.in-view {
  opacity: 1;
  transform: scale(1);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }
[data-delay="600"] { transition-delay: 0.6s; }

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  position: relative;
  background: var(--ivory);
  overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cg fill='none' stroke='%231a4480' stroke-width='1' stroke-opacity='0.08'%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Ccircle cx='100' cy='100' r='40'/%3E%3Cpath d='M100 20 L120 100 L100 180 L80 100 Z'/%3E%3Cpath d='M20 100 L100 120 L180 100 L100 80 Z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  border: 2px solid var(--gold);
  border-radius: 16px;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}

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

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--grad-gold);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cobalt-deep);
  text-align: center;
  box-shadow: var(--shadow-xl);
  z-index: 2;
  font-family: var(--font-heading);
  animation: float 4s ease-in-out infinite;
}

.about-badge strong {
  font-size: 2.5rem;
  line-height: 1;
}

.about-badge span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  max-width: 100px;
  line-height: 1.3;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content h2 em {
  font-style: italic;
  color: var(--turquoise);
  font-family: var(--font-display);
}

.about-content > p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.about-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(32, 164, 181, 0.1);
  color: var(--turquoise);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}

.about-feature:hover .about-feature-icon {
  background: var(--turquoise);
  color: var(--white);
  transform: rotate(-8deg);
}

.about-feature-icon svg {
  width: 22px;
  height: 22px;
}

.about-feature h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--cobalt-deep);
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.about-signature-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cobalt);
  font-weight: 600;
}

.about-signature-title {
  font-size: 0.85rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ===== SERVICES ===== */
.services {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(32, 164, 181, 0.06), transparent 70%);
  border-radius: 50%;
  transition: all 0.5s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(212, 160, 23, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  position: relative;
  transition: all 0.5s var(--ease-out);
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}

.service-card:hover .service-icon {
  background: var(--grad-gold);
  transform: rotate(-10deg);
}

.service-card:hover .service-icon::before {
  opacity: 1;
  animation: spin 8s linear infinite;
}

.service-icon svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  transition: color 0.5s var(--ease);
}

.service-card:hover .service-icon svg {
  color: var(--cobalt-deep);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
  position: relative;
}

.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  position: relative;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cobalt);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.service-link:hover {
  color: var(--gold);
}

.service-link:hover svg {
  transform: translateX(4px);
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  transition: color 0.5s var(--ease);
}

.service-card:hover .service-number {
  color: rgba(212, 160, 23, 0.2);
}

/* ===== FEATURED PROJECTS ===== */
.projects {
  background: var(--white);
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 720px;
}

.project-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.project-card:nth-child(1) {
  grid-row: span 2;
}

.project-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out);
}

.project-card:hover .project-bg {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 36, 64, 0.95) 100%);
  z-index: 1;
}

.project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  color: var(--white);
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-out);
}

.project-card:hover .project-content {
  transform: translateY(0);
}

.project-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: rgba(212, 160, 23, 0.9);
  color: var(--cobalt-deep);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.project-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.project-card:nth-child(1) .project-content h3 {
  font-size: 2rem;
}

.project-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.project-content p svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.project-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 2;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s var(--ease-out);
}

.project-card:hover .project-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--gold);
  color: var(--cobalt-deep);
  border-color: var(--gold);
}

.project-arrow svg {
  width: 20px;
  height: 20px;
}

/* ===== PHOTO SLIDER (Small) ===== */
.photo-slider-section {
  background: linear-gradient(135deg, var(--cobalt-deep) 0%, var(--cobalt) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.photo-slider-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23d4a017' fill-opacity='0.04'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.photo-slider-section .container {
  position: relative;
  z-index: 1;
}

.photo-slider-section .section-title,
.photo-slider-section .section-header p {
  color: var(--white);
}

.photo-slider {
  position: relative;
  margin-top: 2rem;
}

.photo-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}

.photo-track::-webkit-scrollbar {
  display: none;
}

.photo-card {
  flex: 0 0 320px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.photo-card:hover {
  transform: translateY(-8px);
}

.photo-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease-out);
}

.photo-card:hover .photo-card-bg {
  transform: scale(1.1);
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 36, 64, 0.92) 100%);
}

.photo-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: var(--white);
}

.photo-card-info h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.photo-card-info p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.photo-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.photo-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.photo-arrow:hover {
  background: var(--gold);
  color: var(--cobalt-deep);
  border-color: var(--gold);
  transform: scale(1.1);
}

.photo-arrow svg {
  width: 20px;
  height: 20px;
}

/* ===== STATS COUNTER ===== */
.stats {
  background: var(--ivory);
  position: relative;
  padding: 4rem 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  position: relative;
  padding: 1rem;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: var(--cream-dark);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.5s var(--ease);
}

.stat:hover .stat-icon {
  transform: scale(1.1) rotate(-8deg);
}

.stat-icon svg {
  width: 26px;
  height: 26px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--grad-cobalt);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--cobalt-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(32, 164, 181, 0.25), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.2), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}

.cta h2 em {
  font-style: italic;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  background: #08182d;
  color: rgba(255, 255, 255, 0.75);
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cobalt) 0%, var(--turquoise) 33%, var(--gold) 66%, var(--iznik-red) 100%);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='%23d4a017' fill-opacity='0.03'%3E%3Cpath d='M30 0 L36 24 L60 30 L36 36 L30 60 L24 36 L0 30 L24 24 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}

.footer-brand .logo-text strong,
.footer-brand .logo {
  color: var(--white);
}

.footer-brand .logo-mark {
  background: var(--grad-gold);
}

.footer-brand .logo-mark svg {
  color: var(--cobalt-deep);
}

.footer-brand p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s var(--ease);
}

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

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.85rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 0.25rem;
}

.footer-links a:hover::before {
  width: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-newsletter p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  padding: 0.3rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  background: var(--grad-gold);
  color: var(--cobalt-deep);
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.newsletter-form button:hover {
  transform: translateX(2px);
  box-shadow: var(--shadow-gold);
}

.newsletter-form button svg {
  width: 14px;
  height: 14px;
}

.footer-bottom {
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ===== PAGE BANNER (inner pages) ===== */
.banner {
  background: var(--cobalt-deep);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,36,64,0.92), rgba(13,36,64,0.85));
}

.banner-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='%23d4a017' fill-opacity='0.06'%3E%3Cpath d='M40 0 L48 32 L80 40 L48 48 L40 80 L32 48 L0 40 L32 32 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 0.85rem;
}

.banner h1 em {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a {
  color: var(--gold-light);
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

/* ===== ABOUT PAGE ===== */
.about-story {
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-quote {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.97);
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.story-quote p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cobalt-deep);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.story-quote span {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

.story-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  margin-bottom: 1.5rem;
}

.story-content h2 em {
  font-style: italic;
  color: var(--turquoise);
  font-family: var(--font-display);
}

.story-content > p {
  margin-bottom: 1.25rem;
  color: var(--gray);
  line-height: 1.85;
}

.story-content > p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  float: left;
  line-height: 0.9;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
}

/* Values */
.values {
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 20px;
  background: var(--ivory);
  border: 1px solid transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.value-card:hover {
  background: var(--white);
  border-color: var(--cream-dark);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-cobalt);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.4s var(--ease);
}

.value-card:hover .value-icon {
  background: var(--grad-gold);
  color: var(--cobalt-deep);
  transform: rotate(360deg);
}

.value-icon svg {
  width: 30px;
  height: 30px;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.value-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Timeline */
.timeline-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 2.5rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--ivory);
  box-shadow: 0 0 0 4px var(--gold);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  border-top: 3px solid var(--gold);
}

.timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.timeline-card p {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0;
}

/* ===== REFERENCES PAGE ===== */
.gallery-section {
  background: var(--ivory);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.gallery-filter {
  padding: 0.7rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-dark);
  transition: all 0.3s var(--ease);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--cobalt);
  color: var(--white);
  border-color: var(--cobalt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease-out);
}

.gallery-item.tall {
  aspect-ratio: 3/4;
  grid-row: span 2;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.gallery-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}

.gallery-item:hover .gallery-bg {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13, 36, 64, 0.95));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
}

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

.gallery-overlay h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease) 0.1s;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease) 0.2s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-zoom {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--cobalt-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s var(--ease-bounce);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

.gallery-zoom svg {
  width: 18px;
  height: 18px;
}

/* Video Section */
.video-section {
  background: var(--cobalt-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%2320a4b5' fill-opacity='0.05'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}

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

.video-section .section-title,
.video-section .section-header p {
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.video-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  background: var(--cobalt);
  box-shadow: var(--shadow-xl);
}

.video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.video-main:hover .video-thumb {
  transform: scale(1.05);
}

.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,36,64,0.4), rgba(13,36,64,0.7));
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}

.play-button::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.5;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(1.4); opacity: 0; }
}

.video-main:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
  width: 32px;
  height: 32px;
  color: var(--cobalt-deep);
  margin-left: 4px;
}

.video-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  color: var(--white);
}

.video-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.video-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.video-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  align-items: center;
}

.video-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  transform: translateX(5px);
}

.video-item-thumb {
  width: 100px;
  height: 70px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}

.video-item-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 36, 64, 0.5);
  border-radius: 8px;
}

.video-item-thumb svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  color: var(--white);
  z-index: 1;
}

.video-item-info h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.video-item-info span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BLOG PAGE ===== */
.blog-section {
  background: var(--ivory);
}

.featured-post {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all 0.5s var(--ease);
}

.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.featured-post-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-post-image .post-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
}

.featured-post:hover .post-bg {
  transform: scale(1.08);
}

.featured-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.4rem 1rem;
  background: var(--gold);
  color: var(--cobalt-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 1;
}

.featured-post-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-meta {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.post-meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}

.featured-post-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.featured-post-content p {
  color: var(--gray);
  margin-bottom: 1.75rem;
  font-size: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cobalt);
  font-weight: 600;
  letter-spacing: 0.05em;
  align-self: flex-start;
  position: relative;
  padding-bottom: 4px;
}

.read-more::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.read-more:hover {
  color: var(--gold);
}

.read-more:hover::after {
  transform: scaleX(1);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

.read-more:hover svg {
  transform: translateX(4px);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}

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

.post-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-image .post-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

.post-card:hover .post-bg {
  transform: scale(1.1);
}

.post-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--cobalt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 1;
}

.post-content {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  transition: color 0.3s var(--ease);
}

.post-card:hover .post-content h3 {
  color: var(--cobalt);
}

.post-content p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* ===== CONTACT PAGE ===== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.contact-info-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease-out);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.08), transparent 70%);
  border-radius: 50%;
  transition: all 0.5s var(--ease);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-top-color: var(--gold);
}

.contact-info-card:hover::before {
  width: 350px;
  height: 350px;
  top: -100px;
  right: -100px;
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grad-cobalt);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s var(--ease);
}

.contact-info-card:hover .contact-info-icon {
  background: var(--grad-gold);
  color: var(--cobalt-deep);
  transform: rotate(-12deg);
}

.contact-info-icon svg {
  width: 32px;
  height: 32px;
}

.contact-info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  position: relative;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--gray);
  line-height: 1.65;
  position: relative;
  display: block;
}

.contact-info-card a:hover {
  color: var(--cobalt);
}

/* Contact form */
.contact-form-section {
  background: var(--ivory);
  position: relative;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-form-info h2 em {
  color: var(--turquoise);
  font-style: italic;
  font-family: var(--font-display);
}

.contact-form-info > p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-quick-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.contact-quick-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.contact-quick-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--grad-gold);
  color: var(--cobalt-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-quick-icon svg {
  width: 22px;
  height: 22px;
}

.contact-quick-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.contact-quick-text strong {
  color: var(--cobalt-deep);
  font-size: 1.05rem;
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cobalt) 0%, var(--turquoise) 50%, var(--gold) 100%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cobalt-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group label .req {
  color: var(--iznik-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: var(--ivory);
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--cobalt-deep);
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cobalt);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26, 68, 128, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 1.1rem 2rem;
  background: var(--grad-cobalt);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s var(--ease);
  z-index: -1;
}

.form-submit:hover {
  color: var(--cobalt-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-submit:hover::before {
  width: 600px;
  height: 600px;
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

.form-success {
  display: none;
  padding: 1rem;
  background: rgba(32, 164, 181, 0.1);
  border: 1px solid var(--turquoise);
  border-radius: 8px;
  color: var(--turquoise);
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

/* Map */
.map-section {
  background: var(--white);
}

.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
  position: relative;
  background: var(--cobalt-deep);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(1.05);
}

/* ===== RESPONSIVE ===== */
/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 45, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 2rem;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  display: block;
}

.lightbox-caption {
  text-align: center;
  color: var(--white);
  margin-top: 1.5rem;
  font-family: var(--font-heading);
}

.lightbox-caption strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold-light);
}

.lightbox-caption span {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-body);
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.lightbox-close:hover {
  background: var(--iznik-red);
  border-color: var(--iznik-red);
  transform: rotate(90deg);
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 24, 45, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  padding: 2rem;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
}

.video-modal-close {
  position: absolute;
  top: -55px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}

.video-modal-close:hover {
  background: var(--iznik-red);
  border-color: var(--iznik-red);
  transform: rotate(90deg);
}

.video-modal-close svg {
  width: 22px;
  height: 22px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--cobalt-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s var(--ease);
  z-index: 100;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s var(--ease);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: #1ebe57;
}

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

@media (max-width: 1024px) {
  .nav-menu { gap: 0; }
  .nav-menu a { padding: 0.5rem 0.75rem; font-size: 0.88rem; }
  .nav-phone { display: none; }
  .about-grid,
  .story-grid,
  .contact-form-grid,
  .video-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .services-grid,
  .posts-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2)::after { display: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .project-card:nth-child(1) {
    grid-row: span 1;
    aspect-ratio: 16/10;
  }
  .project-card:not(:nth-child(1)) {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-menu a {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--cream-dark);
  }
  .nav-menu a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 36, 64, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 998;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .section { padding: 4rem 0; }
  .hero { height: auto; min-height: 540px; padding: 4rem 0; }
  .hero-controls { right: 1rem; bottom: 1rem; }
  .hero-arrow { width: 44px; height: 44px; }
  .hero-scroll { display: none; }
  .services-grid,
  .posts-grid,
  .contact-info-grid,
  .gallery-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stat::after { display: none !important; }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .featured-post {
    grid-template-columns: 1fr;
  }
  .featured-post-content {
    padding: 2rem 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 1rem 1rem 1rem 3rem;
  }
  .timeline-dot {
    left: 10px !important;
    right: auto !important;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .about-image-wrap {
    padding-top: 1rem;
    padding-left: 1rem;
  }
  .about-badge {
    width: 110px;
    height: 110px;
    bottom: -15px;
    right: 0;
  }
  .about-badge strong { font-size: 1.75rem; }
  .about-badge span { font-size: 0.65rem; }
  .photo-card { flex: 0 0 280px; height: 380px; }
  .video-info { bottom: 1rem; left: 1rem; right: 1rem; }
  .video-info h3 { font-size: 1.1rem; }
  .play-button { width: 70px; height: 70px; }
  .play-button svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 1rem; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .section-title { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.5rem; }
  .gallery-filters { gap: 0.4rem; }
  .gallery-filter { padding: 0.5rem 1rem; font-size: 0.8rem; }
}
