/* =============================================
   MUGLA DİJİTAL - Ana Stil Dosyası
   ============================================= */

:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark2: #2d2d2d;
  --gray: #4a4a4a;
  --gray2: #6b6b6b;
  --light-gray: #f4f4f4;
  --white: #ffffff;
  --orange: #FF6B2C;
  --orange-dark: #e55a1c;
  --orange-light: #ff8c5a;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-sm {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray); line-height: 1.8; }

.section-tag {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray2);
  max-width: 600px;
}

.text-center { text-align: center; }
.text-orange { color: var(--orange); }

/* =============================================
   BUTTONS
   ============================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,44,0.35);
}

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

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

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

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

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header-top {
  background: var(--black);
  padding: 8px 0;
  font-size: 0.82rem;
  color: var(--white);
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.header-top a {
  color: rgba(255,255,255,0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.header-top a:hover { color: var(--orange); }

.header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.logo-text span:first-child {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
}

.logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.nav > li {
  position: relative;
}

.nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 28px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--dark);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav > li > a:hover,
.nav > li > a.active {
  color: var(--orange);
}

.nav > li > a svg {
  transition: transform 0.2s;
}

.nav > li:hover > a svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border-top: 3px solid var(--orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s;
  z-index: 100;
}

.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 0.88rem;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: var(--light-gray);
  color: var(--orange);
  padding-left: 26px;
}

.nav-cta {
  margin-left: 16px;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

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

.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);
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 2px solid var(--light-gray);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 1000px;
}

.mobile-menu a {
  display: block;
  padding: 12px 24px;
  border-bottom: 1px solid var(--light-gray);
  font-weight: 500;
  color: var(--dark);
}

.mobile-menu a.sub {
  padding-left: 40px;
  font-size: 0.88rem;
  color: var(--gray);
}

.mobile-menu a:hover { color: var(--orange); background: var(--light-gray); }

.mobile-menu .mobile-cat {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  border-bottom: 1px solid var(--light-gray);
  background: #fff8f5;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 108px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 40%, #2d1a0a 100%);
}

.hero-bg::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='%23FF6B2C' fill-opacity='0.04'%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");
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,107,44,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,44,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
  bottom: -50px;
  left: 30%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,44,0.15);
  border: 1px solid rgba(255,107,44,0.3);
  color: var(--orange-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

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

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
}

.hero-cards {
  position: relative;
  height: 480px;
}

.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero-card-main {
  width: 280px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.hero-card-side {
  width: 200px;
  height: 240px;
  z-index: 2;
}

.hero-card-side:nth-child(2) {
  top: 20px;
  right: 20px;
  transform: rotate(5deg);
}

.hero-card-side:nth-child(3) {
  bottom: 20px;
  left: 20px;
  transform: rotate(-5deg);
}

.hero-card-img {
  width: 100%;
  height: 65%;
  object-fit: cover;
  background: var(--light-gray);
}

.hero-card-body {
  padding: 16px;
}

.hero-card-body h4 {
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.hero-card-body p {
  font-size: 0.78rem;
  color: var(--gray2);
}

.hero-floating-badge {
  position: absolute;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(255,107,44,0.4);
  z-index: 10;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-floating-badge-1 {
  top: 30px;
  left: 10px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-badge-2 {
  bottom: 60px;
  right: 10px;
  animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero card visual content */
.hero-card-visual {
  width: 100%;
  height: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.hero-card-main .hero-card-visual { background: linear-gradient(135deg, #1a1a1a, #2d2d2d); }
.hero-card-side:nth-child(2) .hero-card-visual { background: linear-gradient(135deg, #FF6B2C20, #FF6B2C40); }
.hero-card-side:nth-child(3) .hero-card-visual { background: linear-gradient(135deg, #f0f0f0, #e0e0e0); }

/* =============================================
   SERVICE CATEGORIES BAR
   ============================================= */

.categories-bar {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.categories-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.categories-scroll::-webkit-scrollbar { display: none; }

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 32px;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.cat-item:hover,
.cat-item.active {
  color: var(--white);
  background: rgba(255,107,44,0.15);
  border-bottom: 3px solid var(--orange);
}

.cat-item .cat-icon {
  font-size: 1.6rem;
}

/* =============================================
   SECTIONS - GENERAL
   ============================================= */

section { padding: 80px 0; }

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

/* =============================================
   PROMO BANNERS
   ============================================= */

.promo-banners {
  padding: 40px 0;
  background: var(--light-gray);
}

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

.promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 160px;
  display: flex;
  align-items: center;
  padding: 28px;
  cursor: pointer;
  transition: transform 0.2s;
}

.promo-card:hover { transform: scale(1.02); }

.promo-card-1 {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white);
}

.promo-card-2 {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
}

.promo-card-3 {
  background: linear-gradient(135deg, #2d1a0a 0%, #4a2e12 100%);
  color: var(--white);
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.promo-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.promo-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.promo-card a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.promo-icon {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 5rem;
  opacity: 0.12;
}

/* =============================================
   SERVICES GRID
   ============================================= */

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

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

.service-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  group: true;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.service-card-img {
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.5));
}

.service-card-body {
  padding: 20px;
}

.service-card-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 8px;
}

.service-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.service-card-desc {
  font-size: 0.85rem;
  color: var(--gray2);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.service-card-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.service-card:hover .service-card-link { gap: 8px; }

/* =============================================
   CAMPAIGN BANNERS
   ============================================= */

.campaign-section { background: var(--dark); padding: 60px 0; }

.campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.campaign-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.campaign-card-1 {
  background: linear-gradient(135deg, var(--orange) 0%, #c94e18 100%);
}

.campaign-card-2 {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.campaign-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.campaign-card p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}

.campaign-price {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
}

.campaign-icon {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 7rem;
  opacity: 0.1;
}

/* =============================================
   CATEGORIES CAROUSEL
   ============================================= */

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

.categories-carousel {
  position: relative;
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.category-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.category-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card-img {
  height: 180px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.category-card-body {
  padding: 20px;
}

.category-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.carousel-btn:hover { background: var(--orange); color: var(--white); }

.carousel-btn-prev { left: -22px; }
.carousel-btn-next { right: -22px; }

/* =============================================
   CTA BANNER
   ============================================= */

.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #c94e18 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-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.05'%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");
}

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

.cta-text h2 { color: var(--white); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

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

.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

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

/* =============================================
   TESTIMONIALS
   ============================================= */

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

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

.testimonial-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
  font-family: serif;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star { color: #FFB800; font-size: 1rem; }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray2);
}

/* =============================================
   BLOG SECTION
   ============================================= */

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

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}

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

.blog-card-img {
  height: 200px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

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

.blog-card-cat {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

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

.blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--gray2);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--gray2);
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

/* =============================================
   DISTRICTS / SEO SECTION
   ============================================= */

.districts-section { background: var(--dark); padding: 60px 0; }

.districts-section .section-title,
.districts-section .section-tag { color: var(--white); }
.districts-section .section-subtitle { color: rgba(255,255,255,0.6); }

.districts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.district-pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.district-pill:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* =============================================
   FAQ SECTION
   ============================================= */

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

.faq-list { max-width: 800px; margin: 0 auto; }

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

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

.faq-question:hover { color: var(--orange); }

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.faq-item.open .faq-question { color: var(--orange); }
.faq-item.open .faq-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 400px; }

/* =============================================
   CONTACT SECTION
   ============================================= */

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

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

.contact-info h3 {
  margin-bottom: 24px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,107,44,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray2);
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-item-text a,
.contact-item-text p {
  font-size: 0.98rem;
  color: var(--dark);
  font-weight: 500;
}

.contact-item-text a:hover { color: var(--orange); }

.contact-form { background: var(--light-gray); padding: 36px; border-radius: var(--radius-lg); }

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

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

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

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

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background: var(--black);
  padding-top: 60px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 16px 0 24px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.footer-social:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-links a:hover::before { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--orange); }

/* =============================================
   FLOATING WHATSAPP
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  cursor: pointer;
  animation: pulse-whatsapp 2s infinite;
  text-decoration: none;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
}

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

.whatsapp-tooltip {
  background: var(--dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow);
  display: none;
}

.whatsapp-float:hover .whatsapp-tooltip { display: block; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1a0a 100%);
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,107,44,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,44,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--orange); }

/* =============================================
   SERVICE DETAIL PAGE
   ============================================= */

.service-detail { padding: 80px 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.service-content h2 { margin-bottom: 20px; }
.service-content h3 { margin: 32px 0 16px; }
.service-content p { margin-bottom: 16px; }

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
}

.feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-text h4 { font-size: 0.9rem; margin-bottom: 4px; }
.feature-text p { font-size: 0.82rem; color: var(--gray2); }

/* Sidebar */
.service-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-wa-btn {
  width: 100%;
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  transition: background 0.2s;
}

.sidebar-wa-btn:hover { background: #1db954; }

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}

.sidebar-phone:hover { background: rgba(255,107,44,0.2); }

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-links a {
  padding: 10px 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: rgba(255,107,44,0.15);
  color: var(--orange);
}

/* =============================================
   DISTRICT PAGE
   ============================================= */

.district-content { padding: 80px 0; }

.district-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.district-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.district-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--dark);
}

.district-service-item:hover {
  background: rgba(255,107,44,0.1);
  color: var(--orange);
}

/* =============================================
   BLOG PAGES
   ============================================= */

.blog-hero { padding: 140px 0 60px; }

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  padding: 60px 0;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.blog-post-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.blog-post-thumb {
  height: 160px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-post-content { padding: 24px 24px 24px 0; }

.blog-widget {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
}

.blog-widget h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--dark);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
}

.blog-widget ul li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.blog-widget ul li:last-child { border-bottom: none; }

.blog-widget ul li a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color 0.2s;
}
.blog-widget ul li a:hover { color: var(--orange); }

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-page { padding: 80px 0; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* =============================================
   UTILITIES
   ============================================= */

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.d-none { display: none !important; }

/* Background helpers */
.bg-dark { background: var(--dark); }
.bg-black { background: var(--black); }
.bg-light { background: var(--light-gray); }
.bg-orange { background: var(--orange); }

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--light-gray);
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -12px;
  width: 24px;
  height: 2px;
  background: var(--orange);
  z-index: 1;
}

.process-step:last-child::after { display: none; }

.step-num {
  width: 56px;
  height: 56px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-icon { font-size: 2rem; margin-bottom: 8px; }
.process-step h4 { font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.83rem; color: var(--gray2); }

/* Stats bar */
.stats-bar {
  background: var(--orange);
  padding: 40px 0;
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.stat-item-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Alert/success */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-top: 16px;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 30px; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 60px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .campaign-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .district-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-top-right .btn-sm { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; }
  .stats-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-features { grid-template-columns: 1fr; }
  .district-services-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-post-card { grid-template-columns: 1fr; }
  .blog-post-thumb { height: 200px; }
  .contact-page-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.9rem; }
  .footer-main { grid-template-columns: 1fr; }
  .category-card { flex: 0 0 calc(50% - 10px); }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-float-btn { width: 52px; height: 52px; }
}

/* =============================================
   ANIMATIONS
   ============================================= */

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

.animate-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image placeholder backgrounds */
.img-digital { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.img-photo { background: linear-gradient(135deg, #1a0a2e, #2d1a4a, #3d2060); }
.img-print { background: linear-gradient(135deg, #1a2e0a, #2d4a1a, #3d6020); }
.img-design { background: linear-gradient(135deg, #2e1a0a, #4a2d1a, #6b3d20); }
.img-corporate { background: linear-gradient(135deg, #0a1a2e, #1a2d4a, #203d6b); }
.img-apparel { background: linear-gradient(135deg, #2e0a1a, #4a1a2d, #6b203d); }
.img-blog1 { background: linear-gradient(135deg, #FF6B2C20, #FF6B2C40); }
.img-blog2 { background: linear-gradient(135deg, #25D36620, #25D36640); }
.img-blog3 { background: linear-gradient(135deg, #007bff20, #007bff40); }
