/* ============================================
   Şahinler Dekor — Ana Stil Dosyası
   Modern, Premium Dekorasyon Web Sitesi
   ============================================ */

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

/* ============================================
   CSS Variables (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --primary-dark: #0f0f1e;
  --secondary: #c9a84c;
  --secondary-light: #d4b96a;
  --secondary-dark: #b08d2e;
  --accent: #e8d5b7;
  --accent-light: #f2e6d4;
  
  --bg-primary: #f8f6f3;
  --bg-white: #ffffff;
  --bg-dark: #1a1a2e;
  --bg-section: #faf9f7;
  
  --text-primary: #2d2d2d;
  --text-secondary: #666666;
  --text-light: #999999;
  --text-white: #ffffff;
  --text-on-dark: #e0e0e0;
  
  --border: #e5e5e5;
  --border-light: #f0f0f0;
  
  --success: #27ae60;
  --error: #e74c3c;
  --warning: #f39c12;
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 80px;
  
  /* Effects */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--secondary);
}

ul, ol {
  list-style: none;
}

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

/* ============================================
   Layout
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--container-wide);
}

.section {
  padding: var(--space-4xl) 0;
}

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

.section--alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-sm);
}

.section-header__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section--dark .section-header__title {
  color: var(--text-white);
}

.section-header__line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
  margin: var(--space-md) auto;
  border-radius: 2px;
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section--dark .section-header__desc {
  color: var(--text-on-dark);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(26, 26, 46, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.header__logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}

.header__logo-text span {
  color: var(--secondary);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav__link {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  border-radius: 1px;
}

.nav__link:hover,
.nav__link.active {
  color: var(--secondary);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 60%;
}

.nav__cta {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--text-white) !important;
  padding: var(--space-sm) var(--space-lg) !important;
  border-radius: var(--radius-xl);
  font-weight: 600;
  margin-left: var(--space-sm);
  box-shadow: var(--shadow-gold);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,168,76,0.4);
  color: var(--text-white) !important;
}

.nav__cta::after {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-sm);
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle__bar {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.menu-toggle.active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

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

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 220px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-link {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--text-primary) !important;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav__dropdown-link:hover {
  background: var(--accent-light);
  color: var(--secondary-dark) !important;
  padding-left: var(--space-xl);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero__slide.active img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.85) 0%,
    rgba(22, 33, 62, 0.7) 50%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  padding-top: var(--header-height);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease forwards;
}

.hero__label::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--secondary);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  max-width: 700px;
  animation: fadeInUp 0.8s 0.2s ease forwards;
  opacity: 0;
}

.hero__title span {
  color: var(--secondary);
  position: relative;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: var(--space-2xl);
  animation: fadeInUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease forwards;
  opacity: 0;
}

.hero__indicators {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.hero__indicator.active {
  background: var(--secondary);
  border-color: var(--secondary);
  width: 35px;
  border-radius: 6px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--text-white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  color: var(--text-white);
}

.btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--text-white);
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
}

.btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(201,168,76,0.1);
}

.btn--dark {
  background: var(--primary);
  color: var(--text-white);
}

.btn--dark:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--text-white);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Service Cards
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(201,168,76,0.2);
}

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

.service-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  transform: scale(1.1) rotate(5deg);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--secondary-dark);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition);
}

.service-card:hover .service-card__icon svg {
  stroke: var(--text-white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.service-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: var(--transition);
}

.service-card__link:hover {
  gap: var(--space-sm);
  color: var(--secondary);
}

/* ============================================
   Gallery / Portfolio Grid
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
}

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

.gallery-item__title {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(10px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__title {
  transform: translateY(0);
}

/* Gallery with 4 columns for model pages */
.gallery-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================
   Lightbox
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: absolute;
  top: var(--space-xl);
  right: var(--space-xl);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox__nav:hover {
  background: rgba(201,168,76,0.3);
}

.lightbox__prev {
  left: var(--space-xl);
}

.lightbox__next {
  right: var(--space-xl);
}

/* ============================================
   References / Clients
   ============================================ */
.references-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  align-items: center;
}

.reference-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  filter: grayscale(0.5);
}

.reference-item:hover {
  filter: grayscale(0);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.reference-item img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.stat-item__label {
  font-size: 0.95rem;
  color: var(--text-on-dark);
  font-weight: 500;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.cta__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-white);
  margin-bottom: var(--space-md);
}

.cta__desc {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ============================================
   Blog Cards
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  border: 1px solid var(--border-light);
}

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

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: var(--space-xl);
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-card__title {
  color: var(--secondary-dark);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.blog-card__link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--secondary-dark);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ============================================
   Blog Detail
   ============================================ */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail__image {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-md);
}

.blog-detail__meta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.blog-detail__content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-primary);
}

.blog-detail__content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: var(--space-2xl) 0 var(--space-md);
  color: var(--text-primary);
}

.blog-detail__content h3 {
  font-size: 1.3rem;
  margin: var(--space-xl) 0 var(--space-md);
  color: var(--text-primary);
}

.blog-detail__content p {
  margin-bottom: var(--space-lg);
}

.blog-detail__content ul,
.blog-detail__content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.blog-detail__content li {
  margin-bottom: var(--space-sm);
  list-style-type: disc;
}

.blog-detail__content ol li {
  list-style-type: decimal;
}

.blog-detail__content img {
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.contact-info__item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--secondary-dark);
  fill: none;
  stroke-width: 2;
}

.contact-info__text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.contact-info__text p,
.contact-info__text a {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.contact-info__text a:hover {
  color: var(--secondary);
}

/* Form */
.contact-form {
  background: var(--bg-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-section);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--secondary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

.form-control::placeholder {
  color: var(--text-light);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Map */
.contact-map {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   Page Hero (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.page-hero__desc {
  font-size: 1.1rem;
  color: var(--text-on-dark);
  max-width: 600px;
  line-height: 1.7;
  position: relative;
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: var(--space-md) 0;
  margin-bottom: var(--space-md);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-on-dark);
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

/* ============================================
   Service Detail Page
   ============================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.service-detail__content p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.service-detail__list {
  margin-bottom: var(--space-xl);
}

.service-detail__list li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.service-detail__list li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--secondary);
  border-radius: var(--radius-full);
}

.service-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail__image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.service-detail__image:hover img {
  transform: scale(1.03);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-5px);
}

.feature-card__icon {
  width: 55px;
  height: 55px;
  margin: 0 auto var(--space-md);
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--secondary-dark);
  fill: none;
  stroke-width: 1.5;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: var(--space-lg);
  color: rgba(255,255,255,0.6);
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
  margin-bottom: var(--space-lg);
  font-weight: 600;
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer__links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke: var(--secondary);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255,255,255,0.6);
}

.footer__contact-item a:hover {
  color: var(--secondary);
}

.footer__bottom {
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   WhatsApp Button
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-3xl);
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.pagination a {
  color: var(--text-primary);
  background: var(--bg-white);
}

.pagination a:hover {
  background: var(--secondary);
  color: var(--text-white);
  border-color: var(--secondary);
}

.pagination-current {
  background: var(--secondary) !important;
  color: var(--text-white) !important;
  border-color: var(--secondary) !important;
}

/* ============================================
   About Page
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--secondary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* ============================================
   404 Page
   ============================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.error-page__code {
  font-family: var(--font-heading);
  font-size: 8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  opacity: 0.3;
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin: var(--space-md) 0;
}

.error-page p {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* ============================================
   Admin Panel
   ============================================ */
.admin-layout {
  min-height: 100vh;
  background: var(--bg-section);
}

.admin-header {
  background: var(--primary);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-white);
  box-shadow: var(--shadow-md);
}

.admin-header h1 {
  font-size: 1.2rem;
  font-weight: 600;
}

.admin-content {
  max-width: 1000px;
  margin: var(--space-2xl) auto;
  padding: 0 var(--space-lg);
}

.admin-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin-bottom: var(--space-xl);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}

.admin-table th {
  font-weight: 600;
  background: var(--bg-section);
  color: var(--text-primary);
}

.admin-table tr:hover {
  background: var(--accent-light);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
}

.badge--published {
  background: rgba(39,174,96,0.1);
  color: var(--success);
}

.badge--draft {
  background: rgba(243,156,18,0.1);
  color: var(--warning);
}

.admin-actions {
  display: flex;
  gap: var(--space-sm);
}

.admin-actions a {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
}

.admin-btn--edit {
  background: rgba(201,168,76,0.1);
  color: var(--secondary-dark);
}

.admin-btn--delete {
  background: rgba(231,76,60,0.1);
  color: var(--error);
}

.admin-btn--edit:hover { background: rgba(201,168,76,0.2); }
.admin-btn--delete:hover { background: rgba(231,76,60,0.2); }

/* Alert Messages */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: 0.92rem;
  font-weight: 500;
}

.alert--success {
  background: rgba(39,174,96,0.1);
  color: var(--success);
  border: 1px solid rgba(39,174,96,0.2);
}

.alert--error {
  background: rgba(231,76,60,0.1);
  color: var(--error);
  border: 1px solid rgba(231,76,60,0.2);
}

/* Login Form */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.login-card {
  background: var(--bg-white);
  padding: var(--space-3xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
}

.login-card h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: var(--space-2xl);
}

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

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

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1);
  }
}

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

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay for children */
.stagger > *:nth-child(1) { transition-delay: 0.1s; }
.stagger > *:nth-child(2) { transition-delay: 0.2s; }
.stagger > *:nth-child(3) { transition-delay: 0.3s; }
.stagger > *:nth-child(4) { transition-delay: 0.4s; }
.stagger > *:nth-child(5) { transition-delay: 0.5s; }
.stagger > *:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transition: var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    gap: 0;
    overflow-y: auto;
  }
  
  .nav.active {
    right: 0;
  }
  
  .nav__link {
    width: 100%;
    padding: var(--space-md) 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .nav__link::after {
    display: none;
  }
  
  .nav__item {
    width: 100%;
  }
  
  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    padding-left: var(--space-md);
    min-width: auto;
  }
  
  .nav__dropdown-link {
    color: var(--text-on-dark) !important;
    padding: var(--space-sm) 0;
    font-size: 0.88rem;
  }
  
  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-md);
    text-align: center;
    justify-content: center;
  }
  
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .gallery-grid,
  .gallery-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .service-detail--reverse {
    direction: ltr;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image::after {
    display: none;
  }
  
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
  }
  
  .lightbox__nav {
    display: none;
  }
  
  .whatsapp-btn {
    bottom: var(--space-lg);
    right: var(--space-lg);
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .gallery-grid,
  .gallery-grid--4 {
    grid-template-columns: 1fr;
  }
  
  .references-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
  
  .stat-item__number {
    font-size: 2.2rem;
  }
}

/* ============================================
   Overlay for mobile menu
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: var(--space-xl);
  left: var(--space-xl);
  z-index: 998;
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.2);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}
