:root {
  --primary: #0b1e3d;
  --primary-mid: #132d54;
  --primary-light: #1a3a6b;
  --accent: #dca83b;
  --white: #ffffff;
  --off-white: #f5f5f3;
  --gray-50: #fafaf8;
  --gray-100: #f0efed;
  --gray-200: #e0deda;
  --gray-400: #9a9690;
  --gray-600: #5a5650;
  --gray-800: #2a2620;
  --text: #1a1a1a;
  --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  font-weight: 700;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ═══ NAVBAR — Liquid Glass ═══ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(11, 30, 61, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.nav-logo img {
  height: 62px;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo img {
  height: 46px;
  filter: none;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a.active {
  color: var(--white);
}

.navbar.scrolled .nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .nav-links a::after {
  background: var(--primary);
}

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

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

.nav-cta {
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--white) !important;
  color: var(--primary) !important;
  border-color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar.scrolled .nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-color: var(--primary) !important;
  backdrop-filter: none;
}

.navbar.scrolled .nav-cta:hover {
  background: var(--primary-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--text);
}

/* ═══ PAGE HEADER (inner pages) ═══ */
.page-header {
  position: relative;
  height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 0;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-header-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 30, 61, 0.5) 0%, rgba(11, 30, 61, 0.92) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  width: 100%;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

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

.breadcrumb li.current {
  color: var(--white);
  font-weight: 500;
}

.breadcrumb .sep {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
}

/* ═══ HERO — FULLSCREEN SLIDER ═══ */
.hero-full {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

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

.hero-slide-full {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}

.hero-slide-full.active {
  opacity: 1;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 30, 61, 0.82) 0%, rgba(11, 30, 61, 0.4) 60%, rgba(11, 30, 61, 0.3) 100%);
}

.hero-full-content {
  position: relative;
  z-index: 3;
  padding-top: 180px;
  max-width: 650px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  border-radius: 40px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease both, glowTag 3s infinite alternate;
}

@keyframes glowTag {
  0% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 0 10px rgba(255, 255, 255, 0.05); border-color: rgba(255,255,255,0.3); }
  100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2); border-color: rgba(255,255,255,0.8); }
}

.hero-full-content h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-full-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.hero-full-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 500px;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.btn {
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.btn-accent {
  background: var(--white);
  color: var(--primary);
}

.btn-accent:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--primary);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11, 30, 61, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 16px 36px;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(11, 30, 61, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
  display: block;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
}

/* Hero Controls — Modern Pill Indicators */
.hero-controls {
  position: absolute;
  bottom: 85px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 32px;
  height: 4px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.hero-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot.active {
  width: 56px;
  background: rgba(255, 255, 255, 0.15);
  transform: none;
}

.hero-dot.active::after {
  width: 100%;
  animation: dotProgress 5s linear forwards;
}

@keyframes dotProgress {
  from { width: 0%; }
  to { width: 100%; }
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.35);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ═══ SECTIONS ═══ */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(30px, 3.5vw, 48px);
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 0 auto;
}

/* ═══ ABOUT ═══ */
.about {
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-image .floating-tag {
  position: absolute;
  bottom: 32px;
  right: -40px;
  background: var(--primary);
  color: var(--white);
  padding: 28px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 20px 50px rgba(11, 30, 61, 0.3);
}

.floating-tag .num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.floating-tag .lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 4px;
  opacity: 0.8;
}

.about-text .section-label {
  text-align: left;
}

.about-text h3 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 15px;
}

/* ═══ MISSION/VISION ═══ */
.mv-section {
  background: var(--gray-50);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  padding: 52px 44px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
  position: relative;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(11, 30, 61, 0.08);
}

.mv-card .mv-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  border-radius: 8px;
}

.mv-card h3 {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 16px;
}

.mv-card p {
  font-size: 15px;
  color: var(--gray-600);
}

.mv-list {
  margin-top: 16px;
  list-style: none;
}

.mv-list li {
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--gray-600);
}

.mv-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* ═══ PARALLAX ═══ */
.parallax-band {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.parallax-band .parallax-img {
  position: absolute;
  inset: -100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: calc(100% + 200px);
}

.parallax-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 30, 61, 0.88) 0%, rgba(19, 45, 84, 0.7) 100%);
}

.parallax-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.parallax-content h2 {
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 16px;
  max-width: 700px;
}

.parallax-content p {
  font-size: 18px;
  opacity: 0.75;
  max-width: 550px;
  margin: 0 auto;
}

/* ═══ VALUES ═══ */
.values {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}

.values .section-title {
  color: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.value-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.value-card .v-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.value-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* ═══ SERVICES & BENTO ═══ */
.services {
  background: var(--white);
}

.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.bento-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,30,61,0.95) 0%, rgba(11,30,61,0.4) 50%, transparent 100%);
  z-index: 2;
  transition: var(--transition);
}

.bento-content {
  position: relative;
  z-index: 3;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover img {
  transform: scale(1.05);
}

.bento-item:hover::after {
  background: linear-gradient(to top, rgba(11,30,61,0.98) 0%, rgba(11,30,61,0.6) 60%, transparent 100%);
}

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

.bento-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.bento-text {
  flex: 1;
}

.bento-text h4 {
  font-size: 20px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 6px;
  font-weight: 600;
}

.bento-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
}

.bento-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover .bento-arrow {
  transform: translateX(0);
  opacity: 1;
}

.bento-item:nth-child(1) { grid-column: span 2; grid-row: span 2; } /* Large main card */
.bento-item:nth-child(2) { grid-column: span 1; grid-row: span 1; } /* Top right */
.bento-item:nth-child(3) { grid-column: span 1; grid-row: span 1; } /* Bottom right */
.bento-item.wide { grid-column: span 3; grid-row: span 1; } /* If we want a wide bottom row */

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

.service-card {
  padding: 44px 40px;
  background: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-100);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.service-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 20px 50px rgba(11, 30, 61, 0.06);
  transform: translateY(-4px);
}

.service-card .s-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  min-width: 40px;
}

.service-card:hover .s-num {
  color: var(--primary);
}

.service-card h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══ PROJECTS ═══ */
.projects {
  background: var(--gray-50);
}

.project-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.project-tab {
  padding: 10px 24px;
  border: 1.5px solid var(--gray-200);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.project-tab.active,
.project-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(11, 30, 61, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  opacity: 0.8;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.project-overlay span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ═══ GALLERY ═══ */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item::after {
  content: '＋';
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 61, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(11, 30, 61, 0.4);
  opacity: 1;
}

/* ═══ LIGHTBOX ═══ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 30, 61, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.lightbox-close {
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  font-size: 24px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  font-size: 24px;
}

.lightbox-prev { left: 40px; }
.lightbox-next { right: 40px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}
.lightbox-prev:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.1); }

@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 18px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 20px; }
}

/* ═══ NEWS ═══ */
.news {
  background: var(--gray-50);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  transition: var(--transition);
  overflow: hidden;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 30, 61, 0.08);
}

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

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.news-card:hover img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
}

.news-body {
  padding: 28px;
}

.news-body h4 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.4;
}

.news-body p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.news-link {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.news-link:hover {
  letter-spacing: 1.5px;
}

.news-meta-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  margin-top: 16px;
}

.news-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
}

.news-stat-item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.news-stat-item svg {
  transition: transform 0.3s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.news-stat-item:hover {
  color: var(--primary);
}

.news-stat-item:hover svg {
  transform: scale(1.2);
}

.news-stat-item.liked {
  color: #ff3b30;
}

.news-stat-item.liked svg {
  fill: #ff3b30;
  stroke: #ff3b30;
  animation: heartPop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

/* ═══ BLOG DETAIL ═══ */
.blog-detail-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.blog-detail-category {
  display: inline-block;
  background: rgba(11, 30, 61, 0.06);
  color: var(--primary);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-detail-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-detail-image {
  max-width: 1000px;
  margin: 0 auto 48px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11, 30, 61, 0.08);
}

.blog-detail-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 21/10;
  object-fit: cover;
  display: block;
}

.blog-detail-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: var(--gray-800);
}

.blog-detail-content p {
  margin-bottom: 24px;
  text-align: justify;
}

.blog-detail-content h3 {
  font-size: 24px;
  color: var(--primary);
  margin: 40px 0 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.blog-detail-footer {
  max-width: 800px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.like-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
  outline: none;
}

.like-btn-large svg {
  transition: transform 0.3s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

.like-btn-large:hover {
  border-color: #ff3b30;
  background: #fffaf9;
  color: #ff3b30;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 59, 48, 0.1);
}

.like-btn-large:hover svg {
  transform: scale(1.15);
}

.like-btn-large.liked {
  background: #ff3b30;
  border-color: #ff3b30;
  color: var(--white);
}

.like-btn-large.liked svg {
  fill: var(--white);
  stroke: var(--white);
  animation: heartPop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.back-link:hover {
  gap: 12px;
}

/* ═══ PROJECT DETAIL ═══ */
.project-detail-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1240px;
  margin: 40px auto 80px;
}

.project-sidebar {
  position: sticky;
  top: 100px;
  background: linear-gradient(145deg, var(--white), var(--gray-50));
  border: 1px solid rgba(11, 30, 61, 0.08);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(11, 30, 61, 0.05);
}

.project-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #083245;
  border-radius: 12px 12px 0 0;
}

.project-sidebar h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(11, 30, 61, 0.08);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.project-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-spec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.project-spec-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 30, 61, 0.06);
  border-color: rgba(8, 50, 69, 0.3);
}

.project-spec-icon {
  width: 44px;
  height: 44px;
  background: rgba(11, 30, 61, 0.05);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: var(--transition);
}

.project-spec-item:hover .project-spec-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.08);
}

.project-spec-content {
  flex-grow: 1;
}

.project-spec-content strong {
  display: block;
  color: var(--gray-400);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
  font-weight: 700;
}

.project-spec-content span {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}

.project-sidebar-status {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 30, 61, 0.08);
}

.status-badge {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.status-badge.completed {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: #ffffff;
}

.status-badge.ongoing {
  background: #083245;
  color: #ffffff;
}

.project-main-cover {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 20px 50px rgba(11, 30, 61, 0.08);
}

.project-main-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-main h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

.project-detail-main p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--gray-700);
  margin-bottom: 24px;
  text-align: justify;
}

.project-section-title {
  font-size: 22px;
  color: var(--primary);
  margin: 48px 0 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
}

.project-section-title::before {
  content: '';
  width: 6px;
  height: 22px;
  background: #083245;
  border-radius: 4px;
}

.project-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--gray-50);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  border-left: 3px solid #083245;
  transition: var(--transition);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.feature-item svg {
  color: #083245;
  flex-shrink: 0;
  margin-top: 2px;
}

.project-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mini-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.mini-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.mini-gallery-item:hover img {
  transform: scale(1.08);
}

.mini-gallery-item::after {
  content: '🔍 Büyüt';
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 61, 0.7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.mini-gallery-item:hover::after {
  opacity: 1;
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.floor-plan-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.floor-plan-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(11, 30, 61, 0.06);
  transform: translateY(-4px);
}

.floor-plan-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.floor-plan-card h5 {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 992px) {
  .project-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .project-sidebar {
    position: static;
    padding: 24px;
  }
  .project-spec-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .project-features-list,
  .floor-plans-grid,
  .project-mini-gallery {
    grid-template-columns: 1fr;
  }
  .project-spec-list {
    grid-template-columns: 1fr;
  }
}

/* ═══ CONTACT ═══ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  padding: 32px 0;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-card .c-icon {
  width: 48px;
  height: 48px;
  background: rgba(11, 30, 61, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.contact-info-card h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray-600);
}

.qr-contact-card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 28px;
  margin-top: 4px;
  background: var(--gray-50);
  border-radius: 16px;
}

.qr-contact-card img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  background: var(--white);
  padding: 8px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.qr-contact-card h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.qr-contact-card p {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.qr-contact-card a {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.qr-contact-card a:hover {
  text-decoration: underline;
}

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ═══ CTA ═══ */
.cta {
  padding: 100px 0;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 800px;
  height: 800px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 50%;
}

.cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 16px;
}

.cta p {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══ FOOTER ═══ */
.footer {
  background: #060e1a;
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1.1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-qr img {
  background: var(--white);
  padding: 6px;
  border-radius: 8px;
}

.footer-qr p {
  font-size: 12.5px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer h4 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-about img {
  height: 44px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* ═══ REVEAL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s var(--ease-out);
}

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

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

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

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

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

/* ═══ RESPONSIVE ═══ */

/* Tablet */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image .floating-tag {
    right: 16px;
    bottom: 16px;
  }

  .about-image img {
    aspect-ratio: 16/10;
  }

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

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: 0;
  }

  .stat-num {
    font-size: 32px;
  }

  .stat-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-full-content {
    padding-top: 160px;
  }

  .hero-full-content h1 {
    font-size: clamp(36px, 5vw, 56px);
  }

  .section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Navbar Mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 30, 61, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--white) !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
  }

  .nav-cta {
    margin-top: 16px;
    padding: 14px 36px !important;
    font-size: 13px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
  }

  .nav-toggle {
    display: flex;
    gap: 7px;
    padding: 12px;
  }

  .nav-toggle span {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background: var(--white) !important;
  }

  .navbar {
    padding: 16px 0;
    background: rgba(11, 30, 61, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .navbar.scrolled {
    padding: 12px 0;
  }

  .nav-logo img {
    height: 42px !important;
    filter: brightness(0) invert(1) !important;
  }

  .navbar.scrolled .nav-logo img {
    height: 34px !important;
    filter: none !important;
  }

  .navbar.scrolled .nav-toggle span {
    background: var(--text) !important;
  }

  /* Hero Mobile — Reels Style */
  .hero-full {
    height: 100svh;
    min-height: 100svh;
  }

  .hero-overlay {
    background: linear-gradient(
      0deg,
      rgba(11, 30, 61, 0.95) 0%,
      rgba(11, 30, 61, 0.6) 35%,
      rgba(11, 30, 61, 0.1) 60%,
      transparent 100%
    ) !important;
  }

  .hero-slide-full .container {
    height: 100%;
    display: flex;
    align-items: flex-end;
  }

  .hero-full-content {
    padding-top: 0;
    padding-bottom: 120px;
    max-width: 100%;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 2px;
    padding: 6px 16px;
    margin-bottom: 14px;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-full-content h1 {
    font-size: 44px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  }

  .hero-full-content h1 em {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-full-content p {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero-buttons {
    flex-direction: row;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: auto;
    flex: 1;
    justify-content: center;
    padding: 16px 20px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .hero-buttons .btn-accent {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
  }

  .hero-buttons .btn-outline-white {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
  }

  /* Reels-style dots — right side vertical pills */
  .hero-controls {
    position: absolute;
    bottom: auto;
    top: 45%;
    right: 14px;
    flex-direction: column;
    gap: 6px;
    z-index: 20;
  }

  .hero-dot {
    width: 4px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-dot::after {
    width: 100%;
    height: 0%;
    border-radius: 4px;
  }

  .hero-dot.active {
    width: 4px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
  }

  .hero-dot.active::after {
    width: 100%;
    height: 100%;
    animation: dotProgressVertical 5s linear forwards;
  }

  @keyframes dotProgressVertical {
    from { height: 0%; }
    to { height: 100%; }
  }

  /* Stats Bar — Reels bottom strip */
  .hero-stats-bar {
    position: absolute;
    bottom: 0;
    background: rgba(11, 30, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .stats-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 0;
    gap: 0;
  }

  .stat-item {
    flex: 1;
    text-align: center;
    padding: 0;
    border: none !important;
  }

  .stat-divider {
    display: block;
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
  }

  .stat-num {
    font-size: 22px;
    line-height: 1;
  }

  .stat-label {
    font-size: 8px;
    letter-spacing: 1px;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.45);
  }

  /* Page Header Mobile */
  .page-header {
    height: 240px;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .page-header-content {
    padding-bottom: 32px;
  }

  .breadcrumb li {
    font-size: 12px;
  }

  /* Sections Mobile */
  .section {
    padding: 60px 0;
  }

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

  .section-title {
    font-size: 28px;
  }

  /* About Mobile */
  .about-grid {
    gap: 32px;
  }

  .about-image img {
    aspect-ratio: 16/10;
  }

  .about-text h3 {
    font-size: 28px;
  }

  .floating-tag {
    padding: 20px !important;
    min-width: 120px !important;
  }

  .floating-tag .num {
    font-size: 36px !important;
  }

  /* Mission/Vision Mobile */
  .mv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mv-card {
    padding: 32px 24px;
  }

  .mv-card h3 {
    font-size: 22px;
  }

  /* Values Mobile */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 28px 24px;
  }

  /* Services Bento Mobile (Anasayfa) */
  .services-bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    gap: 12px;
  }

  .bento-item:nth-child(1) {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 4/3;
  }

  .bento-item:nth-child(2),
  .bento-item:nth-child(3) {
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 1/1;
  }

  .bento-item.wide {
    grid-column: span 2;
    grid-row: auto;
    aspect-ratio: 16/9;
  }

  .bento-content {
    padding: 18px;
    gap: 14px;
  }

  .bento-icon {
    width: 38px;
    height: 38px;
  }

  .bento-text h4 {
    font-size: 16px;
  }

  .bento-text p {
    font-size: 12.5px;
  }

  /* Services Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 28px 24px;
    gap: 16px;
  }

  .service-card .s-num {
    font-size: 24px;
    min-width: 32px;
  }

  /* Projects Mobile */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-tabs {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
  }

  .project-tab {
    padding: 8px 16px;
    font-size: 12px;
    flex: 1;
    text-align: center;
    min-width: calc(50% - 4px);
  }

  /* News Mobile */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-body {
    padding: 20px;
  }

  /* Gallery Mobile */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 8px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Contact Mobile */
  .contact-grid {
    gap: 40px;
  }

  .contact-info-card {
    padding: 20px;
    gap: 16px;
  }

  .contact-info-card .c-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .qr-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Parallax Mobile */
  .parallax-band {
    height: 300px;
  }

  .parallax-band .parallax-img {
    background-attachment: scroll;
  }

  .parallax-content h2 {
    font-size: 24px;
    padding: 0 20px;
  }

  .parallax-content p {
    font-size: 14px;
    padding: 0 20px;
  }

  /* CTA Mobile */
  .cta {
    padding: 60px 0;
  }

  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 14px;
  }

  /* Footer Mobile */
  .footer {
    padding: 48px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-about img {
    height: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
    font-size: 12px;
    padding: 20px 0 28px;
  }

  .btn {
    font-size: 11px;
    padding: 12px 24px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-full-content h1 {
    font-size: 28px;
  }

  .hero-full-content p {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .about-text h3 {
    font-size: 24px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 30px;
  }

  .page-header {
    height: 200px;
  }

  .page-header h1 {
    font-size: 24px;
  }

  .mv-card {
    padding: 24px 20px;
  }

  .value-card {
    padding: 24px 20px;
  }

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