/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #c87a1a;
  --primary-light: #e69938;
  --primary-dark: #a0611a;
  --secondary: #0a0f1e;
  --secondary-light: #131b2e;
  --accent: #daa520;
  --text: #ffffff;
  --text-secondary: #b4bbc8;
  --text-muted: #7b8394;
  --bg-dark: #000000;
  --bg-darker: #000000;
  --gradient-1: linear-gradient(135deg, #c87a1a 0%, #e69938 50%, #daa520 100%);
  --gradient-2: linear-gradient(135deg, #a0611a 0%, #c87a1a 100%);
  --gradient-3: linear-gradient(135deg, #1a1a2e 0%, #0a0f1e 100%);
  --gradient-glass: linear-gradient(135deg, rgba(200, 122, 26, 0.05) 0%, rgba(230, 153, 56, 0.02) 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(200, 122, 26, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(200, 122, 26, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(200, 122, 26, 0.02) 0px,
    transparent 1px,
    transparent 2px,
    rgba(200, 122, 26, 0.02) 3px
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

section, nav, footer {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom: 1px solid rgba(200, 122, 26, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 8px 32px rgba(200, 122, 26, 0.08);
  border-bottom: 1px solid rgba(200, 122, 26, 0.12);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
}

.logo {
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  text-transform: uppercase;
}

.logo-accent {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--gradient-1);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.4) 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
  top: 50%;
  right: -10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.25) 0%, transparent 70%);
  bottom: -10%;
  left: 30%;
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.625rem 1.75rem;
  background: rgba(200, 122, 26, 0.08);
  border: 1px solid rgba(200, 122, 26, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 4px 24px rgba(200, 122, 26, 0.1);
  margin-top: 25px;
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -3px;
  animation: fadeInUp 1s ease-out 0.4s both;
  font-family: 'Inter', system-ui, sans-serif;
}

.gradient-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
  line-height: 1.8;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
  padding: 1.125rem 2.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  display: inline-block;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 8px 24px rgba(200, 122, 26, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 122, 26, 0.35);
}

.btn-secondary {
  background: rgba(200, 122, 26, 0.06);
  color: var(--primary-light);
  border: 1.5px solid rgba(200, 122, 26, 0.25);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(200, 122, 26, 0.12);
  border-color: rgba(200, 122, 26, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 122, 26, 0.15);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  animation: fadeInUp 1s ease-out 1s both;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(200, 122, 26, 0.3) 50%, transparent 100%);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

.scroll-indicator {
  position: absolute;
  /* bottom: 3rem; */
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator span {
  display: block;
  width: 26px;
  height: 42px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  position: relative;
  box-shadow: 0 4px 16px rgba(200, 122, 26, 0.2);
}

.scroll-indicator span::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 50px;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
  box-shadow: 0 0 8px rgba(200, 122, 26, 0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes scroll {
  0% { opacity: 0; top: 8px; }
  50% { opacity: 1; }
  100% { opacity: 0; top: 20px; }
}

/* ===== SECTION COMMON STYLES ===== */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(200, 122, 26, 0.06);
  border: 1px solid rgba(200, 122, 26, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 16px rgba(200, 122, 26, 0.08);
}

.section-title {
  font-size: 3.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
  border: 1px solid rgba(200, 122, 26, 0.08);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px) saturate(180%);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-glass);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 122, 26, 0.2);
  box-shadow: 0 24px 48px rgba(200, 122, 26, 0.12), 0 8px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.8) 0%, rgba(10, 15, 30, 0.6) 100%);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(200, 122, 26, 0.25);
}

.service-card:hover .service-icon {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 122, 26, 0.35);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.9375rem;
  font-weight: 400;
}

/* ===== WORK SECTION ===== */
.work {
  background: var(--secondary);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.work-card {
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
  border: 1px solid rgba(200, 122, 26, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px) saturate(180%);
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(200, 122, 26, 0.12), 0 8px 16px rgba(0, 0, 0, 0.3);
  border-color: rgba(200, 122, 26, 0.2);
}

.work-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.work-card:hover .work-image img {
  transform: scale(1.1);
}

.work-content {
  padding: 2rem;
}

.work-category {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(200, 122, 26, 0.08);
  border: 1px solid rgba(200, 122, 26, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.work-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text);
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.work-description {
  color: var(--text-secondary);
  margin-bottom: 1.75rem;
  line-height: 1.8;
  font-size: 0.9375rem;
}

.work-metrics {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.metric {
  padding: 0.5rem 1.125rem;
  background: rgba(200, 122, 26, 0.08);
  border: 1px solid rgba(200, 122, 26, 0.15);
  border-radius: 100px;
  font-size: 0.8125rem;
  color: var(--primary-light);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: linear-gradient(180deg, var(--secondary) 0%, var(--bg-dark) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: rgba(200, 122, 26, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(200, 122, 26, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(200, 122, 26, 0.08);
  border-color: rgba(200, 122, 26, 0.15);
  transform: translateX(4px);
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.2px;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
}

.visual-card {
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.5) 0%, rgba(10, 15, 30, 0.3) 100%);
  border: 1px solid rgba(200, 122, 26, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px) saturate(180%);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.visual-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 122, 26, 0.25);
  box-shadow: 0 20px 40px rgba(200, 122, 26, 0.15), 0 8px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.7) 0%, rgba(10, 15, 30, 0.5) 100%);
}

.card-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.card-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-top: 3rem;
}

.card-3 {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.visual-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.visual-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--bg-dark);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
  border: 1px solid rgba(200, 122, 26, 0.12);
  border-radius: 32px;
  padding: 4rem;
  backdrop-filter: blur(30px) saturate(180%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 1.125rem 1.25rem;
  background: rgba(19, 27, 46, 0.4);
  border: 1.5px solid rgba(200, 122, 26, 0.15);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(200, 122, 26, 0.4);
  background: rgba(19, 27, 46, 0.6);
  box-shadow: 0 0 0 4px rgba(200, 122, 26, 0.08), 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
}

.btn-full {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, rgba(10, 15, 30, 0.5) 0%, rgba(0, 0, 0, 0.95) 100%);
  border-top: 1px solid rgba(200, 122, 26, 0.08);
  padding: 5rem 0 2.5rem;
  backdrop-filter: blur(20px);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(200, 122, 26, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.3px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background: rgba(2, 6, 23, 0.98);
    width: 100%;
    padding: 2rem;
    gap: 1.5rem;
    transition: left 0.3s ease;
    border-top: 1px solid rgba(217, 119, 6, 0.2);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== INDUSTRIES CAROUSEL SECTION ===== */
.industries {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary) 100%);
  overflow: hidden;
}

.carousel-container {
  position: relative;
  margin-top: 3rem;
}

.carousel-wrapper {
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.industry-card {
  min-width: 320px;
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
  border: 1px solid rgba(200, 122, 26, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(200, 122, 26, 0.05) 0%, rgba(230, 153, 56, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 122, 26, 0.25);
  box-shadow: 0 24px 48px rgba(200, 122, 26, 0.12), 0 8px 16px rgba(0, 0, 0, 0.3);
}

.industry-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(200, 122, 26, 0.25);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
}

.industry-card:hover .industry-icon {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 32px rgba(200, 122, 26, 0.35);
}

.industry-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}

.industry-name {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.industry-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--secondary);
  position: relative;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  padding: 0.5rem;
  background: rgba(19, 27, 46, 0.6);
  border: 1px solid rgba(200, 122, 26, 0.1);
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(20px);
}

.toggle-btn {
  padding: 0.875rem 2rem;
  background: transparent;
  border: none;
  border-radius: 100px;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.toggle-btn.active {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 16px rgba(200, 122, 26, 0.3);
}

.toggle-btn:hover:not(.active) {
  color: var(--text);
  background: rgba(200, 122, 26, 0.05);
}

.save-badge {
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pricing-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
  border: 1px solid rgba(200, 122, 26, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 122, 26, 0.2);
  box-shadow: 0 24px 48px rgba(200, 122, 26, 0.12), 0 8px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(19, 27, 46, 0.8) 0%, rgba(10, 15, 30, 0.6) 100%);
}

.pricing-card.featured {
  border: 2px solid rgba(200, 122, 26, 0.3);
  box-shadow: 0 16px 40px rgba(200, 122, 26, 0.15);
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--gradient-1);
  border-radius: 100px;
  /* font-size: 0.75rem; */
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 16px rgba(200, 122, 26, 0.4);
  text-align: center;
}

.plan-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.5px;
}

.plan-description {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.plan-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(200, 122, 26, 0.1);
}

.currency {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-right: 0.25rem;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.custom-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.plan-features li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.btn-plan {
  width: 100%;
  padding: 1.125rem 2rem;
  background: rgba(200, 122, 26, 0.08);
  border: 1.5px solid rgba(200, 122, 26, 0.25);
  border-radius: 100px;
  color: var(--primary-light);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  letter-spacing: 0.5px;
  margin-top: auto;
}

.btn-plan:hover {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 122, 26, 0.3);
}

.pricing-card.featured .btn-plan {
  background: var(--gradient-1);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(200, 122, 26, 0.25);
}

.pricing-card.featured .btn-plan:hover {
  box-shadow: 0 12px 32px rgba(200, 122, 26, 0.35);
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .carousel-track {
    animation: scroll 30s linear infinite;
  }

  .industry-card {
    min-width: 280px;
    padding: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid-three {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .pricing-toggle {
    flex-direction: column;
    width: 100%;
    padding: 0.75rem;
  }

  .toggle-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .industry-card {
    min-width: 240px;
    padding: 1.75rem;
  }

  .industry-icon {
    width: 56px;
    height: 56px;
  }

  .industry-name {
    font-size: 1.25rem;
  }

  .amount {
    font-size: 2.75rem;
  }

  .custom-price {
    font-size: 2rem;
  }
}

/* CSS for Media Outlets Section  */
.media-outlets-section {
    background: linear-gradient(180deg, var(--secondary) 0%, var(--bg-dark) 100%);
    padding: 6rem 0;
    position: relative;
}

.our-outlets-title {
    font-size: 3.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
    color: var(--text);
}

.header-line {
    width: 120px;
    height: 4px;
    background: var(--gradient-1);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(200, 122, 26, 0.3);
}

.outlet-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 5rem 0;
    padding: 0 2rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.outlet-row.visible {
    opacity: 1;
    transform: translateY(0);
}

.outlet-row.reverse-layout {
    direction: rtl;
}

.outlet-row.reverse-layout > * {
    direction: ltr;
}

.outlet-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.outlet-category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(200, 122, 26, 0.3);
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-scroll-reveal.visible .outlet-category-icon {
    opacity: 1;
    transform: scale(1);
}

.outlet-category-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.outlet-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -1px;
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.js-scroll-reveal.visible h2 {
    opacity: 1;
    transform: translateX(0);
}

.outlet-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.js-scroll-reveal.visible h3 {
    opacity: 1;
    transform: translateX(0);
}

.outlet-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.js-scroll-reveal.visible p {
    opacity: 1;
    transform: translateX(0);
}

.coverage-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.js-scroll-reveal.visible .coverage-text {
    opacity: 1;
    transform: translateX(0);
}

.coverage-text span {
    color: var(--primary-light);
    font-weight: 700;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(200, 122, 26, 0.08);
    border: 1.5px solid rgba(200, 122, 26, 0.25);
    border-radius: 100px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}

.js-scroll-reveal.visible .discover-btn {
    opacity: 1;
    transform: translateX(0);
}

.discover-btn:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(200, 122, 26, 0.3);
}

.outlet-image {
    position: relative;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.js-scroll-reveal.visible .outlet-image {
    opacity: 1;
    transform: scale(1);
}

.outlets-preview {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
    border: 1px solid rgba(200, 122, 26, 0.12);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.outlet-badge {
    padding: 0.875rem 1.75rem;
    background: rgba(200, 122, 26, 0.08);
    border: 1px solid rgba(200, 122, 26, 0.2);
    border-radius: 100px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.outlet-badge:hover {
    background: rgba(200, 122, 26, 0.15);
    border-color: rgba(200, 122, 26, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(200, 122, 26, 0.2);
}

.outlets-final-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
    border: 1px solid rgba(200, 122, 26, 0.12);
    border-radius: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.outlets-final-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.outlets-final-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.outlets-final-cta.visible h3 {
    opacity: 1;
    transform: translateY(0);
}

.outlets-final-cta p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.outlets-final-cta.visible p {
    opacity: 1;
    transform: translateY(0);
}

.outlets-final-cta .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.outlets-final-cta.visible .btn {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .outlet-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .outlet-row.reverse-layout {
        direction: ltr;
    }

    .outlet-image {
        order: -1;
    }

    .our-outlets-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .outlet-row {
        padding: 0 1.5rem;
        margin: 3rem 0;
    }

    .outlet-content h2 {
        font-size: 1.75rem;
    }

    .outlets-preview {
        padding: 2rem;
        min-height: 250px;
    }

    .outlet-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .outlets-final-cta {
        padding: 3rem 1.5rem;
    }

    .outlets-final-cta h3 {
        font-size: 1.5rem;
    }
}

/* ===== OUTLETS SHOWCASE SECTION ===== */
.outlets-showcase {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary) 100%);
    padding: 6rem 0;
}

.outlets-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.outlet-logo-card {
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.6) 0%, rgba(10, 15, 30, 0.4) 100%);
    border: 1px solid rgba(200, 122, 26, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.outlet-logo-card.outlet-hidden {
    display: none;
}

.outlets-grid.expanded .outlet-logo-card.outlet-hidden {
    display: flex;
    animation: fadeInScale 0.5s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.outlet-logo-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 122, 26, 0.25);
    box-shadow: 0 16px 40px rgba(200, 122, 26, 0.15), 0 8px 16px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(19, 27, 46, 0.8) 0%, rgba(10, 15, 30, 0.6) 100%);
}

.outlet-logo {
    width: 100%;
    text-align: center;
}

.outlet-logo span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.3px;
    display: block;
    line-height: 1.4;
}

.outlets-view-more {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    background: rgba(200, 122, 26, 0.08);
    border: 1.5px solid rgba(200, 122, 26, 0.25);
    border-radius: 100px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    font-family: inherit;
}

.btn-view-more:hover {
    background: var(--gradient-1);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 122, 26, 0.3);
}

.btn-view-more .btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-view-more.active .btn-icon {
    transform: rotate(180deg);
}

.outlet-logo img {
    max-width: 100%;
    max-height: 68px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .outlets-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .outlets-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .outlet-logo-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }

    .outlet-logo span {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .outlets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outlet-logo-card {
        padding: 1.25rem 0.875rem;
        min-height: 90px;
    }

    .outlet-logo span {
        font-size: 0.8125rem;
    }
}
