/* =========================================
   İnci Gurme - Kurumsal Web Sitesi CSS
   ========================================= */

:root {
  --navy: #0D1B2A;
  --navy-mid: #162535;
  --navy-light: #1E3A5F;
  --gold: #C9A227;
  --gold-light: #E8C96E;
  --gold-dark: #A07D10;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --gray-light: #F0EDE8;
  --gray: #9E9E9E;
  --text: #1A1A2E;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(201,162,39,0.25);
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

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

html, body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
}

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

/* ── UTILITIES ── */
.container { 
  max-width: 1280px; 
  margin: 0 auto; 
  padding: 0 24px; 
  width: 100%;
}
#hero > .container { width: 100%; }
.section-pad { padding: 100px 0; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 12px;
  font-weight: 400;
  line-height: 1.7;
}

.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px auto;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(201,162,39,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-3px);
  background: var(--off-white);
}

/* ── HEADER / NAV ── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: var(--transition);
}

#header.scrolled {
  background: rgba(13,27,42,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  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); }

/* ── HERO ── */
#hero {
  height: 100vh;
  min-height: 600px;
  max-height: 1080px;
  padding-top: 80px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,162,39,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(30,58,95,0.8) 0%, transparent 70%),
    linear-gradient(135deg, #0D1B2A 0%, #162535 50%, #0A1520 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle linear infinite;
  will-change: transform, opacity;
  transform: translateZ(0);
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding: 24px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(201,162,39,0.2);
}

.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: default;
  will-change: transform, backdrop-filter;
  transform: translateZ(0);
}
.hero-card:hover {
  background: rgba(201,162,39,0.08);
  border-color: rgba(201,162,39,0.4);
  transform: translateX(6px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}

.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card-icon.ice { background: linear-gradient(135deg, #4FC3F7, #0288D1); }
.hero-card-icon.halva { background: linear-gradient(135deg, #FFCC80, #F57C00); }
.hero-card-icon.baklava { background: linear-gradient(135deg, #CE93D8, #7B1FA2); }

.hero-card h3 {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 700;
}
.hero-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* ── MARQUEE ── */
.marquee-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 18px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.marquee-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
}

/* ── BRANDS ── */
#markalar {
  background: var(--off-white);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.brand-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transition: var(--transition);
}
.brand-card.ice::before { background: linear-gradient(90deg, #4FC3F7, #0288D1); }
.brand-card.halva::before { background: linear-gradient(90deg, #FFCC80, #F57C00); }
.brand-card.baklava::before { background: linear-gradient(90deg, #CE93D8, #7B1FA2); }

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

@media (hover: none) {
  .brand-card:hover {
    transform: none;
  }
}

.brand-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.brand-image.ice-bg {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
}
.brand-image.halva-bg {
  background: linear-gradient(135deg, #FFF8E1, #FFECB3);
}
.brand-image.baklava-bg {
  background: linear-gradient(135deg, #F3E5F5, #E1BEE7);
}

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

.brand-body { padding: 28px; }

.brand-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.brand-tag.ice { background: #E3F2FD; color: #0288D1; }
.brand-tag.halva { background: #FFF8E1; color: #E65100; }
.brand-tag.baklava { background: #F3E5F5; color: #7B1FA2; }

.brand-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}

.brand-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.brand-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.brand-features li {
  font-size: 0.83rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── ABOUT ── */
#hakkimizda {
  background: var(--white);
}

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

.about-image-wrap {
  position: relative;
}

.about-main-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.about-main-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 4rem;
  gap: 16px;
}

.about-image-placeholder span {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 20px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge-float .big-num {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.about-badge-float .small-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-text { }

.about-text .section-title { text-align: left; }
.about-text .gold-line { margin: 20px 0; }
.about-text .section-subtitle { text-align: left; }

.about-desc {
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 20px 0;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.value-item {
  background: var(--off-white);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--gold);
}

.value-item .v-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.value-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ── OWNER SECTION ── */
#kurucu {
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A5F 100%);
  position: relative;
  overflow: hidden;
}

#kurucu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,162,39,0.1) 0%, transparent 60%);
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.owner-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.owner-card:hover {
  transform: translateY(-12px);
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.owner-card-photo {
  display: flex;
  justify-content: center;
}

.owner-photo-wrap {
  position: relative;
  width: fit-content;
}

.owner-photo-frame {
  width: 220px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(201,162,39,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  position: relative;
}

.owner-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.owner-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #162535 0%, #1E3A5F 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.owner-photo-placeholder .avatar-icon {
  font-size: 6rem;
  opacity: 0.6;
}

.owner-photo-placeholder .avatar-text {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 12px;
  text-align: center;
}

.owner-gold-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  opacity: 0.9;
}

.owner-card-info .owner-role {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.owner-card-info h2 {
  font-size: 2rem;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
}

.owner-quote {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 10px;
}

  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.owner-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.owner-info .gold-line { margin: 0 0 24px; }

.owner-quote {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 32px;
}

.owner-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.owner-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.owner-detail-item .detail-icon {
  width: 40px; height: 40px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── GALLERY ── */
#galeri {
  background: var(--navy);
}

#galeri .section-title,
#galeri .section-subtitle { color: var(--white); }
#galeri .section-subtitle { color: rgba(255,255,255,0.5); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 60px;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.gallery-placeholder {
  width: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.gallery-placeholder.span2 { min-height: 280px; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,27,42,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

@media (hover: none) {
  .gallery-item-overlay {
    opacity: 1;
    background: linear-gradient(0deg, rgba(13,27,42,0.6) 0%, transparent 100%);
  }
}

#galeri {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.gallery-overlay-text {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── STATS ── */
#istatistikler {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  color: var(--white);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  opacity: 0.9;
}

.stat-num {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}

/* ── BAYILIK ── */
#bayilik {
  background: var(--off-white);
}

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

.bayilik-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.bayilik-info .gold-line { margin: 16px 0; }

.bayilik-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.bayilik-advantages {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}

.advantage-item:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201,162,39,0.15);
}

.adv-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a !important;
  margin-bottom: 6px;
  display: block !important;
}

.advantage-content p {
  font-size: 0.9rem;
  color: #444 !important;
  line-height: 1.6;
  margin: 0;
  display: block !important;
}

/* ── FORM ── */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

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

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.3px;
}

.form-group label .required { color: var(--gold); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 2px solid #E8E5DF;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.1);
}

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

.kvkk-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FFF8E6;
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 16px;
}

.kvkk-row input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.kvkk-row label {
  font-size: 0.8rem;
  color: var(--text);
  line-height: 1.6;
  cursor: pointer;
}

.kvkk-row label a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
}
.kvkk-row label a:hover { text-decoration: underline; }

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* ── MAP ── */
#konum {
  background: var(--white);
}

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.map-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.map-info .gold-line { margin: 16px 0; }

.contact-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cd-icon {
  width: 46px; height: 46px;
  background: var(--off-white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold);
}

.cd-content { }
.cd-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 3px;
}
.cd-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
}
.cd-value a {
  color: var(--navy);
  text-decoration: none;
}
.cd-value a:hover { color: var(--gold); }

.map-embed {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 80px 0 0;
  border-top: 1px solid rgba(201,162,39,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0;
  width: 30px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}
.footer-links li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item .fc-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--gold); }

/* ── FIXED BUTTONS ── */
.fixed-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.fixed-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
  position: relative;
}
.fixed-btn:hover {
  transform: scale(1.12);
}

.fixed-btn.whatsapp {
  background: #25D366;
  color: var(--white);
  animation: pulse-green 2.5s infinite;
}

.fixed-btn.phone {
  background: var(--gold);
  color: var(--white);
  animation: pulse-gold 2.5s infinite 0.8s;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.3); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.6); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 6px 24px rgba(201,162,39,0.3); }
  50% { box-shadow: 0 6px 36px rgba(201,162,39,0.6); }
}

.fixed-btn-tooltip {
  position: absolute;
  right: 72px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.fixed-btn:hover .fixed-btn-tooltip { opacity: 1; }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 48px; height: 48px;
  background: var(--navy);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  font-size: 1.2rem;
  text-decoration: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  border-top: 2px solid rgba(201,162,39,0.3);
  padding: 20px;
  z-index: 10000;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#cookieBanner.show { display: flex; }

#cookieBanner p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}
#cookieBanner a { color: var(--gold); text-decoration: none; }

.cookie-buttons { display: flex; gap: 10px; }

.cookie-accept {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--gold-dark); }

.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}
.cookie-reject:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }

/* ── LEGAL PAGES ── */
.legal-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 60px;
  text-align: center;
}

.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}

.legal-hero p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
  border-left: 4px solid var(--gold);
  padding-left: 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 10px;
}

.legal-content p {
  color: #444;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.legal-content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: #444;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legal-content table th,
.legal-content table td {
  border: 1px solid #DDD;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
}

.legal-content table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
}

.legal-content table tr:nth-child(even) {
  background: var(--off-white);
}

/* ── ANIMATE ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(13,27,42,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.mobile-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a:hover::after { left: 0; right: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .hero-content { gap: 40px; }
  .hero-title { font-size: clamp(2rem, 3.5vw, 3.5rem); }
}

@media (max-width: 1024px) {
  /* Hero: tek sütun, sol hizalı, tam ekran */
  #hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
    align-items: flex-start;
    padding-top: 80px;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px 0 36px;
    align-items: flex-start;
  }
  .hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .hero-card { padding: 14px 16px; }
  .hero-card-header { gap: 10px; margin-bottom: 0; }
  .hero-card h3 { font-size: 0.82rem; }
  .hero-card p { display: none; }

  .brands-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .owners-grid { grid-template-columns: 1fr; gap: 40px; }
  .owner-card { padding: 30px 20px; }
  .owner-photo-frame { width: 220px; height: 280px; }
  .owner-gold-accent { width: 50px; height: 50px; bottom: -8px; right: -8px; }
  .bayilik-grid { grid-template-columns: 1fr; gap: 40px; }
  .map-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .map-embed iframe { height: 320px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 70px; }
  .mobile-menu { top: 70px; }

  /* Hero tam ekran - tüm içerik görünür */
  #hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    padding-top: 90px;
    padding-bottom: 40px;
    display: flex;
    align-items: flex-start;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 0 20px;
  }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 14px; }
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
  }
  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { padding: 12px 22px; font-size: 0.88rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.75rem; letter-spacing: 0.5px; }
  .hero-visual {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    width: 100%;
  }
  .hero-card { padding: 12px 16px; border-radius: 12px; }
  .hero-card-header { gap: 12px; }
  .hero-card-icon { width: 40px; height: 40px; font-size: 1.2rem; border-radius: 10px; }
  .hero-card h3 { font-size: 0.9rem; line-height: 1.4; }
  .hero-card p { display: block; font-size: 0.75rem; opacity: 0.6; }

  .brands-grid { grid-template-columns: 1fr; }
  .about-badge-float { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .about-values { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 60px 0; }
  .contact-form-card { padding: 28px 20px; }
  .owner-card { padding: 24px 16px; }
  .owner-photo-frame { width: 200px; height: 250px; }
  .owner-gold-accent { width: 40px; height: 40px; bottom: -6px; right: -6px; }
  .map-embed iframe { height: 280px; }
  .marquee-section { padding: 12px 0; }
  .marquee-item { font-size: 0.85rem; }
  .cookie-buttons { width: 100%; }
  #cookieBanner { flex-direction: column; }
}

@media (max-width: 480px) {
  /* Hero küçük ekran */
  #hero {
    height: 100vh;
    height: 100dvh;
    min-height: 540px;
    padding-top: 70px;
  }
  .hero-content { padding: 12px 0 12px; }
  .hero-badge { display: none; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); margin-bottom: 10px; }
  .hero-desc { font-size: 0.85rem; margin-bottom: 16px; }
  .hero-buttons { gap: 8px; }
  .hero-buttons .btn { padding: 11px 18px; font-size: 0.85rem; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    padding-top: 16px;
    gap: 12px;
  }
  .hero-stat-num { font-size: 1.4rem; }
  .hero-stat-label { font-size: 0.65rem; }
  .hero-visual { gap: 10px; margin-top: 20px; }
  .hero-card { padding: 12px; }
  .hero-card-icon { width: 36px; height: 36px; font-size: 1rem; }
  .hero-card h3 { font-size: 0.85rem; }

  .fixed-buttons { bottom: 16px; right: 16px; gap: 10px; }
  .fixed-btn { width: 50px; height: 50px; font-size: 1.25rem; }
  .contact-form-card { padding: 20px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }

/* ── OVERFLOW PROTECTION ── */
section, footer, header {
  touch-action: pan-y;
  position: relative;
}

.marquee-section {
  overflow: hidden;
  width: 100%;
}

/* Ensure smooth touch scrolling */
html, body {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

  .stat-card { padding: 0 8px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .bayilik-info h2 { font-size: 1.5rem; }
  .advantage-item { padding: 12px; }
  .footer-bottom p { font-size: 0.76rem; }
  .logo-main { font-size: 1.05rem; }
  .logo-sub { font-size: 0.58rem; }
  .container { padding: 0 14px; }
  #backToTop { bottom: 16px; left: 16px; width: 40px; height: 40px; }
  .section-pad { padding: 50px 0; }
  .btn { padding: 12px 22px; font-size: 0.88rem; }
}

/* Çok küçük ekranlar (360px altı) */
@media (max-width: 360px) {
  .hero-title { font-size: 1.6rem; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-stat-num { font-size: 1.1rem; }
}

.footer-contact-item a[href*="instagram"]:hover {
  color: #e6683c !important;
  transform: translateX(5px);
  display: inline-block;
}

.footer-contact-item .fa-instagram {
  color: #cc2366;
}

/* ── INSTAGRAM CTA ── */
.instagram-cta-wrap {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.btn-instagram {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(220, 39, 67, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn-instagram i {
  font-size: 1.6rem;
  transition: transform 0.4s ease;
}

.btn-instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.btn-instagram:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(220, 39, 67, 0.5);
  color: var(--white);
}

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

.btn-instagram:hover i {
  transform: rotate(15deg) scale(1.1);
}

@media (max-width: 768px) {
  .btn-instagram {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}
