/* ============================================
   KULU ILETISIM - ANA STIL DOSYASI
   css/style.css
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --gold-dark: #B8963E;
  --gold-glow: rgba(201,168,76,0.15);
  --white: #FFFFFF;
  --cream: #FAF8F5;
  --light-gray: #F5F3EF;
  --text-dark: #1A1A1A;
  --text-gray: #666666;
  --text-light: #999999;
  --border: #E8E4DC;
  --success: #22c55e;
  --success-bg: #dcfce7;
  --error: #ef4444;
  --error-bg: #fee2e2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

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

a { text-decoration: none; color: inherit; }

button { font-family: 'Poppins', sans-serif; cursor: pointer; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ========== HEADER / NAV ========== */
header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

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

.logo-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-text h1 {
  font-size: 32px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin: 0;
}

.logo-text .tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Desktop Nav */
.desktop-nav { 
  display: flex; 
  gap: 8px; 
  align-items: center;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 20px;
  transition: all 0.3s;
  border-radius: 30px;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 20px; right: 20px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 1px;
}

.desktop-nav a:hover { 
  color: var(--gold); 
  background: rgba(201,168,76,0.05);
}

.desktop-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}

.phone-link:hover { color: var(--gold); }

.phone-link i { color: var(--gold); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(201,168,76,0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

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

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--border);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-large {
  font-size: 16px;
  padding: 16px 40px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 360px;
  height: 100vh;
  background: white;
  z-index: 1001;
  padding: 100px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-nav.active { right: 0; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active { opacity: 1; pointer-events: all; }

.mobile-nav a {
  display: block;
  padding: 16px 0;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a i { color: var(--gold); margin-right: 12px; width: 24px; }

.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--text-dark);
}

/* Mobil Menu Telefonlar */
.mobile-nav-phones {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border);
}

.mobile-phone-item {
  display: block;
  padding: 16px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s;
}

.mobile-phone-item:hover {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-color: var(--gold);
  transform: translateX(4px);
}

.mobile-phone-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.mobile-phone-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}

/* ========== HERO ========== */
.hero {
  margin-top: 90px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--light-gray) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h2 {
  font-size: 56px;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero h2 span { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
  border-radius: 40px;
  position: relative;
  box-shadow: 
    0 50px 100px rgba(0,0,0,0.3),
    inset 0 2px 10px rgba(255,255,255,0.1);
  border: 4px solid var(--gold);
  overflow: hidden;
}

.hero-phone::before {
  content: '';
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 28px;
  background: #1a1a1a;
  border-radius: 14px;
}

.hero-phone-screen {
  position: absolute;
  top: 60px; left: 20px; right: 20px; bottom: 20px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-phone-screen i {
  font-size: 64px;
  color: white;
  opacity: 0.9;
}

.hero-phone-screen span {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: white;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.floating-card h4 { font-size: 14px; font-weight: 600; }
.floating-card p { font-size: 12px; color: var(--text-light); margin: 0; }

.card-1 { top: 10%; left: -10%; animation-delay: 0s; }
.card-2 { bottom: 20%; right: -5%; animation-delay: 1s; }
.card-3 { top: 50%; left: -5%; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========== SECTIONS ========== */
section { padding: 100px 24px; }

.section-inner { max-width: 1400px; margin: 0 auto; }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-header h2 span { color: var(--gold); }

.section-header p { color: var(--text-gray); font-size: 16px; }

.section-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border-color: transparent;
}

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--gold);
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

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

/* ========== BRANDS ========== */
.brands-section { background: var(--cream); }

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}

.brand-item {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.brand-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.brand-item i {
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: block;
}

.brand-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.why-icon {
  width: 56px; height: 56px;
  min-width: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.why-content h3 { font-size: 18px; margin-bottom: 8px; }

.why-content p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ========== CONTACT ========== */
.contact-section { background: linear-gradient(180deg, var(--cream), var(--white)); }

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

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-gray);
  margin-bottom: 40px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(8px);
}

.contact-card-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
}

.contact-card-content h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card-content p,
.contact-card-content a {
  font-size: 14px;
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-card-content a:hover { color: var(--gold); }

/* KARGO BADGE */
.kargo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  padding: 16px 28px;
  border-radius: 16px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  flex-wrap: wrap;
}

.kargo-badge i { font-size: 20px; }

.kargo-copy-btn {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}

.kargo-copy-btn:hover {
  background: rgba(255,255,255,0.3);
}

.kargo-copy-btn.copied {
  background: var(--success);
  border-color: var(--success);
}

/* Social Buttons */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: white;
  transition: all 0.3s;
}

.social-btn:hover { transform: translateY(-3px); }

.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.facebook { background: #1877F2; }
.social-btn.tiktok { background: #000000; }

/* Contact Form */
.contact-form {
  background: white;
  padding: 48px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-form > p {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: all 0.3s;
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

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

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

/* Form Success Message */
.form-success {
  display: none;
  background: var(--success-bg);
  border: 2px solid var(--success);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.form-success i {
  font-size: 48px;
  color: var(--success);
  margin-bottom: 12px;
}

.form-success h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-gray);
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--text-dark), #2a2a2a);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }

.cta-banner h2 {
  font-size: 42px;
  color: white;
  margin-bottom: 16px;
}

.cta-banner h2 span { color: var(--gold); }

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}

.footer-main {
  padding: 80px 24px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand { position: relative; }

.footer-brand .logo-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-brand .logo-icon-footer {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
}

.footer-brand h3 {
  font-size: 28px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.footer-brand .footer-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-brand .kargo-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--gold-light);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-brand .kargo-inline i { color: var(--gold); }

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

.footer-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.footer-social a.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border: none; }
.footer-social a.facebook { background: #1877F2; border: none; }
.footer-social a.tiktok { background: #000000; border: 1px solid rgba(255,255,255,0.2); }

.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold);
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.footer-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 14px;
  transition: all 0.3s;
  padding: 4px 0;
}

.footer-col a::before {
  content: '';
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 1px;
}

.footer-col a:hover { 
  color: var(--gold); 
  padding-left: 8px;
}

.footer-col a:hover::before {
  width: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}

.footer-contact-item:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.2);
}

.footer-contact-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

.footer-contact-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.footer-contact-info p,
.footer-contact-info a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s;
  line-height: 1.5;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 30px 24px;
}

.footer-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-bottom .copyright-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-bottom .sep {
  color: rgba(255,255,255,0.2);
}

.footer-bottom .designer-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s;
  border-bottom: 1px solid transparent;
}

.footer-bottom .designer-link:hover {
  opacity: 0.8;
  border-bottom-color: var(--gold);
}

.footer-bottom .premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-image { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav, .header-cta .phone-link { display: none; }
  .mobile-toggle { display: block; }
  .header-inner { height: 80px; }
  .hero { margin-top: 80px; min-height: auto; }
  .hero h2 { font-size: 36px; }
  .hero p { font-size: 16px; }
  section { padding: 60px 20px; }
  .section-header h2 { font-size: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .logo-text h1 { font-size: 26px; }
  .logo-icon { width: 50px; height: 50px; font-size: 22px; }
  .kargo-badge { flex-wrap: wrap; gap: 8px; }
}

@media (max-width: 480px) {
  .hero h2 { font-size: 28px; }
  .section-header h2 { font-size: 24px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .logo-text h1 { font-size: 22px; }
  .logo-text .tagline { font-size: 10px; }
  .mobile-nav { width: 85%; padding: 90px 20px 20px; }
  .mobile-phone-number { font-size: 16px; }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
