/* ============================================================
   SADARET HUKUK - Premium Light Law Firm Theme
   Complete Production-Ready Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------- */
:root {
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --light-gray: #F5F5F0;
  --navy: #1B2A4A;
  --navy-light: #2C3E6B;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dark: #8B7332;
  --burgundy: #8B1A1A;
  --text-dark: #1A1A1A;
  --text-body: #444444;
  --text-light: #777777;
  --border: #E8E8E4;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --container: 1200px;
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: inherit;
}

/* Selection */
::selection {
  background-color: var(--gold);
  color: var(--navy);
}

::-moz-selection {
  background-color: var(--gold);
  color: var(--navy);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

/* ----------------------------------------------------------
   3. CONTAINER / LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ----------------------------------------------------------
   4. NAVBAR
   ---------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow);
}

.navbar .container,
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.navbar-brand span {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.navbar-brand em {
  color: var(--gold);
  font-style: italic;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a,
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a:hover,
.nav-link:hover,
.nav-links a.active,
.nav-link.active {
  color: var(--gold);
}

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

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

/* Nav Phone */
.nav-phone {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-phone:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Mega Dropdown */
.nav-dropdown {
  position: relative;
}

.mega-dropdown,
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 24px;
  min-width: 600px;
  z-index: 100;
}

.mega-dropdown.active,
.dropdown-menu.active,
.nav-dropdown:hover .mega-dropdown,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

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

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.mega-item:hover {
  background: var(--cream);
  color: var(--gold);
}

.mega-item .mega-emoji,
.mega-item .mega-icon {
  font-size: 20px;
  flex-shrink: 0;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-selector .lang-btn,
.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: var(--transition);
  background: none;
  border: none;
}

.lang-selector .lang-btn:hover,
.lang-current:hover {
  color: var(--gold);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  overflow: hidden;
  min-width: 140px;
  z-index: 101;
}

.lang-dropdown.active,
.lang-selector:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
}

.lang-dropdown a,
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--navy);
  transition: var(--transition);
}

.lang-dropdown a:hover,
.lang-option:hover {
  background: var(--cream);
  color: var(--gold);
}

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

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

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------
   5. HERO
   ---------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--white);
  overflow: hidden;
  text-align: center;
  padding: 120px 24px 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--white) 0%, transparent 60%);
  z-index: 1;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
}

.hero-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 20px;
  animation: expandLine 1.2s ease forwards;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 60px; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-particles .particle,
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.hero-particles .particle:nth-child(2),
.hero-particle:nth-child(2) {
  animation-delay: 2s;
  animation-duration: 10s;
}

.hero-particles .particle:nth-child(3),
.hero-particle:nth-child(3) {
  animation-delay: 4s;
  animation-duration: 12s;
}

.hero-particles .particle:nth-child(4),
.hero-particle:nth-child(4) {
  animation-delay: 1s;
  animation-duration: 9s;
}

.hero-particles .particle:nth-child(5),
.hero-particle:nth-child(5) {
  animation-delay: 3s;
  animation-duration: 11s;
}

/* Hero Seal */
.hero-seal {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
}

.hero-seal svg {
  width: 100%;
  height: 100%;
}

.hero-seal circle {
  stroke: var(--gold);
  fill: none;
}

.hero-seal text {
  fill: var(--navy);
  font-family: var(--font-display);
}

.hero-seal .seal-outer {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}

.hero-seal .seal-inner {
  stroke: var(--gold-light);
  stroke-width: 1;
  fill: none;
}

.hero-seal .seal-text {
  fill: var(--navy);
  font-family: var(--font-display);
  font-size: 14px;
}

/* Hero Top Label */
.hero-top-label {
  font-size: 13px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
  display: block;
}

/* Hero Heading */
.hero h1,
.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--navy);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 strong,
.hero-title strong {
  font-weight: 600;
}

/* Hero Rotator */
.hero-rotator {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.15;
  display: block;
  margin-bottom: 24px;
  min-height: 1.2em;
}

.hero-rotator .rotator-word {
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hero Description */
.hero-desc,
.hero-description {
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Button: Gold (Primary) */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.35);
}

/* Button: Outline (Secondary) */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 38px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid var(--navy);
  cursor: pointer;
}

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

/* Button: Outline Light (for dark backgrounds) */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 38px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.6;
}

.scroll-indicator svg,
.scroll-indicator .chevron,
.scroll-indicator i {
  animation: bounce 2s ease-in-out infinite;
}

/* ----------------------------------------------------------
   6. SECTIONS (General)
   ---------------------------------------------------------- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-gray {
  background: var(--light-gray);
}

.section-dark {
  background: var(--white);
}

.section-white {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label,
.label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 600px;
  margin: 20px auto 0;
  line-height: 1.7;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: var(--transition);
}

.service-card:hover::before {
  width: 100%;
}

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

.service-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

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

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.card-link:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.card-link:hover svg {
  transform: translateX(4px);
}

/* ----------------------------------------------------------
   8. NEDEN BIZ (WHY US)
   ---------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: var(--transition);
}

.why-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  transition: var(--transition);
}

.why-icon img {
  width: 24px;
  height: 24px;
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-card:hover .why-icon svg {
  stroke: var(--white);
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

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

/* ----------------------------------------------------------
   9. STATS
   ---------------------------------------------------------- */
.section-stats {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.section-stats .container {
  position: relative;
  z-index: 1;
}

.section-stats .section-header .label {
  color: var(--gold);
}

.section-stats .section-header h2 {
  color: var(--white);
}

.section-stats .section-header h2::after {
  background: var(--gold);
}

.section-stats .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

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

.stat-item {
  text-align: center;
  padding: 24px 8px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.stat-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 12px;
}

.stat-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-bar-fill.animated,
.animated .stat-bar-fill {
  width: 100%;
}

/* ----------------------------------------------------------
   10. BLOG / ARTICLES
   ---------------------------------------------------------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.section-gray .blog-card {
  background: var(--cream);
}

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

.blog-card .card-image {
  padding: 24px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.blog-card .blog-emoji {
  font-size: 48px;
  line-height: 1;
}

.blog-card .category {
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.blog-card .card-body {
  padding: 24px;
}

.blog-card .card-date {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}

.blog-card .card-body h3 {
  margin-bottom: 12px;
}

.blog-card .card-body h3 a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  transition: var(--transition);
}

.blog-card .card-body h3 a:hover {
  color: var(--gold);
}

.blog-card .card-body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.read-more:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* ----------------------------------------------------------
   11. CITIES
   ---------------------------------------------------------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.city-emoji {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.city-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  text-align: center;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.city-card h3 {
  margin-bottom: 8px;
}

.city-card h3 a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.city-card h3 a:hover {
  color: var(--gold);
}

.city-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.city-card .card-link {
  color: var(--gold);
}

/* ----------------------------------------------------------
   12. FAQ
   ---------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  transition: var(--transition);
  overflow: hidden;
}

.section-gray .faq-item {
  background: var(--cream);
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 500;
  font-size: 16px;
  gap: 16px;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: var(--transition);
}

.faq-question span,
.faq-question-text {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 15px;
  padding-left: 43px;
}

/* ----------------------------------------------------------
   13. CONTACT
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
}

.contact-info-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.contact-info-item a {
  color: var(--text-body);
  transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.section-gray .contact-form {
  background: var(--white);
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

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

.checkbox-group label {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5;
}

.contact-form .btn-gold {
  width: 100%;
}

/* ----------------------------------------------------------
   14. CTA SECTION
   ---------------------------------------------------------- */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0F1A30 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-cta .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

.section-cta .section-header .label {
  color: var(--gold);
}

.section-cta .section-header h2 {
  color: var(--white);
  font-family: var(--font-display);
}

.section-cta .section-header h2::after {
  background: var(--gold);
}

.section-cta .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.cta-phone {
  text-align: center;
  margin-bottom: 32px;
}

.cta-phone a {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.cta-phone a:hover {
  color: var(--gold-light);
  transform: scale(1.03);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.cta-address {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.cta-address a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.cta-address a:hover {
  color: var(--gold);
}

/* CTA section alternate button styles */
.section-cta .btn-gold {
  background: var(--gold);
  color: var(--white);
}

.section-cta .btn-gold:hover {
  background: var(--gold-dark);
}

.section-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.section-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ----------------------------------------------------------
   15. FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--light-gray);
  border-top: 2px solid var(--gold);
  padding: 60px 0 0;
}

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

.footer-brand p {
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-brand .navbar-brand {
  margin-bottom: 8px;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--text-body);
  font-size: 14px;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-body);
  font-size: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: var(--text-body);
  transition: var(--transition);
}

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

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  color: var(--navy);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: var(--gold);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

/* ----------------------------------------------------------
   16. WHATSAPP FLOAT
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* ----------------------------------------------------------
   17. ANIMATIONS
   ---------------------------------------------------------- */
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  25% {
    transform: translateY(-30px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-15px) translateX(-10px);
    opacity: 0.3;
  }
  75% {
    transform: translateY(-40px) translateX(5px);
    opacity: 0.5;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 12px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3), 0 0 0 24px rgba(37, 211, 102, 0);
  }
}

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation utility classes */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Intersection observer animation triggers */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ----------------------------------------------------------
   18. RESPONSIVE - TABLET (max-width: 1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mega-dropdown,
  .dropdown-menu {
    min-width: 480px;
  }

  .mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ----------------------------------------------------------
   19. RESPONSIVE - MOBILE (max-width: 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Navbar Mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }

  .nav-links.open,
  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a,
  .nav-link {
    font-size: 18px;
  }

  .nav-phone {
    margin-top: 16px;
  }

  .mega-dropdown,
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    border: none;
    padding: 16px 0;
    background: var(--cream);
    border-radius: 8px;
  }

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

  .lang-dropdown {
    position: static;
    box-shadow: none;
    border: none;
  }

  /* Hero Mobile */
  .hero {
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(28px, 8vw, 44px);
  }

  .hero-rotator {
    font-size: clamp(28px, 8vw, 44px);
  }

  .hero-desc,
  .hero-description {
    font-size: 15px;
  }

  .hero-seal {
    width: 100px;
    height: 100px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-top-label {
    font-size: 11px;
    letter-spacing: 4px;
  }

  /* Grids Single Column */
  .services-grid,
  .why-us-grid,
  .blog-grid,
  .cities-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 40px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-gold,
  .cta-buttons .btn-outline,
  .cta-buttons .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .cta-phone a {
    font-size: 36px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Contact */
  .contact-grid {
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }
}

/* ----------------------------------------------------------
   20. RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .hero h1,
  .hero-title {
    font-size: clamp(24px, 8vw, 36px);
  }

  .hero-rotator {
    font-size: clamp(24px, 8vw, 36px);
  }

  .hero-top-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .service-card,
  .city-card {
    padding: 24px;
  }

  .why-card {
    padding: 24px 16px;
  }

  .btn-gold {
    padding: 14px 28px;
    font-size: 12px;
  }

  .btn-outline {
    padding: 12px 26px;
    font-size: 12px;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer-inner {
    padding: 0 20px 16px;
    padding-left: 36px;
    font-size: 14px;
  }

  .cta-phone a {
    font-size: 28px;
  }

  .contact-form {
    padding: 20px;
  }

  .navbar .container,
  .navbar-inner {
    height: 64px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .navbar-brand span {
    font-size: 17px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg,
  .whatsapp-float img {
    width: 24px;
    height: 24px;
  }
}

/* ----------------------------------------------------------
   21. PRINT STYLES
   ---------------------------------------------------------- */
@media print {
  .navbar,
  .whatsapp-float,
  .scroll-indicator,
  .hero-particles,
  .hamburger {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 40px 0;
    break-inside: avoid;
  }

  .section-stats {
    background: #f5f5f5;
    color: #000;
  }

  .stat-number {
    color: #000;
  }
}

.article-layout{display:grid;grid-template-columns:1fr 300px;gap:3.5rem;padding:3rem 0 5rem}
.article-content{min-width:0}
.article-content h1,.article-content h2,.article-content h3{font-family:var(--font-serif);color:var(--navy)}
.article-content h1{font-size:clamp(1.75rem,3.5vw,2.5rem);margin-bottom:1rem;font-weight:300}
.article-content h2{font-size:1.5rem;margin:2.5rem 0 1rem;padding-top:2rem;border-top:1px solid var(--border)}
.article-content h3{font-size:1.2rem;color:var(--gold);margin:1.5rem 0 .75rem}
.article-content p{color:var(--gray-600);line-height:1.85;margin-bottom:1rem;font-size:.9375rem}
.article-content ul,.article-content ol{padding-left:1.5rem;margin-bottom:1rem;color:var(--gray-600);font-size:.9375rem}
.article-content li{margin-bottom:.5rem;line-height:1.7}
.article-content strong{color:var(--navy)}
.article-content a{color:var(--gold)}
.article-content a:hover{color:var(--gold-light)}
@media(max-width:1024px){.article-layout{grid-template-columns:1fr}}
