/* =============================================
   SonYapı Cam Balkon — Global Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --navy-deep:    #080808;
  --navy-mid:     #111111;
  --navy-light:   #1c1c1c;
  --navy-accent:  #b8962e;
  --ice-white:    #f5ede0;
  --silver:       #d4b96a;
  --silver-dim:   #9a8254;
  --blue-glow:    #c9a84c;
  --blue-bright:  #d4a843;
  --glass-bg:     rgba(212,168,67,0.07);
  --glass-border: rgba(212,168,67,0.18);
  --glass-hover:  rgba(212,168,67,0.13);
  --whatsapp:     #25d366;
  --gradient-hero: linear-gradient(135deg, #080808 0%, #111111 50%, #0d0d0d 100%);
  --font-main:    'Montserrat', sans-serif;
  --font-body:    'Poppins', sans-serif;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy-deep);
  color: var(--ice-white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ── Scrollbar ───────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--navy-accent); border-radius: 3px; }

/* ── Selection ───────────────────────────────── */
::selection { background: var(--blue-glow); color: #fff; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(3, 13, 31, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--glass-border), 0 8px 32px rgba(0,0,0,0.4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 16px rgba(201,168,76,0.5);
}

.nav-logo-text {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ice-white);
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--silver-dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.nav-links a {
  display: block;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--silver);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: var(--glass-bg);
}

.nav-cta {
  padding: 0.5rem 1.25rem !important;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright)) !important;
  color: #fff !important;
  border-radius: 50px !important;
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  transition: box-shadow var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  box-shadow: 0 0 32px rgba(201,168,76,0.7) !important;
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright)) !important;
}

/* Hamburger */
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ice-white);
  border-radius: 2px;
  transition: var(--transition);
}

#hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.open span:nth-child(2) { opacity: 0; }
#hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed;
  top: 72px; left: 0; right: 0;
  z-index: 999;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--glass-border);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  pointer-events: none;
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

#mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

#mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--silver);
  border: 1px solid transparent;
  transition: var(--transition);
}

#mobile-menu a:hover {
  color: #fff;
  border-color: var(--glass-border);
  background: var(--glass-bg);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 40%, transparent 100%);
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1d4ed8, transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 12s ease-in-out infinite;
}

.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #0ea5e9, transparent 70%);
  bottom: 100px; left: -80px;
  animation: floatOrb 16s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: floatOrb 10s ease-in-out infinite 3s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,20px) scale(0.97); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.75rem;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ice-white);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title .accent {
  background: linear-gradient(90deg, var(--blue-bright), #60a5fa, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .line-glass {
  display: block;
  position: relative;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--silver-dim);
  max-width: 560px;
  font-weight: 400;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-main);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--silver-dim);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.hero-stat-divider {
  width: 1px;
  background: var(--glass-border);
  align-self: stretch;
}

/* Floating glass card in hero */
.hero-glass-card {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: min(380px, 40vw);
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
  animation: fadeInRight 1s ease 0.3s both, floatCard 6s ease-in-out 1.3s infinite;
  z-index: 2;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 12px)); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateY(-50%) translateX(40px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}

.hero-card-title {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}

.hero-card-services {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.hero-card-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ice-white);
  transition: var(--transition);
}

.hero-card-service:hover {
  background: rgba(201,168,76,0.15);
  border-color: rgba(212,168,67,0.3);
}

.hero-card-service-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  background: rgba(234,179,8,0.1);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: 12px;
}

.hero-card-stars { color: #fbbf24; font-size: 0.9rem; }
.hero-card-rating-text { font-size: 0.8rem; font-weight: 600; color: var(--ice-white); }
.hero-card-rating-sub { font-size: 0.7rem; color: var(--silver-dim); }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-glow) 0%, var(--blue-bright) 100%);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4), 0 0 0 0 rgba(201,168,76,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201,168,76,0.55), 0 0 0 4px rgba(201,168,76,0.1);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--ice-white);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-1px);
  color: #fff;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ice-white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--silver-dim);
  max-width: 520px;
  line-height: 1.7;
}

.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* =============================================
   GLASS CARDS
   ============================================= */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-radius: 20px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(212,168,67,0.1));
  border: 1px solid rgba(201,168,76,0.25);
}

.service-title {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ice-white);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--silver-dim);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-bright);
  text-decoration: none;
  transition: gap var(--transition);
}

.service-link:hover { gap: 10px; }

/* =============================================
   WHY US / FEATURES
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(212,168,67,0.1));
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ice-white);
  margin-bottom: 0.4rem;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

/* =============================================
   TRUST BAR / STATS
   ============================================= */
.trust-bar {
  padding: 3rem 0;
  background: rgba(255,255,255,0.025);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.trust-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--glass-border);
}

.trust-num {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--blue-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--silver-dim);
  margin-top: 6px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-bright);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
}

.testimonial-name {
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ice-white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--silver-dim);
}

.testimonial-stars {
  margin-left: auto;
  color: #fbbf24;
  font-size: 0.8rem;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0.08) 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

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

.cta-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ice-white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--silver-dim);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ice-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.cta-phone:hover { color: var(--blue-bright); }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--silver-dim);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice-white);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--silver-dim);
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  margin-top: 2px;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--silver-dim);
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--silver-dim);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--ice-white); }

/* =============================================
   WHATSAPP BUTTON
   ============================================= */
#whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}

#whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}

#whatsapp-tooltip {
  position: fixed;
  bottom: 2.75rem;
  right: 5rem;
  z-index: 9998;
  background: var(--navy-mid);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ice-white);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

#whatsapp-btn:hover ~ #whatsapp-tooltip,
#whatsapp-tooltip.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--blue-bright); }
  50%       { opacity: 0.5; box-shadow: 0 0 3px var(--blue-bright); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 10rem 0 5rem;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ice-white);
  line-height: 1.1;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--silver-dim);
  margin-top: 1rem;
  max-width: 500px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--silver-dim);
}

.breadcrumb a { color: var(--silver-dim); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue-bright); }
.breadcrumb span { color: var(--blue-bright); }

/* =============================================
   DIVIDER
   ============================================= */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 1rem 0;
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem;
  align-items: flex-start;
  counter-increment: step;
}

.step-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-glow), var(--blue-bright));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}

.step-content h4 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ice-white);
  margin-bottom: 0.4rem;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--silver-dim);
  line-height: 1.65;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--ice-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--silver-dim); opacity: 0.6; }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(212,168,67,0.5);
  background: rgba(212,168,67,0.06);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.12);
}

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

.form-select option { background: var(--navy-mid); }

/* =============================================
   RESPONSIVE — MOBILE-FIRST
   =============================================

   Base styles (above) already target mobile.
   We progressively enhance for larger screens.
   ============================================= */

/* ── Global overflow fix ─────────────────────── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* { box-sizing: border-box; }

/* ── Container: mobile default ───────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

/* ── Section padding: mobile default ─────────── */
.section {
  padding: 3rem 0;
  position: relative;
}

/* ── Navbar: mobile ─────────────────────────── */
#navbar {
  padding: 0 1.25rem;
  height: 64px;
}

.nav-links { display: none; }

#hamburger { display: flex; }

/* ── Mobile menu: full-width ─────────────────── */
#mobile-menu {
  top: 64px;
  padding: 1.25rem;
}

#mobile-menu a {
  padding: 0.85rem 1rem;
  font-size: 1rem;
}

/* ── Hero: mobile ───────────────────────────── */
.hero {
  padding: 5.5rem 0 3rem;
  min-height: unset;
}

.hero-content {
  max-width: 100%;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 5rem);
}

.hero-badge {
  font-size: 0.65rem;
  padding: 0.35rem 0.85rem;
}

.hero-subtitle {
  font-size: 0.93rem;
}

.hero-actions {
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hero-stats {
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 1.35rem;
}

.hero-glass-card {
  display: none;
}

/* ── Trust bar: mobile ───────────────────────── */
.trust-bar {
  padding: 2rem 0;
}

.trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.trust-item::after {
  display: none;
}

.trust-item {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
}

.trust-item:nth-child(odd) {
  border-right: 1px solid var(--glass-border);
}

.trust-num {
  font-size: 1.6rem;
}

/* ── Services grid: mobile single col ────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-card {
  padding: 1.5rem;
}

/* ── Features grid: mobile single col ────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.feature-card {
  padding: 1.25rem;
}

/* ── Testimonials: mobile single col ─────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimonial-card {
  padding: 1.5rem;
}

/* ── Steps list: mobile ──────────────────────── */
.step-item {
  padding: 1.25rem;
  gap: 1rem;
}

.step-num {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

/* ── Section header: mobile ──────────────────── */
.section-title {
  font-size: clamp(1.6rem, 6vw, 3rem);
}

.section-subtitle {
  font-size: 0.9rem;
}

/* ── Page hero: mobile ───────────────────────── */
.page-hero {
  padding: 7rem 0 3rem;
}

.page-hero-title {
  font-size: clamp(1.8rem, 7vw, 3.5rem);
}

.page-hero-sub {
  font-size: 0.9rem;
}

/* ── CTA section: mobile ─────────────────────── */
.cta-section {
  padding: 3.5rem 0;
}

.cta-title {
  font-size: clamp(1.5rem, 6vw, 2.8rem);
}

.cta-phone {
  font-size: 1.2rem;
}

/* ── Footer: mobile single col ───────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

.footer-brand p {
  max-width: 100%;
}

.footer-bottom {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.footer-bottom-links {
  justify-content: center;
}

/* ── Buttons: mobile ─────────────────────────── */
.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.5rem;
  font-size: 0.83rem;
}

/* ── WhatsApp button: mobile optimised ───────── */
#whatsapp-btn {
  bottom: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
}

#whatsapp-tooltip {
  bottom: 1.75rem;
  right: 4.5rem;
  font-size: 0.72rem;
  padding: 0.4rem 0.85rem;
}

/* ── Form grid: mobile single col ────────────── */
.form-two-col {
  grid-template-columns: 1fr !important;
}

/* ── Glass card: ensure no overflow ─────────── */
.glass-card {
  max-width: 100%;
  overflow: hidden;
}

/* ===================================================
   TABLET — md breakpoint (min-width: 640px)
   =================================================== */
@media (min-width: 640px) {
  .container {
    padding: 0 1.75rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding: 6.5rem 0 4rem;
  }

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

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

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

  .trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .trust-item {
    flex: 1;
    min-width: 130px;
    border-bottom: none;
    border-right: none;
  }

  .trust-item:not(:last-child)::after {
    display: block;
  }
}

/* ===================================================
   DESKTOP — lg breakpoint (min-width: 1024px)
   =================================================== */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 6rem 0;
  }

  #navbar {
    padding: 0 2rem;
    height: 72px;
  }

  .nav-links {
    display: flex;
  }

  #hamburger {
    display: none;
  }

  .hero {
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
  }

  .hero-glass-card {
    display: block;
  }

  .hero-content {
    max-width: 800px;
  }

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

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  #whatsapp-btn {
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  #whatsapp-tooltip {
    bottom: 2.75rem;
    right: 5rem;
  }

  .page-hero {
    padding: 10rem 0 5rem;
  }

  .cta-section {
    padding: 6rem 0;
  }
}


/* =============================================
   LAYOUT HELPERS Mobile-First Grid Classes
   ============================================= */

.layout-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.layout-2col--top { align-items: start; }
.layout-2col--wide { align-items: start; }

.mobile-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.mobile-grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .mobile-grid-2col { grid-template-columns: 1fr 1fr; }
  .mobile-grid-3col { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .layout-2col { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .layout-2col--wide { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
  .mobile-grid-3col { grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
}

img, svg, iframe { max-width: 100%; }

@media (max-width: 639px) {
  .form-input, .form-textarea, .form-select { font-size: 1rem; }
  .cta-content { padding: 0 0.5rem; }
  .breadcrumb { font-size: 0.72rem; }
  .footer-contact-item { font-size: 0.8rem; }
  .steps-list { gap: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { text-align: center; justify-content: center; }
}

@media (max-width: 380px) {
  .hero-stat-divider { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 0.75rem; }
  .hero-stat { min-width: 70px; }
  .nav-logo-text { font-size: 0.95rem; }
}


/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 639px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.gallery-item:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 20px 50px rgba(0,0,0,0.45); }
.gallery-item img { width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.3) 55%, transparent 100%);
  display: flex;flex-direction: column;justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
@media (hover: none) { .gallery-overlay { opacity:1; background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.15) 60%, transparent 100%); } }
.gallery-tag {
  display:inline-flex;align-items:center;gap:6px;
  padding:0.3rem 0.75rem;border-radius:50px;
  background:rgba(201,168,76,0.85);border:1px solid rgba(212,168,67,0.5);
  backdrop-filter:blur(8px);font-family:var(--font-main);
  font-size:0.72rem;font-weight:700;color:#fff;letter-spacing:0.05em;
  margin-bottom:0.5rem;width:fit-content;
}
.gallery-desc { font-size:0.82rem;color:rgba(240,246,255,0.9);line-height:1.5;font-weight:500; }

/* SERVICE PHOTO STACK */
.service-photo-stack { position:relative;width:100%;padding-bottom:1.5rem; }
.service-photo-main { width:100%;border-radius:20px;overflow:hidden;aspect-ratio:4/3;position:relative;box-shadow:0 16px 48px rgba(0,0,0,0.4);padding:0 !important; }
.service-photo-main img { width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.5s ease; }
.service-photo-main:hover img { transform:scale(1.04); }
.service-photo-badge {
  position:absolute;bottom:1rem;left:1rem;
  padding:0.4rem 0.9rem;border-radius:50px;
  background:rgba(8,8,8,0.88);backdrop-filter:blur(12px);
  border:1px solid rgba(212,168,67,0.4);
  font-family:var(--font-main);font-size:0.72rem;font-weight:700;color:#4ade80;letter-spacing:0.04em;
}
.service-photo-thumb {
  position:absolute;bottom:-1rem;right:-0.75rem;width:42%;
  border-radius:14px;overflow:hidden;aspect-ratio:4/3;
  border:3px solid rgba(8,8,8,0.9) !important;
  box-shadow:0 8px 24px rgba(0,0,0,0.5);padding:0 !important;
}
@media (max-width: 639px) { .service-photo-thumb { display:none; } }
.service-photo-thumb img { width:100%;height:100%;object-fit:cover;display:block; }
.service-photo-thumb-label {
  position:absolute;bottom:0;left:0;right:0;
  padding:0.35rem 0.6rem;background:rgba(8,8,8,0.85);backdrop-filter:blur(8px);
  font-family:var(--font-main);font-size:0.65rem;font-weight:700;color:var(--silver);text-align:center;
}

.yapilan-label{font-family:var(--font-main);font-size:0.72rem;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;color:var(--blue-bright);margin-bottom:1rem;}
.mini-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:0.6rem;margin-bottom:0.5rem;}
@media(max-width:1023px){.mini-gallery{grid-template-columns:repeat(3,1fr);}}
@media(max-width:639px){.mini-gallery{grid-template-columns:repeat(2,1fr);gap:0.4rem;}}
.mini-gallery-item{aspect-ratio:4/3;border-radius:10px;overflow:hidden;cursor:pointer;transition:transform 0.3s ease,box-shadow 0.3s ease;box-shadow:0 4px 16px rgba(0,0,0,0.25);}
.mini-gallery-item:hover{transform:scale(1.04);box-shadow:0 8px 28px rgba(0,0,0,0.4);z-index:2;position:relative;}
.mini-gallery-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform 0.4s ease;}
.mini-gallery-item:hover img{transform:scale(1.08);}
