/* ============================================
   ÖZ ÇINAROĞLU — Premium Corporate Design System
   ============================================ */

:root {
  --navy-900: #0a1628;
  --navy-800: #0f1f3d;
  --navy-700: #152a52;
  --navy-600: #1c3566;
  --gold-500: #c9a227;
  --gold-400: #d4b44a;
  --gold-300: #e8cc6e;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --white: #ffffff;
  --off-white: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #d8dde8;
  --gray-400: #8b95a8;
  --gray-600: #5a6478;
  --text: #1a2332;
  --text-light: #f0f2f7;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --header-h: 88px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom, 0);
  -webkit-tap-highlight-color: transparent;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul { list-style: none; }

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.section-compact {
  padding: 48px 0;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  display: inline-block;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}

.preloader-logo img {
  width: 140px;
  height: auto;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: 3px;
  animation: loadBar 1.8s ease forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

.preloader-text {
  color: var(--gray-400);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Custom Cursor ---- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold-500);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 162, 39, 0.5);
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: var(--gold-500);
  background: rgba(201, 162, 39, 0.08);
}

@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06), var(--shadow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav-logo-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 8px 16px;
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.header.scrolled .nav-logo-wrap {
  padding: 6px 12px;
}

.nav-logo-wrap:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.12);
}

.nav-logo-wrap img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.header.scrolled .nav-link {
  color: var(--gray-600);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-400);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--navy-800);
  background: var(--gray-100);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-400);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-menu-cta {
  display: none;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
  width: 100%;
}

.nav-menu-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.nav-menu-call:active {
  transform: scale(0.98);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header.scrolled .nav-toggle span {
  background: var(--navy-800);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: 0 4px 24px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  background: rgba(201, 162, 39, 0.1);
}

.btn-white {
  background: var(--white);
  color: var(--navy-900);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, transparent 0%, var(--navy-900) 70%),
    linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.8) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 80px 0 120px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold-300);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  color: var(--gold-500);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.hero-trust-item {
  text-align: center;
}

.hero-trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-500);
  font-family: var(--font-display);
}

.hero-trust-item span {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold-500), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% { 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; }
}

/* ---- Sections ---- */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy-900);
  color: var(--text-light);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.section-dark .section-title {
  color: var(--white);
}

.section-title em {
  font-style: italic;
  color: var(--gold-500);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.7;
}

.section-dark .section-desc {
  color: var(--gray-400);
}

.section-header.center {
  text-align: center;
  margin-bottom: 64px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ---- Trust Marquee ---- */
.trust-marquee {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-800), var(--navy-900));
  border-block: 1px solid rgba(201, 162, 39, 0.15);
  overflow: hidden;
  padding: 14px 0;
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding-left: 32px;
}

.trust-marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-300);
  white-space: nowrap;
}

.trust-marquee-track .dot {
  color: rgba(201, 162, 39, 0.4);
  font-size: 0.5rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Credentials ---- */
.credentials {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-100);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.credential-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.credential-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-lg);
}

.credential-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(201,162,39,0.04));
  border-radius: 10px;
  color: var(--gold-500);
}

.credential-icon svg {
  width: 22px;
  height: 22px;
}

.credential-card strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.credential-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.4;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-visual:hover .about-img-main img {
  transform: scale(1.03);
}

.about-img-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow-lg);
}

.about-img-float img {
  width: 100px;
  height: auto;
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-900);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-badge svg {
  color: var(--gold-500);
}

.about-badge strong {
  display: block;
  font-size: 1.4rem;
  color: var(--gold-500);
  line-height: 1;
}

.about-badge span {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-features {
  margin: 32px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.1);
  border-radius: 10px;
  color: var(--gold-500);
}

.about-feature-icon svg {
  width: 20px;
  height: 20px;
}

.about-features strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-features p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201, 162, 39, 0.2);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.service-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

/* ---- Process ---- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-500);
  box-shadow: 0 0 0 8px var(--off-white);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process-step:hover .process-num {
  background: var(--gold-500);
  color: var(--white);
  transform: scale(1.08);
}

.process-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-content p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-large img {
  min-height: 500px;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform var(--transition);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

/* ---- CTA Banner ---- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: var(--gray-400);
  max-width: 480px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ---- Contact Bento ---- */
.contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.contact-header .section-desc {
  margin: 0 auto;
}

.contact-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  min-height: 160px;
  overflow: hidden;
}

a.contact-card {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

a.contact-card:active {
  transform: scale(0.98);
}

.contact-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.contact-card-primary {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-color: rgba(201, 162, 39, 0.25);
  color: var(--white);
}

.contact-card-primary .contact-card-label,
.contact-card-primary .contact-card-hint {
  color: var(--gray-400);
}

.contact-card-primary .contact-card-value {
  color: var(--gold-400);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.contact-card-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.contact-card-wa {
  background: linear-gradient(135deg, #128c4a, #075e34);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}

.contact-card-wa .contact-card-label,
.contact-card-wa .contact-card-hint {
  color: rgba(255,255,255,0.75);
}

.contact-card-wa .contact-card-value {
  color: var(--white);
}

.contact-card-info {
  cursor: default;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--gold-500);
}

.contact-card-wa .contact-card-icon {
  color: var(--white);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.contact-card-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.2;
}

.contact-card-hint {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: auto;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  filter: grayscale(20%);
  transition: filter var(--transition);
}

.map-wrap:hover iframe {
  filter: grayscale(0%);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-900);
  color: var(--gray-400);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-wrap img {
  width: 140px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-phone {
  display: inline-block;
  margin-top: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-500);
}

.footer-phone:hover {
  color: var(--gold-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-slogan {
  color: var(--gold-500);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---- Mobile Dock ---- */
.mobile-dock {
  display: none;
}

@media (max-width: 768px) {
  .mobile-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0));
    gap: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(10, 22, 40, 0.08);
    box-shadow: 0 -8px 32px rgba(10, 22, 40, 0.1);
  }

  .dock-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: transform 0.15s ease;
  }

  .dock-btn:active {
    transform: scale(0.96);
  }

  .dock-btn svg {
    width: 22px;
    height: 22px;
  }

  .dock-call {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    box-shadow: 0 4px 16px var(--gold-glow);
  }

  .dock-wa {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  }

  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0));
  }

  .footer {
    padding-bottom: 16px;
  }
}

/* ---- Reveal Animations ---- */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .credentials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-bento { grid-template-columns: repeat(2, 1fr); }
  .contact-card-primary { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .process-timeline::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }

  html { font-size: 15px; }

  .nav-logo-wrap img { width: 130px; }
  .nav-logo-wrap { padding: 6px 12px; }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px 20px calc(100px + env(safe-area-inset-bottom, 0));
    gap: 4px;
    transform: translateX(100%);
    opacity: 1;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    overflow-y: auto;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    color: var(--text);
    width: 100%;
    padding: 16px 18px;
    font-size: 1.05rem;
    border-radius: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
  }

  .nav-link.active,
  .nav-link:hover {
    background: var(--off-white);
    color: var(--navy-800);
  }

  .nav-toggle { display: flex; min-width: 48px; min-height: 48px; align-items: center; justify-content: center; }
  .nav-cta { display: none; }
  .nav-menu-cta { display: block; }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 40px 0 80px;
    max-width: 100%;
    text-align: center;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }

  .hero-desc {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 54px;
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
  }

  .hero-trust-item {
    flex: 1 1 28%;
    min-width: 90px;
  }

  .hero-trust-divider { display: none; }

  .hero-scroll { display: none; }

  .hero-canvas { opacity: 0.6; }

  .credentials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .credential-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .credential-icon { margin-bottom: 4px; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-main img { height: 320px; }
  .about-img-float { right: 12px; bottom: -16px; }
  .about-badge { left: 12px; top: 12px; }

  .services-scroll-wrap {
    margin: 0 -3vw;
    padding: 0 3vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .services-scroll-wrap::-webkit-scrollbar { display: none; }

  .services-grid {
    display: flex;
    gap: 14px;
    width: max-content;
    padding-bottom: 8px;
  }

  .service-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: center;
    padding: 28px 22px;
  }

  .process-timeline { grid-template-columns: 1fr; gap: 24px; }

  .process-step {
    display: flex;
    text-align: left;
    gap: 20px;
    align-items: flex-start;
  }

  .process-num {
    width: 56px;
    height: 56px;
    min-width: 56px;
    margin: 0;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px var(--off-white);
  }

  .gallery-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    margin: 0 -3vw;
    padding: 0 3vw 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 85vw;
    max-width: 360px;
    scroll-snap-align: center;
  }

  .gallery-item-large { grid-row: auto; }
  .gallery-item img { min-height: 260px; }
  .gallery-item-large img { min-height: 260px; }

  .gallery-item figcaption {
    transform: translateY(0);
    padding: 16px 18px;
    font-size: 0.88rem;
  }

  .contact-bento {
    grid-template-columns: 1fr;
  }

  .contact-card-primary { grid-column: span 1; }

  .contact-card {
    min-height: auto;
    padding: 24px 20px;
    min-height: 130px;
  }

  .map-wrap iframe { height: 280px; }

  .section { padding: 64px 0; }
  .section-compact { padding: 36px 0; }

  .section-header.center { margin-bottom: 40px; }

  .btn {
    min-height: 50px;
    padding: 14px 24px;
  }

  .cta-banner { padding: 56px 0; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding-bottom: 8px; }

  .trust-marquee-track span { font-size: 0.7rem; }
}

@media (max-width: 480px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .hero-trust-item { flex: 1 1 40%; }
  .credential-card { flex-direction: row; text-align: left; align-items: flex-start; }
}
