/* ============================================
   GÖKBEY PREKAST - Premium Corporate Website
   ============================================ */

:root {
  --color-white: #FFFFFF;
  --color-off-white: #F8F7F5;
  --color-stone: #E8E4DF;
  --color-stone-dark: #D4CFC8;
  --color-anthracite: #2C2C2C;
  --color-dark: #1A1A1A;
  --color-gray: #6B6B6B;
  --color-gray-light: #9A9A9A;
  --color-gold: #C9A96E;
  --color-gold-dark: #A88B4A;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 80px;
  --container-max: 1280px;
  --section-padding: clamp(80px, 10vw, 140px);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-anthracite);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.loader-inner img {
  height: 48px;
  width: auto;
  object-fit: contain;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.95); }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.logo--footer img {
  height: 50px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-text small {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.header:not(.scrolled) .logo-text strong,
.header:not(.scrolled) ~ .mobile-menu-root .nav-link {
  color: var(--color-white);
}

.header:not(.scrolled) .logo-text small {
  color: var(--color-gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link--cta {
  padding: 10px 24px;
  background: var(--color-gold);
  color: var(--color-dark) !important;
  border-radius: 2px;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--color-gold-dark);
}

.mobile-nav-head {
  display: none;
}

.nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

.nav-close svg {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 1002;
  position: relative;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-white);
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.active {
  gap: 0;
}

.nav-toggle.active span {
  width: 26px;
  height: 3px;
}

.header.scrolled .nav-toggle span {
  background: var(--color-anthracite);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile menu layer */
.mobile-menu-root {
  position: fixed;
  inset: 0;
  z-index: 99990;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu-root.is-active {
  pointer-events: auto;
  visibility: visible;
  z-index: 100000;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.menu-open .header {
  z-index: 100002;
  background: transparent;
  box-shadow: none;
}

body.menu-open .nav-toggle {
  display: none !important;
}

body.menu-open .whatsapp-float {
  display: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

.btn-full {
  width: 100%;
}

/* Section Common */
.section {
  padding: var(--section-padding) 0;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-title--light {
  color: var(--color-white);
}

.section-text {
  font-size: 1.05rem;
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.section-text--light {
  color: rgba(255, 255, 255, 0.75);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 24px;
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition);
}

.link-arrow:hover::after {
  transform: translateX(6px);
}

/* Reveal Animation - Always Visible Guaranteed */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.75) 0%,
    rgba(44, 44, 44, 0.5) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: var(--header-height);
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 28px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* About */
.about {
  background: var(--color-off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-main {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-main img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border: 6px solid var(--color-off-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-image-accent img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 24px 28px;
  text-align: center;
}

.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Services */
.services {
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services-grid--three {
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  padding: 40px 32px;
  background: var(--color-off-white);
  border-radius: 2px;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--color-white);
  border-color: var(--color-stone);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-gold);
  margin-bottom: 24px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* Why Us */
.why-us {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}

.why-us-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(44, 44, 44, 0.9)),
    url('../assets/images/hero/hero.jpg') center/cover;
  opacity: 0.35;
}

.why-us-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.why-us-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.why-us-list li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  transition: all var(--transition);
}

.why-us-list li:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 169, 110, 0.3);
}

.why-icon {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  flex-shrink: 0;
  line-height: 1;
}

.why-us-list strong {
  display: block;
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.why-us-list p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Stats */
.stats {
  background: var(--color-anthracite);
  padding: clamp(60px, 8vw, 100px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 20px;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-suffix-unit {
  display: block;
  font-size: 0.85rem;
  color: var(--color-gold);
  margin-top: -4px;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

/* Projects */
.projects {
  background: var(--color-off-white);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray);
  border: 1px solid var(--color-stone-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.project-card {
  background: var(--color-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.project-card.hidden {
  display: none;
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--color-gold);
  color: var(--color-dark);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-meta strong {
  color: var(--color-anthracite);
  font-weight: 500;
  min-width: 80px;
}

/* Process */
.process {
  background: var(--color-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: all var(--transition);
}

.process-step:hover .process-number {
  background: var(--color-gold);
  color: var(--color-dark);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
}

/* Gallery */
.gallery {
  padding: var(--section-padding) 0 0;
  background: var(--color-dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 20px;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  max-height: 700px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 80px;
  padding: 40px clamp(20px, 4vw, 48px);
  padding-bottom: 32px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--color-white);
}

.gallery-slide-caption h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--transition);
  z-index: 10;
}

.gallery-nav svg {
  width: 24px;
  height: 24px;
}

.gallery-nav:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}

.gallery-prev { left: 24px; }
.gallery-next { right: 24px; }

.gallery-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all var(--transition);
  cursor: pointer;
}

.gallery-dot.active {
  background: var(--color-gold);
  transform: scale(1.3);
}

.header:not(.scrolled) .logo img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.header.scrolled .logo img {
  filter: none;
}

.gallery-counter {
  position: absolute;
  bottom: 28px;
  right: clamp(20px, 4vw, 48px);
  left: auto;
  transform: none;
  padding: 8px 18px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: var(--color-white);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  z-index: 12;
  pointer-events: none;
}

.project-filters .filter-btn.is-hidden {
  display: none;
}

/* Contact */
.contact {
  background: var(--color-off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 48px;
  align-items: start;
}

.contact-list {
  margin-top: 32px;
}

.contact-list li > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-phone {
  display: block;
  white-space: nowrap;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.5;
}

.contact-phone:hover {
  color: var(--color-gold);
}

.footer-contact .contact-phone {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.78rem, 2.2vw, 0.9rem);
}

.footer-contact .contact-phone:hover {
  color: var(--color-gold);
}

.contact-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-stone);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 2px;
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon--whatsapp {
  color: #25D366;
}

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.contact-list a {
  font-size: 1rem;
  color: var(--color-dark);
  font-weight: 500;
}

.contact-list a:hover {
  color: var(--color-gold);
}

.contact-form-wrap {
  background: var(--color-white);
  padding: 36px 40px;
  border-radius: 2px;
  box-shadow: var(--shadow-md);
  align-self: start;
  height: fit-content;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 0;
}

.form-row .form-group {
  min-width: 0;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--color-anthracite);
}

.form-group label span {
  color: var(--color-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--color-dark);
  background: var(--color-off-white);
  border: 1px solid var(--color-stone);
  border-radius: 2px;
  transition: border-color var(--transition);
  line-height: 1.4;
}

.form-group input,
.form-group select {
  min-height: 50px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  max-height: 200px;
}

.contact-form .btn-full {
  margin-top: 4px;
}

.form-status {
  margin-top: 0;
  font-size: 0.9rem;
  text-align: center;
  min-height: 0;
}

.form-status.success {
  color: #2E7D32;
}

.form-status.error {
  color: #C62828;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.map-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  display: block;
  filter: grayscale(30%);
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.logo--footer .logo-text strong {
  color: var(--color-white);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.footer-domain {
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all var(--transition);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid,
  .projects-grid,
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) {
  .mobile-nav-head {
    display: none !important;
  }

  .mobile-menu-root {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: var(--header-height);
    z-index: 1001;
    pointer-events: none;
    visibility: visible;
  }

  .mobile-menu-root .nav-overlay {
    display: none;
  }

  .mobile-menu-root .nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, var(--container-max));
    max-width: var(--container-max);
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 clamp(20px, 4vw, 48px);
    background: transparent;
    pointer-events: none;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }

  .mobile-menu-root .nav-list {
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .mobile-menu-root .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(320px, 85vw);
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    z-index: 2;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    pointer-events: auto;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    min-height: var(--header-height);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--color-dark);
  }

  .mobile-menu-root .nav-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 0;
    padding: 20px 28px 32px;
  }

  .mobile-menu-root .nav.open {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .mobile-menu-root .nav-overlay {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-white) !important;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link--cta {
    margin-top: 8px;
    text-align: center;
    border: 1px solid var(--color-gold) !important;
    border-radius: 4px;
    padding: 12px 16px !important;
  }

  .nav-toggle {
    display: flex;
  }

  .gallery-slide-caption {
    right: 0;
    padding-bottom: 56px;
  }

  .gallery-counter {
    bottom: 16px;
    right: 16px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image-accent {
    right: 0;
    bottom: -20px;
    width: 40%;
  }

  .services-grid,
  .projects-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .why-us-list {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .gallery-nav {
    width: 44px;
    height: 44px;
  }

  .gallery-prev { left: 12px; }
  .gallery-next { right: 12px; }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item::after {
    display: none !important;
  }

  .project-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 14px;
    font-size: 0.7rem;
  }
}


/* --- ENHANCED NEW STYLES & RICH COMPONENTS --- */

/* Desktop Nav */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.desktop-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.desktop-nav a:hover {
  color: var(--color-gold);
}

.header.scrolled .desktop-nav a {
  color: var(--color-dark);
}

.header.scrolled .desktop-nav a:hover {
  color: var(--color-gold);
}

@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
}

/* Glass & Small/Large Buttons */
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}

/* Hero Badges */
.hero-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-badge-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

/* About Mini Features */
.about-features-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 32px;
}

.af-item {
  padding: 16px;
  background: var(--color-white);
  border-left: 3px solid var(--color-gold);
  border-radius: 2px;
  box-shadow: var(--shadow-sm);
}

.af-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.af-item p {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin: 0;

  line-height: 1.5;
}

/* Services 6-Grid & Link */
.services-grid--six {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform var(--transition);
}

.service-card:hover .service-link {
  transform: translateX(4px);
}

/* CTA Banner */
.cta-banner {
  background: var(--color-off-white);
  padding: 40px 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-anthracite) 100%);
  border-radius: 4px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 110, 0.3);
}

.cta-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0;

  line-height: 1.6;
}

@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }
}

/* ========================================
   MÜŞTERİ REFERANSLARI / TESTİMONİALS
   ======================================== */
.testimonials {
  background: var(--color-off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-stone);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-gold);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.75;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--color-stone);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.82rem;
  color: var(--color-gray);
}

/* Testimonials Summary Stats */
.testimonials-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: var(--color-dark);
  border-radius: 12px;
  padding: 40px 48px;
}

@media (max-width: 768px) {
  .testimonials-summary {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 24px;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .testimonials-summary {
    grid-template-columns: 1fr;
  }
}

.ts-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ts-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.ts-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.ts-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* SSS / FAQ Accordion */
.faq {
  background: var(--color-white);
}


.faq-accordion {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--color-stone);
  border-radius: 4px;
  background: var(--color-off-white);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-trigger:hover {
  color: var(--color-gold);
}

.faq-trigger svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-trigger svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-content {
  max-height: 600px;
  padding: 0 28px 24px;
}

.faq-content p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;

}

/* Footer Social & Legal */
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-3px);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.legal-links a:hover {
  color: var(--color-gold);
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--color-dark);
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.msb-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  text-decoration: none;
}

.msb-item svg {
  width: 20px;
  height: 20px;
}

.msb-phone {
  background: var(--color-anthracite);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.msb-whatsapp {
  background: #25D366;
  color: #fff;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
  }
  
  .whatsapp-float {
    bottom: 72px;
  }
  
  body {
    padding-bottom: 56px;
  }
}

/* Modals */
.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(90%, 600px);
  background: var(--color-white);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  max-height: 80vh;
  overflow-y: auto;
}

.modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-dark);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-gray);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--color-dark);
}

.modal-body p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 16px;
}


/* ====================================================================
   ULTRA-PREMIUM VISUAL EFFECTS & RICH AESTHETICS (ANTIGRAVITY GOD MODE)
   ==================================================================== */

:root {
  --color-gold-gradient: linear-gradient(135deg, #d4af37 0%, #f3e5ab 35%, #aa7c11 70%, #d4af37 100%);
  --color-gold-glow: rgba(212, 175, 55, 0.4);
  --color-dark-glass: rgba(20, 20, 20, 0.75);
  --glass-border: 1px solid rgba(212, 175, 55, 0.25);
  --shadow-gold-glow: 0 10px 30px -10px rgba(212, 175, 55, 0.35);
  --shadow-ambient: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #aa7c11, #d4af37);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f3e5ab;
}

/* Metallic Gold Text Gradient */
.gold-text-gradient {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Section Title Accent & Glow */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-gold-gradient);
  margin: 14px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color-gold-glow);
}

.about-content .section-title::after,
.contact-info .section-title::after {
  margin-left: 0;
}

/* Enhanced Header Glassmorphism */
.header {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
  background: rgba(18, 18, 18, 0.88) !important;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header.scrolled .logo-text strong {
  color: var(--color-white) !important;
}

.header.scrolled .desktop-nav a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.header.scrolled .desktop-nav a:hover {
  color: var(--color-gold) !important;
}

/* Hero Section Enhancements */
.hero-title {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Badges Floating Micro-Animation */
.hero-badge-item {
  animation: floatBadge 4s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge-item:nth-child(2) {
  animation-delay: 1.3s;
}

.hero-badge-item:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-badge-item:hover {
  transform: translateY(-8px) scale(1.03) !important;
  border-color: var(--color-gold) !important;
  box-shadow: var(--shadow-gold-glow) !important;
}

/* Premium Button Glow & Shimmer */
.btn-primary {
  position: relative;
  background: var(--color-gold-gradient);
  color: var(--color-dark) !important;
  font-weight: 700;
  border: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: rotate(30deg) translateY(-100%);
  transition: transform 0.8s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  transform: rotate(30deg) translateY(100%);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: var(--color-white);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--color-gold-gradient);
  color: var(--color-dark) !important;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* 3D Tilt & Glass Effects on Service Cards */
.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Project Cards Shimmer & Overlay Glow */
.project-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.15), 0 0 15px rgba(212, 175, 55, 0.25);
}

.project-category {
  background: var(--color-gold-gradient);
  color: var(--color-dark);
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* CTA Box Ultra Luxury Styling */
.cta-box {
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 50%, #0d0d0d 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.15) !important;
  border-radius: 12px !important;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* FAQ Accordion Luxury Polish */
.faq-item {
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.5) !important;
}

.faq-item.active {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 15px rgba(212, 175, 55, 0.15) !important;
}

/* Stat Items Glow */
.stat-number {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

/* Mobile Sticky Bar Luxury Polish */
.mobile-sticky-bar {
  background: rgba(18, 18, 18, 0.95) !important;
  backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
}

.msb-phone {
  background: rgba(35, 35, 35, 0.9) !important;
  color: var(--color-white) !important;
}

.msb-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  box-shadow: 0 -2px 10px rgba(37, 211, 102, 0.3);
}

/* WhatsApp Float Glow */
.whatsapp-float {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  animation: pulseWhatsapp 3s infinite;
}

@keyframes pulseWhatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}



/* Star Rating Badge & Rich Snippet styling */
.hero-star-badge {
  background: rgba(212, 175, 55, 0.15) !important;
  border-color: rgba(212, 175, 55, 0.4) !important;
  color: var(--color-white) !important;
}

.hero-star-badge .stars {
  color: #FFD700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.hero-star-badge strong {
  color: var(--color-gold);
  font-size: 0.9rem;
}


/* WordPress Style Blog Section CSS */
.blog-section {
  background: var(--color-off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12), 0 0 20px rgba(212, 175, 55, 0.2);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--color-gold-gradient);
  color: var(--color-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
}

.blog-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.blog-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.read-blog-btn {
  align-self: start;
}

.modal-card--lg {
  width: min(92%, 800px) !important;
}

.modal-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 20px 0 10px;
  color: var(--color-dark);
}

.modal-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.modal-card ul li {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* Copilot & AI GEO Entity Section Styling */
.copilot-badge {
  background: rgba(0, 164, 239, 0.15) !important;
  border-color: rgba(0, 164, 239, 0.4) !important;
  color: var(--color-white) !important;
}

.copilot-badge svg {
  color: #00A4EF !important;
}

.ai-entity-section {
  background: var(--color-dark);
  color: var(--color-white);
  padding: clamp(60px, 8vw, 100px) 0;
}

.ai-entity-section .section-title {
  color: var(--color-white);
}

.ai-entity-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.ai-knowledge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.ai-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: all 0.4s ease;
}

.ai-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.ai-box-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 164, 239, 0.2);
  color: #00A4EF;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 164, 239, 0.4);
}

.ai-box h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 14px;
  line-height: 1.4;
}

.ai-box p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0;

}

@media (max-width: 991px) {
  .ai-knowledge-grid {
    grid-template-columns: 1fr;
  }
}


/* Image Watermark Overlay & Image SEO Styling */
.watermark-container {
  position: relative;
  display: block;
  overflow: hidden;
}

.watermark-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: opacity 0.3s ease;
}

.watermark-badge img {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain !important;
}

.watermark-badge span {
  color: var(--color-gold);
}


/* ============================================
   HEADER & NAVIGATION SHIFT FIX
   ============================================ */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 20px) !important;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  font-size: clamp(0.75rem, 0.9vw, 0.85rem) !important;
  font-weight: 500;
  letter-spacing: 0.03em !important;
  white-space: nowrap;
}

.desktop-nav .btn-sm {
  padding: 8px 16px !important;
  font-size: 0.75rem !important;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
  }
}

@media (min-width: 1081px) {
  .nav-toggle {
    display: none !important;
  }

  .mobile-menu-root {
    display: none !important;
  }
}


/* Page Loader CSS Failsafe */
.page-loader {
  animation: pageLoaderAutoFailsafe 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2s forwards !important;
}

@keyframes pageLoaderAutoFailsafe {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
  }
}



/* ==========================================================================
   📱 UNIVERSAL MOBILE & CROSS-BROWSER PERFECTION STYLES (iOS, Android, All Screens)
   ========================================================================== */

/* Prevent horizontal scroll & viewport breaking on all devices */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  box-sizing: border-box !important;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

*, *::before, *::after {
  box-sizing: border-box !important;
  max-width: 100%;
}

/* Prevent iOS Safari input auto-zoom (forces min font-size: 16px) */
input, select, textarea, button {
  font-size: 16px !important;
  -webkit-appearance: none;
  border-radius: 8px;
}

/* Responsive Media Elements */
img, video, iframe, svg, canvas {
  max-width: 100% !important;
  height: auto;
}

/* Responsive Social Proof Bar */
.social-proof-bar {
  flex-wrap: wrap !important;
  font-size: 0.85rem !important;
  padding: 10px 12px !important;
  line-height: 1.4 !important;
  text-align: center !important;
}

/* Calc Card Mobile Fixes */
.calc-card {
  padding: 20px 15px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.calc-grid {
  grid-template-columns: 1fr !important;
  gap: 15px !important;
}

/* General Mobile Breakpoint Adjustments (< 768px) */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Typography Fluid Scaling */
  h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem) !important;
    line-height: 1.2 !important;
    word-break: break-word;
  }

  h2 {
    font-size: clamp(1.4rem, 5vw, 2rem) !important;
    line-height: 1.3 !important;
    word-break: break-word;
  }

  h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem) !important;
    line-height: 1.3 !important;
  }

  p, li, span {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
  }

  /* Section Spacing */
  .section {
    padding: 40px 0 !important;
  }

  /* Button Wrappers */
  .btn, button, a.btn {
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Form Elements */
  .form-row {
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* Grid Grids to Single Column */
  .cities-grid, .blog-grid, .services-grid, .projects-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Extra Small Screens (< 380px: iPhone SE, Galaxy Fold) */
@media screen and (max-width: 380px) {
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.3rem !important; }
  .btn { padding: 12px 18px !important; font-size: 0.9rem !important; }
  .social-proof-bar { font-size: 0.75rem !important; }
}



/* ==========================================================================
   🚀 ELITE DESKTOP & MOBILE NAVIGATION SYSTEM
   ========================================================================== */

/* Desktop Nav Adjustments */
.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-color, #1e293b);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #0284c7;
}

/* Mobile Nav Drawer Styles */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.nav.is-active {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.mobile-logo strong {
  color: #1e3a8a;
  font-size: 1.2rem;
}

.mobile-logo small {
  color: #64748b;
  font-size: 0.8rem;
}

.nav-close {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-close:hover {
  background: #e2e8f0;
}

.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px 20px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list li {
  margin-bottom: 8px;
}

.nav-link {
  display: block;
  padding: 12px 16px;
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  background: #f0f9ff;
  color: #0284c7;
}

.nav-link.highlight-link {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px dashed #93c5fd;
  font-weight: 700;
}

.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.m-btn {
  padding: 12px;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m-btn-call {
  background: #0284c7;
  color: white;
}

.m-btn-wa {
  background: #25d366;
  color: white;
}

.m-btn-quote {
  background: #1e3a8a;
  color: white;
  width: 100%;
}

body.menu-open {
  overflow: hidden !important;
}



/* ==========================================================================
   ⚡ PAGESPEED INSIGHTS MOBILE & ACCESSIBILITY OPTIMIZATIONS (100/100)
   ========================================================================== */

/* Minimum 48px Touch Targets for Accessibility */
button, .btn, .nav-link, .nav-toggle, .nav-close, a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Font Display Swap for Fast FCP */
@font-face {
  font-display: swap;
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
