/*
Theme Name: Özselçuk Nakliyat
Theme URI: https://www.ozselcuknakliyat.com.tr
Author: Özselçuk Nakliyat
Description: Profesyonel Evden Eve Nakliyat Teması - Premium Tasarım
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ozselcuk
*/

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --orange:       #E8521A;
  --orange-dark:  #C43D0F;
  --orange-light: #FF6B35;
  --dark:         #0D1117;
  --dark2:        #161B22;
  --dark3:        #1E2733;
  --light:        #F5F5F0;
  --white:        #FFFFFF;
  --gray:         #8A9099;
  --gray-light:   #E8E8E2;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --shadow:       0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.2);
  --radius:       10px;
  --radius-lg:    18px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--dark);
}

.section-title.light { color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(232,82,26,0.4);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--dark3);
  transform: translateY(-2px);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-radius: 4px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.header-phone:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.header-phone i { font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,17,23,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 28px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  padding: 8px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 280px;
  text-align: center;
}
.mobile-nav a:hover { color: var(--orange); border-color: var(--orange); }
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77,0,0.18,1);
}

.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,0.85) 0%,
    rgba(13,17,23,0.5) 60%,
    rgba(232,82,26,0.15) 100%
  );
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  max-width: 780px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.hero-title span { color: var(--orange); }

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s ease 0.7s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
}

.hero-slide.active .hero-tag,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

.hero-nav {
  position: absolute;
  bottom: 40px;
  left: 8%;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--orange);
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ============================================================
   TOP INFO BAR (below hero, quick contact)
   ============================================================ */
.info-bar {
  background: var(--dark2);
  color: var(--white);
  padding: 0;
}

.info-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.info-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.info-bar-item:last-child { border-right: none; }

.info-bar-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,82,26,0.15);
  border: 1px solid rgba(232,82,26,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.info-bar-text small {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}

.info-bar-text strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 100px 0;
  background: var(--light);
}

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

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

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232,82,26,0.15), rgba(232,82,26,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 26px;
  margin-bottom: 24px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--dark);
}

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

.service-list {
  list-style: none;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark3);
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-light);
}
.service-list li:last-child { border-bottom: none; }
.service-list li i {
  color: var(--orange);
  font-size: 12px;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 10px 30px rgba(232,82,26,0.4);
}
.about-badge .badge-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  display: block;
}
.about-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content { padding-right: 20px; }

.about-content .section-title { margin-bottom: 24px; }

.about-content p {
  color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(232,82,26,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 2px;
}
.about-feature-text span {
  font-size: 13px;
  color: var(--gray);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}
.stat-num span { color: var(--orange); }

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section {
  padding: 100px 0;
  background: var(--light);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
  grid-column: span 1;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i {
  font-size: 28px;
  color: var(--white);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.videos-section {
  padding: 100px 0;
  background: var(--dark2);
}

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

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

.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  background: var(--dark);
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* ============================================================
   CONTACT CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--dark);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.cta-phone-btn:hover {
  background: var(--white);
  color: var(--dark);
}
.cta-phone-btn i { color: var(--orange); font-size: 20px; }
.cta-phone-btn:hover i { color: var(--orange); }

.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.cta-wa-btn:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-brand img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p { max-width: 300px; margin-bottom: 24px; }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.footer-links li { padding: 4px 0; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links a i { font-size: 10px; color: var(--orange); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item i {
  color: var(--orange);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,82,26,0.1) 0%, transparent 60%);
}

.page-hero-content { position: relative; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: 10px; color: var(--orange); }

/* ============================================================
   ABOUT PAGE CONTENT
   ============================================================ */
.about-page-section {
  padding: 100px 0;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.about-page-text p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-page-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-page-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}
.about-page-gallery img:hover { transform: scale(1.02); }

/* ============================================================
   PHOTOS PAGE
   ============================================================ */
.photos-section { padding: 80px 0; }

.photos-slider-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

.photos-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.photos-full-grid .gallery-item {
  height: 280px;
}

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

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }

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

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border-left: 3px solid var(--orange);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-card-text h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.contact-card-text p,
.contact-card-text a {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.6;
}
.contact-card-text a:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--dark);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark3);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,82,26,0.08);
}

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

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

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 60px;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* ============================================================
   BLOG / INDEX
   ============================================================ */
.blog-section { padding: 80px 0; }

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.blog-card-img {
  height: 200px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

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

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.blog-meta i { color: var(--orange); }

.blog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.4;
}

.blog-card p { font-size: 14px; color: var(--gray); }

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 20px;
}
.blog-card-link:hover { gap: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 8px; bottom: -16px; }
  .about-features { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:first-child { grid-row: span 1; }
  .videos-grid { grid-template-columns: 1fr; }
  .photos-videos-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid > *:first-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .info-bar-inner { grid-template-columns: 1fr; }
  .info-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .photos-full-grid { grid-template-columns: repeat(2, 1fr); }
  .photos-full-grid .gallery-item { height: 200px; }
  .scroll-indicator { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .photos-full-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .stat-num { font-size: 52px; }
}
/* ============================================================
   BLOG LAYOUT (sidebar + content)
   ============================================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.blog-section { padding: 80px 0; }

/* ---- Cards ---- */
.blog-list { display: flex; flex-direction: column; gap: 32px; }

.blog-list-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.blog-list-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-list-img {
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}
.blog-list-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-list-card:hover .blog-list-img img { transform: scale(1.06); }

.blog-list-img-placeholder {
  height: 100%;
  min-height: 220px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-list-img-placeholder i { font-size: 52px; color: var(--orange); opacity: 0.5; }

.blog-list-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,82,26,0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.blog-list-body h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--dark);
}
.blog-list-body h2 a { color: inherit; }
.blog-list-body h2 a:hover { color: var(--orange); }

.blog-list-body p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gray);
  flex-wrap: wrap;
}
.blog-meta i { color: var(--orange); }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.read-more:hover { gap: 12px; color: var(--orange-dark); }

/* ---- Pagination ---- */
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 18px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}

.widget-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--orange);
  border-radius: 2px;
}

/* Search */
.sidebar-search {
  display: flex;
  gap: 0;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.sidebar-search:focus-within { border-color: var(--orange); }
.sidebar-search input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  background: transparent;
}
.sidebar-search button {
  padding: 12px 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 15px;
  transition: var(--transition);
}
.sidebar-search button:hover { background: var(--orange-dark); }

/* Categories */
.sidebar-cats { list-style: none; }
.sidebar-cats li { border-bottom: 1px solid var(--gray-light); }
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: var(--dark3);
  transition: var(--transition);
}
.sidebar-cats a:hover { color: var(--orange); padding-left: 6px; }
.cat-count {
  background: rgba(232,82,26,0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}

/* Recent Posts */
.sidebar-recent { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.sidebar-recent li { display: flex; gap: 14px; align-items: flex-start; }
.recent-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-thumb-placeholder {
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.recent-thumb-placeholder i { color: var(--orange); font-size: 22px; }
.recent-info { flex: 1; }
.recent-info a {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  display: block;
  margin-bottom: 4px;
}
.recent-info a:hover { color: var(--orange); }
.recent-info span { font-size: 12px; color: var(--gray); }
.recent-info span i { color: var(--orange); margin-right: 4px; }

/* Tags */
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-tags a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--light);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark3);
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}
.sidebar-tags a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Sidebar CTA */
.sidebar-cta {
  background: var(--dark) !important;
  text-align: center;
}
.sidebar-cta i { font-size: 36px; color: var(--orange); margin-bottom: 12px; display: block; }
.sidebar-cta h4 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta p { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-hero {
  background: var(--dark);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.single-post-hero .post-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.single-post-hero-content { position: relative; max-width: 800px; }
.single-post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
  padding: 80px 0;
}

.post-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.post-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.post-body {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}
.post-body h2, .post-body h3 {
  font-family: var(--font-display);
  color: var(--dark);
  margin: 36px 0 16px;
  letter-spacing: 0.5px;
}
.post-body h2 { font-size: 34px; }
.post-body h3 { font-size: 26px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol {
  margin: 0 0 20px 24px;
  color: #444;
}
.post-body li { margin-bottom: 8px; line-height: 1.7; }
.post-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin: 32px 0;
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 17px;
  color: var(--dark3);
}
.post-body img { border-radius: var(--radius); margin: 24px 0; max-width: 100%; }
.post-body a { color: var(--orange); text-decoration: underline; }

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 2px solid var(--gray-light);
}
.post-tags span { font-size: 13px; font-weight: 700; color: var(--dark); margin-right: 4px; }
.post-tags a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--light);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark3);
  text-decoration: none;
  transition: var(--transition);
}
.post-tags a:hover { background: var(--orange); color: var(--white); }

.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.post-nav-link {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 2px solid var(--gray-light);
  transition: var(--transition);
}
.post-nav-link:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.post-nav-link .nav-dir {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.post-nav-link .nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.post-nav-link.next-post { text-align: right; }
.post-nav-link.next-post .nav-dir { justify-content: flex-end; }

/* Related Posts */
.related-posts {
  margin-top: 48px;
}
.related-posts h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--dark);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.related-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.related-card-img { height: 150px; overflow: hidden; background: var(--light); display:flex; align-items:center; justify-content:center; }
.related-card-img img { width:100%; height:100%; object-fit:cover; }
.related-card-img i { font-size: 32px; color: var(--orange); opacity: 0.4; }
.related-card-body { padding: 16px; }
.related-card-body h4 { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.related-card-body h4 a { color: inherit; }
.related-card-body h4 a:hover { color: var(--orange); }
.related-card-body span { font-size: 12px; color: var(--gray); }

/* ============================================================
   ARCHIVE / SEARCH HEADER
   ============================================================ */
.archive-header {
  background: var(--dark2);
  padding: 140px 0 60px;
}
.archive-header h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  color: var(--white);
  margin-bottom: 8px;
}
.archive-header p { color: var(--gray); font-size: 15px; }

/* ============================================================
   BLOG RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .blog-layout, .single-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-list-card { grid-template-columns: 1fr; }
  .blog-list-img { min-height: 200px; }
  .post-content { padding: 28px 20px; }
  .post-nav { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
