/* Import Premium Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #121212;
  --bg-secondary: #1a1a1a;
  --bg-card: rgba(30, 30, 30, 0.65);
  --bg-input: #242424;
  
  --color-gold: #d4af37;
  --color-gold-light: #f5d76e;
  --color-gold-dark: #aa7c11;
  --gold-gradient: linear-gradient(135deg, #ab873c 0%, #f5d76e 50%, #d4af37 100%);
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.35);
  
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #6e6e6e;
  
  --color-success: #2ecc71;
  --color-danger: #e74c3c;
  --color-warning: #f1c40f;
  
  /* Borders & Shadows */
  --border-color: rgba(212, 175, 55, 0.15);
  --border-focus: rgba(212, 175, 55, 0.5);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.7);
  
  /* Font Families */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Luxury Logistics Background Image Overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/body_premium_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -2;
  opacity: 0.35; /* Adjusted opacity to make the premium line-pattern background clearly visible while keeping text readable */
  pointer-events: none;
}

/* Tech Grid repeating background */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.5em;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.25;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

h2.center::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.35;
}

p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.text-gold {
  color: var(--color-gold);
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-secondary);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(18, 18, 18, 0.98) 100%);
  position: relative;
}

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

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

@media (max-width: 992px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all var(--transition-fast);
}

header.scrolled {
  padding: 8px 0;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--border-color);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: height var(--transition-fast);
}

header.scrolled .nav-container {
  height: 65px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.logo-img {
  width: 45px;
  height: 45px;
  transition: transform var(--transition-normal);
}

.logo:hover .logo-img {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-text .brand-sub {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  color: var(--text-secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.btn-nav {
  padding: 10px 24px;
  border-radius: var(--border-radius-sm);
  background: var(--gold-gradient);
  color: #000000;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--gold-glow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
  color: #000000;
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  margin: 5px 0;
  transition: all var(--transition-normal);
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.04) 0%, rgba(18, 18, 18, 0) 75%);
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--gold-glow);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}

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

/* Premium Stacked Business Cards Mockup */
.card-mockup-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 320px;
  perspective: 1500px;
  margin: 0 auto;
}

/* Base style for both cards */
.biz-card-mockup {
  position: absolute;
  width: 380px;
  height: 220px;
  background: #141414;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s;
  overflow: hidden;
}

/* Card 1: Back Side (Umut Baran details - shifted behind) */
.biz-card-back {
  background: linear-gradient(145deg, #111111 0%, #1a1a1a 100%);
  border: 1px solid rgba(212, 175, 55, 0.15);
  top: 40px;
  left: 40px;
  transform: rotateY(-18deg) rotateX(12deg) translateZ(-40px);
  z-index: 1;
}

/* Card 1 gold curve on the right */
.biz-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.7) 100%);
  clip-path: ellipse(65% 100% at 100% 50%);
  pointer-events: none;
}

/* Card 2: Front Side (TİM Lojistik logo - shifted forward) */
.biz-card-front {
  background: linear-gradient(145deg, #161616 0%, #0d0d0d 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  top: 0;
  left: 0;
  transform: rotateY(-12deg) rotateX(8deg) translateZ(20px);
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.15);
}

/* Card 2 gold wave at the bottom */
.biz-card-front::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background: linear-gradient(90deg, #ab873c 0%, #f5d76e 50%, #aa7c11 100%);
  clip-path: ellipse(75% 85% at 50% 100%);
  pointer-events: none;
}

/* Mockup Interaction */
.card-mockup-stack:hover .biz-card-front {
  transform: rotateY(-5deg) rotateX(5deg) translateZ(40px) translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.3);
}

.card-mockup-stack:hover .biz-card-back {
  transform: rotateY(-10deg) rotateX(8deg) translateZ(-10px) translate(15px, -15px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.75);
}

/* Internal card details styling */
.biz-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.biz-card-logo {
  width: 42px;
  height: 42px;
}

.biz-card-title-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.biz-card-title-text .title-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  font-family: var(--font-accent);
}

.biz-card-title-text .title-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
}

.biz-card-slogan {
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-accent);
  color: #f3f3f3;
  text-align: center;
  margin-top: 15px;
  z-index: 1;
}

/* Back Card styling details */
.biz-card-back-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.biz-card-back-role {
  font-size: 0.75rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 12px;
}

.biz-card-back-contact {
  font-size: 0.78rem;
  color: #cfcfcf;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.biz-card-back-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.biz-card-back-contact i {
  color: var(--color-gold);
  width: 14px;
}

/* Responsive card mockup */
@media (max-width: 576px) {
  .card-mockup-stack {
    height: 250px;
    max-width: 320px;
  }
  .biz-card-mockup {
    width: 280px;
    height: 165px;
    padding: 16px;
  }
  .biz-card-back {
    top: 30px;
    left: 30px;
  }
  .biz-card-title-text .title-brand {
    font-size: 1.05rem;
  }
  .biz-card-title-text .title-sub {
    font-size: 0.6rem;
  }
  .biz-card-slogan {
    font-size: 0.85rem;
    margin-top: 10px;
  }
  .biz-card-back-name {
    font-size: 0.95rem;
  }
  .biz-card-back-role {
    font-size: 0.65rem;
  }
  .biz-card-back-contact {
    font-size: 0.7rem;
  }
  .biz-card-front::before {
    height: 50px;
  }
}

/* Floating Animation for front card */
.biz-card-front {
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0% { transform: rotateY(-12deg) rotateX(8deg) translateZ(20px) translateY(0); }
  50% { transform: rotateY(-12deg) rotateX(8deg) translateZ(20px) translateY(-8px); }
  100% { transform: rotateY(-12deg) rotateX(8deg) translateZ(20px) translateY(0); }
}

/* Glassmorphism Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-focus);
  box-shadow: var(--shadow-md);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-gold);
  font-size: 1.5rem;
}

/* Stats Section */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 38px 24px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 170px;
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-focus);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Card Image Box Styles */
.card-image-box {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
  position: relative;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

/* Tabs & Forms */
.tab-container {
  max-width: 700px;
  margin: 0 auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 16px;
}

.tab-btn {
  background: none;
  border: none;
  outline: none;
  padding: 12px 32px;
  color: var(--text-secondary);
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.tab-btn.active {
  color: var(--color-gold);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -17px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
}

.tab-content {
  display: none;
  animation: fadeIn var(--transition-normal) forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Elegant Form styling */
.form-group {
  margin-bottom: 24px;
}

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

@media (max-width: 576px) {
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background-color: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 18px;
  padding-right: 50px;
}

/* Custom Checkbox/Radio */
.radio-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.radio-card {
  position: relative;
}

.radio-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-label {
  display: block;
  padding: 14px;
  background: var(--bg-input);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-card input:checked + .radio-card-label {
  border-color: var(--color-gold);
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-gold);
}

.btn-submit {
  width: 100%;
  margin-top: 16px;
}

/* Feedback messages */
.alert {
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideDown var(--transition-normal) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-success {
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.25);
  color: var(--color-success);
}

.alert-danger {
  background: rgba(230, 126, 34, 0.1); /* or red */
  border: 1px solid rgba(231, 76, 60, 0.25);
  color: var(--color-danger);
}

/* Footer Section */
footer {
  background-color: #0d0d0d;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px;
  margin-top: auto;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text-primary);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

/* Contact Page Layout & Map placeholder */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  background-color: var(--bg-secondary);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) grayscale(100%) contrast(90%);
}

/* Spinners & Loading States */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  border-top-color: #000;
  animation: spin 0.8s ease-in-out infinite;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Services Detail styles */
.service-icon-box {
  font-size: 3rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.timeline {
  margin-top: 40px;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(212, 175, 55, 0.15);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  border: 3px solid var(--color-gold);
}
