﻿/* assets/css/style.css - Ahmet Kıran Kurumsal Portföy Soft & Eye-Comfort Warm Neutral Theme */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

:root {
  /* Soft, Eye-Comfort Warm Neutral Palette */
  --primary-navy: #192231;
  --secondary-navy: #243042;
  --navy-light: #415065;
  
  /* Antique Warm Gold */
  --gold-primary: #b89332;
  --gold-dark: #8c6819;
  --gold-light: #e8d7a7;
  --gold-gradient: linear-gradient(135deg, #e6d39c 0%, #b89332 50%, #8c6819 100%);
  
  /* Soft, Muted Warm Backgrounds (Göz Yormayan Sıcak & Pastel Tonlar) */
  --bg-page: #f2efe9;          /* Yumuşak keten / sıcak krem zemin */
  --bg-card: #faf8f5;          /* Göz yormayan mat fildişi kart zemini */
  --bg-card-hover: #ffffff;
  --bg-surface: #e8e4dc;       /* İkincil yumuşak yüzeyler */
  --bg-surface-alt: #ded9cd;   /* Alternatif bölüm zeminleri */
  
  /* Text with reduced glare */
  --text-main: #1e2633;
  --text-muted: #576579;
  --text-light: #7e8b9b;
  
  /* Soft warm borders */
  --border-color: #dcd6c8;
  --border-subtle: #e5e0d4;
  --border-gold: rgba(184, 147, 50, 0.35);
  
  /* Gentle diffuse shadows */
  --shadow-sm: 0 1px 3px rgba(35, 30, 20, 0.04);
  --shadow-md: 0 4px 8px -1px rgba(35, 30, 20, 0.06), 0 2px 4px -2px rgba(35, 30, 20, 0.04);
  --shadow-lg: 0 10px 18px -3px rgba(35, 30, 20, 0.07), 0 4px 8px -4px rgba(35, 30, 20, 0.04);
  --shadow-xl: 0 18px 24px -5px rgba(35, 30, 20, 0.08), 0 8px 10px -6px rgba(35, 30, 20, 0.03);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Top Utility Bar
   ========================================================================== */
.top-bar {
  background: #ece8e0;
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-light);
  font-weight: 500;
}
.top-bar-item:hover {
  color: var(--gold-dark);
}
.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Dropdown */
.lang-selector {
  position: relative;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover {
  border-color: var(--gold-primary);
  background: #ffffff;
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  z-index: 1000;
  display: none;
  overflow: hidden;
  animation: fadeInDown 0.2s ease;
}
.lang-dropdown.active {
  display: block;
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-light);
}
.lang-dropdown-item:hover, .lang-dropdown-item.active {
  background: var(--bg-surface);
  color: var(--gold-dark);
  font-weight: 700;
}

/* ==========================================================================
   Main Header & Navigation
   ========================================================================== */
.site-header {
  background: rgba(246, 243, 237, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(246, 243, 237, 0.98);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-navy);
  padding: 8px 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold-gradient);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold-dark);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-navy);
  color: #fef08a;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(140, 104, 25, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: var(--shadow-xl);
  z-index: 2000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.mobile-menu.open {
  left: 0;
}
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 34, 49, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  display: none;
}
.mobile-overlay.open {
  display: block;
}
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}
.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-navy);
}

/* ==========================================================================
   Hero Section (Soft Warm Tones)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #ece8df 0%, #f2efe9 100%);
  padding: 70px 0 90px;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 147, 50, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ede6d4;
  color: #785311;
  border: 1px solid #d4c5a0;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  width: fit-content;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-navy);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--navy-light);
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-gradient);
  color: #192231;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(184, 147, 50, 0.25);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(184, 147, 50, 0.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--primary-navy);
  border: 1.5px solid var(--border-color);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-dark);
  background: #ffffff;
}

.hero-slider-wrap {
  position: relative;
}
.hero-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}
.hero-card-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 6px);
}
.hero-card-caption {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(25, 34, 49, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  color: #ffffff;
}
.hero-card-caption h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fef08a;
}
.hero-card-caption p {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* Hero Stats (Warm Sand Card) */
.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}
.stat-box {
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--border-color);
}
.stat-box:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
  display: block;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   Section Headers & Common
   ========================================================================== */
.section {
  padding: 80px 0;
}
.section-light {
  background: var(--bg-page);
}
.section-alt {
  background: var(--bg-surface);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.3;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}
.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1.5px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-icon {
  width: 48px;
  height: 48px;
  background: #ede4cc;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.about-badge-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}
.about-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.about-text-content p {
  color: var(--navy-light);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0;
}
.about-feat-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-navy);
}
.about-feat-item span.icon {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

/* ==========================================================================
   Projects Section
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-primary);
  background: #ffffff;
}
.project-card-media {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: var(--primary-navy);
}
.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card-img {
  transform: scale(1.06);
}
.project-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(25, 34, 49, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1px solid var(--border-gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.project-status-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #0d9488;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 16px;
}
.project-card-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.4;
}
.project-card-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.project-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--navy-light);
  font-weight: 500;
}
.project-card-link {
  color: var(--gold-dark);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   Tribal Banner
   ========================================================================== */
.tribal-banner {
  background: linear-gradient(135deg, #192231 0%, #243042 100%);
  color: #ffffff;
  padding: 60px 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.tribal-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at right, rgba(184, 147, 50, 0.15), transparent 70%);
}
.tribal-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.tribal-banner h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 800;
  color: #fef08a;
  margin-bottom: 14px;
}
.tribal-banner p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ==========================================================================
   Blog Section & Pagination
   ========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-primary);
  background: #ffffff;
}
.blog-card-media {
  position: relative;
  height: 180px;
  background: var(--primary-navy);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-category {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(25, 34, 49, 0.88);
  color: #fef08a;
  border: 1px solid rgba(254, 240, 138, 0.3);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.blog-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 12px;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  line-height: 1.4;
}
.blog-card-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Pagination Bar */
.pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--primary-navy);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--gold-gradient);
  border-color: var(--gold-dark);
  color: #192231;
  font-weight: 800;
}
.page-btn.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================================================================
   Gallery Section & Lightbox
   ========================================================================== */
.gallery-filter-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.gallery-filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy-light);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter-btn:hover, .gallery-filter-btn.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}
.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item-img {
  transform: scale(1.08);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(25, 34, 49, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-title {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
}
.gallery-item-cat {
  color: #fef08a;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(25, 34, 49, 0.94);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox-modal.active {
  display: flex;
}
.lightbox-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #192231;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.lightbox-img {
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #0a0e17;
}
.lightbox-caption {
  padding: 16px 24px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ==========================================================================
   Contact Page & Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  background: #ede4cc;
  color: #785311;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-item-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-navy);
}
.contact-item-text p, .contact-item-text a {
  font-size: 0.95rem;
  color: var(--navy-light);
  line-height: 1.5;
}

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--primary-navy);
  background: #faf8f5;
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(184, 147, 50, 0.15);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #141b27;
  color: #9aa7b8;
  padding: 70px 0 24px;
  border-top: 2px solid var(--gold-primary);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  color: #cbd5e1;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold-primary);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: #9aa7b8;
}
.footer-links a:hover {
  color: #fef08a;
  padding-left: 4px;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-contacts { display: none; }
  .main-nav, .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .hero-title { font-size: 2rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .tribal-banner-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
