/* style.css - Revonex Premium Dark Theme V2 */

/* --- 1. CSS Değişkenleri (Variables) --- */
:root {
  /* Colors */
  --bg-dark: #050505;
  --bg-darker: rgba(0, 0, 0, 0.60);
  --bg-card: rgba(20, 20, 20, 0.60);
  --bg-card-hover: rgba(30, 30, 30, 0.70);
  --container-padding: 24px;
  
  --primary-orange: #FF9500;
  --primary-hover: #e08300;
  --primary-glow: rgba(255, 149, 0, 0.4);
  
  --text-white: #FFFFFF;
  --text-gray: #A0A0A0;
  --text-light-gray: #D1D1D1;
  
  /* Semantic Colors */
  --google-color: #4285F4;
  --meta-color: #0668E1;
  --seo-color: #34A853;
  --tech-color: #FFC800;
  --whatsapp-color: #25D366;
  --app-color: #8A2BE2;

  
  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  
  /* Borders & Shadows */
  --glass-border: 1px solid rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* --- 2. Reset & Base Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-gray);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section-padding {
  padding: var(--section-padding);
}

.bg-darker {
  background-color: var(--bg-darker);
}

/* --- 3. Typography Helpers --- */
.subtitle {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.highlight {
  color: var(--primary-orange);
}

.gradient-text {
  background: linear-gradient(90deg, #FFFFFF 0%, var(--primary-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

/* --- 4. Components --- */
/* Buttons */
.btn-primary-large, .btn-secondary-large, .btn-primary-sm, .btn-secondary-sm, .btn-whatsapp, .btn-whatsapp-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary-large {
  padding: 16px 32px;
  font-size: 1.125rem;
  background-color: var(--primary-orange);
  color: #000;
  border: none;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary-large:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-secondary-large {
  padding: 14px 32px;
  font-size: 1.125rem;
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-large:hover {
  border-color: var(--text-white);
  background-color: rgba(255,255,255,0.05);
}

.btn-primary-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  background-color: var(--primary-orange);
  color: #000;
  border: none;
}
.btn-primary-sm:hover { background-color: var(--primary-hover); }

.btn-secondary-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary-sm:hover { border-color: var(--primary-orange); color: var(--primary-orange); }

.btn-whatsapp {
  padding: 16px 24px;
  font-size: 1.125rem;
  background-color: var(--whatsapp-color);
  color: #fff;
  border: none;
}
.btn-whatsapp:hover { background-color: #20b858; transform: translateY(-2px); }

.btn-whatsapp-outline {
  padding: 14px 24px;
  font-size: 1.125rem;
  background-color: transparent;
  color: var(--whatsapp-color);
  border: 2px solid var(--whatsapp-color);
}
.btn-whatsapp-outline:hover { background-color: rgba(37, 211, 102, 0.1); }

.btn-text {
  display: inline-flex;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-orange);
  margin-top: auto;
}
.btn-text:hover { color: var(--text-white); }

/* Glass Cards */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.glow-orange {
  position: relative;
  overflow: hidden;
}
.glow-orange::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

/* --- 5. Layout Sections --- */

/* Header / Navbar */
.glass-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}
.glass-header.scrolled {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.95);
}

.glass-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo .revo, .logo .dijital, .intro-logo-container .revo { color: var(--text-white); }
.logo .nex, .intro-logo-container .nex { color: var(--primary-orange); }
.logo .dijital, .intro-logo-container .dijital { font-weight: 400; font-size: 0.9rem; margin-left: 5px; opacity: 0.7;}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light-gray);
}
.nav-links a:hover { color: var(--primary-orange); }

/* Hero Section */
.hero.premium-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px; /* Offset for header */
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255,149,0,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(66,133,244,0.1) 0%, transparent 40%),
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPSc4JyBoZWlnaHQ9JzgnPjxyZWN0IHdpZHRoPSc4JyBoZWlnaHQ9JzgnIGZpbGw9JyMwMDAnLz48cGF0aCBkPSdNMCAwaDh2OEgweicgZmlsbD0nbm9uZScvPjxwYXRoIGQ9J00wIDBoNHY0SDB6JyBmaWxsPSdyaWdodCcpPjwvc3ZnPg==');
  background-size: cover, cover, 30px 30px;
  opacity: 0.8;
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  z-index: 1;
}

.badge-pill {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-gray);
}
.mb-20 { margin-bottom: 20px; }

.hero-content h1 {
  font-size: 4rem;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Scroll Mouse */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.mouse {
  width: 24px; height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}
.mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  background: var(--primary-orange);
  border-radius: 2px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Animations */
.animate-fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Trust Stats */
.trust-stats {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  padding: 20px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition-normal);
}
.stat-item:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.15); }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light-gray);
}

/* Detailed Services */
.services-advanced-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-3d {
  perspective: 1000px;
  height: 100%;
}

.service-card-3d .card-inner {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.service-card-3d:hover .card-inner {
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
  background: var(--bg-card-hover);
}

.icon-wrapper {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.05);
}
.google-color { color: var(--google-color); }
.meta-color { color: var(--meta-color); }
.seo-color { color: var(--seo-color); }
.tech-color { color: var(--tech-color); }
.app-color { color: var(--app-color); }
.drone-color { color: var(--drone-color); }

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #FFF;
    font-family: var(--font-heading);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--primary-orange);
    background: rgba(255, 149, 0, 0.05);
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

/* Legal Page Styles */
.legal-content {
    line-height: 1.8;
    color: var(--text-light-gray);
}
.legal-content h2 {
    color: var(--primary-orange);
    margin-top: 40px;
    margin-bottom: 20px;
}
.legal-content p {
    margin-bottom: 15px;
}

.service-card-3d h3 { font-size: 1.5rem; margin-bottom: 20px; }

.feature-list {
  margin-bottom: 30px;
  flex-grow: 1;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-light-gray);
  font-size: 0.95rem;
}
.feature-list li svg { color: var(--primary-orange); flex-shrink: 0; width: 18px; height: 18px;}

.mt-50 { margin-top: 50px; }
.mt-30 { margin-top: 30px; }
.text-center { text-align: center; }

/* Why Us & Process */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.feature-rows {
  display: flex; flex-direction: column; gap: 30px;
  margin-top: 40px;
}
.f-row { display: flex; gap: 20px; }
.f-icon { font-size: 2rem; background: rgba(255,255,255,0.05); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 12px; flex-shrink:0;}
.f-row h4 { margin-bottom: 8px; font-size: 1.2rem; }

.timeline-list {
  margin-top: 40px;
  position: relative;
}
.timeline-list::before {
  content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1);
}
.timeline-list li {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}
.step-num {
  position: absolute; left: 0; top: 0;
  width: 50px; height: 50px;
  background: var(--bg-card);
  border: 1px solid var(--primary-orange);
  color: var(--primary-orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  z-index: 2;
}
.step-content h4 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-white);}


/* Results / Cases (Updated) */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card.premium {
  background: var(--bg-card);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex; flex-direction: column;
}

.case-card.premium:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-5px);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ecommerce { background: rgba(255, 149, 0, 0.1); color: var(--primary-orange); }
.highticket { background: rgba(66, 133, 244, 0.1); color: var(--google-color); }
.local { background: rgba(52, 168, 83, 0.1); color: var(--seo-color); }

.case-card h3 { font-size: 1.4rem; margin-bottom: 24px; }

.case-metrics {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.big-metric {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label { font-size: 0.9rem; color: var(--text-gray); }

.case-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex-grow: 1;}
.stat { display: flex; justify-content: space-between; font-size: 0.95rem; }
.stat .value { color: var(--text-white); font-weight: 600; }

.case-hover-action {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--transition-normal);
}
.case-card.premium:hover .case-hover-action {
  opacity: 1; transform: translateX(0);
}


/* Blog Preview */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--bg-card);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-normal);
}
.blog-card:hover { transform: translateY(-5px); }

.blog-img { height: 200px; width: 100%; }
.placeholder-gradient-1 { background: linear-gradient(135deg, #1a1a1a, #2a2a2a); }
.placeholder-gradient-2 { background: linear-gradient(135deg, #2a2a2a, #1a1a1a); }
.placeholder-gradient-3 { background: linear-gradient(135deg, #1a1a1a, #3a3a3a); }

.blog-content { padding: 30px; }
.blog-category {
  display: inline-block;
  font-size: 0.8rem; font-weight: 600; color: var(--primary-orange);
  margin-bottom: 12px;
}
.blog-content h3 { font-size: 1.2rem; margin-bottom: 20px; line-height: 1.4; }


/* Bottom CTA */
.cta-box {
  padding: 60px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
  border-color: rgba(255, 149, 0, 0.3);
}
.cta-box h2 { font-size: 2.5rem; margin-bottom: 16px; }
.cta-box p { font-size: 1.2rem; max-width: 600px; margin: 0 auto; }
.justify-center { justify-content: center; }

/* Footer */
.main-footer {
  background: var(--bg-darker);
  padding: 80px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand p { margin: 20px 0; max-width: 300px; }
.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 600;
}
.social-links a:hover { background: var(--primary-orange); color: #000; }

.footer-links h4, .footer-contact h4 { margin-bottom: 24px; font-size: 1.1rem; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--text-white); padding-left: 5px; }

.footer-contact ul li { margin-bottom: 16px; color: var(--text-gray); display: flex; flex-direction: column;}
.footer-contact a { color: var(--text-white); font-weight: 500; font-size: 1.1rem;}
.footer-contact a:hover { color: var(--primary-orange); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.legal-links { display: flex; gap: 24px; }
.legal-links a:hover { color: var(--text-white); }



/* --- Advanced Animations (21st Dev Style) --- */

/* Sequential Timeline Animation */
.animated-timeline {
  position: relative;
}

.timeline-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered Delay for Timeline Items */
.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.3s; }
.timeline-item:nth-child(3) { transition-delay: 0.5s; }
.timeline-item:nth-child(4) { transition-delay: 0.7s; }

/* Enhanced 3D Hover for Cases */
.case-card.premium {
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.case-card.premium:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-orange);
  box-shadow: 0 20px 40px rgba(255, 149, 0, 0.15);
}

.case-card.premium::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.case-card.premium:hover::after {
  left: 150%;
}


/* --- Animated Background System --- */
.animated-bg-container {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Moving Blobs */
.bg-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
  animation: blob-move 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-blob:nth-child(2) {
  animation-duration: 25s;
  animation-delay: -5s;
}

.bg-blob:nth-child(3) {
  animation-duration: 30s;
  animation-delay: -10s;
}

@keyframes blob-move {
  0% { transform: translate(-20%, -20%) rotate(0deg) scale(1); }
  33% { transform: translate(50%, 10%) rotate(120deg) scale(1.2); }
  66% { transform: translate(-10%, 60%) rotate(240deg) scale(0.8); }
  100% { transform: translate(30%, -10%) rotate(360deg) scale(1.1); }
}

/* Noise Overlay */
.noise-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Sector Palettes */
.bg-guzellik .bg-blob:nth-child(1) { background: #FF3BB1; top: -10%; left: -10%; }
.bg-guzellik .bg-blob:nth-child(2) { background: #FF9500; bottom: -10%; right: -10%; }
.bg-guzellik .bg-blob:nth-child(3) { background: #8A2BE2; top: 40%; left: 30%; }

.bg-canta .bg-blob:nth-child(1) { background: #FF9500; top: -10%; left: -10%; }
.bg-canta .bg-blob:nth-child(2) { background: #633300; bottom: -10%; right: -10%; }
.bg-canta .bg-blob:nth-child(3) { background: #FFC800; top: 40%; left: 30%; }

.bg-teknoloji .bg-blob:nth-child(1) { background: #4285F4; top: -10%; left: -10%; }
.bg-teknoloji .bg-blob:nth-child(2) { background: #0668E1; bottom: -10%; right: -10%; }
.bg-teknoloji .bg-blob:nth-child(3) { background: #FFFFFF; top: 40%; left: 30%; opacity: 0.2; }

/* Case Detail Card Adjustment */
.case-detail-card.glass-card {
  background: rgba(10, 10, 10, 0.60) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
/* --- Analytical Dashboard Components --- */
.dashboard-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.case-analytics-card {
  padding: 40px;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.60);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.case-analytics-card:hover {
  border-color: rgba(255, 149, 0, 0.3);
  background: rgba(15, 15, 15, 0.70);
}

.analysis-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

/* --- Blog Page Styles --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: rgba(20, 20, 20, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 20, 20, 0.75);
    border-color: rgba(255, 149, 0, 0.3);
}

.blog-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 149, 0, 0.1);
    color: var(--primary-orange);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
    width: fit-content;
}

.blog-card h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-white);
}

.btn-read-more {
    margin-top: auto;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: none;
    border: none;
}

/* --- Modal System --- */
.blog-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    padding: 60px 20px;
}

.blog-modal.active {
    display: block;
    opacity: 1;
}

.modal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.modal-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-body {
    padding: 50px;
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light-gray);
}

.modal-text p { margin-bottom: 25px; }

.modal-close {
    position: fixed;
    top: 30px; right: 30px;
    width: 50px; height: 50px;
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    transition: transform var(--transition-fast);
}

.modal-close:hover { transform: scale(1.1) rotate(90deg); }

.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.tip-card { 
    background: rgba(255, 149, 0, 0.03); 
    border: 1px solid rgba(255, 149, 0, 0.1); 
    padding: 30px; 
    border-radius: 20px;
    transition: all 0.3s ease;
}
.tip-card:hover { border-color: var(--primary-orange); background: rgba(255, 149, 0, 0.05); }
.tip-card h4 { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; color: var(--primary-orange); }

/* --- Mobile Nav --- */
@media (max-width: 992px) {
  .analysis-layout { grid-template-columns: 1fr; }
}

.strategy-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strategy-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 149, 0, 0.1);
  color: var(--primary-orange);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid rgba(255, 149, 0, 0.2);
  width: fit-content;
}

.before-after-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status-box {
  padding: 24px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid #ff4b2b;
  position: relative;
}

.status-box.solution {
  border-left-color: #2ecc71;
  background: rgba(46, 204, 113, 0.05);
}

.status-box h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.6;
  color: var(--text-white);
}

.status-box p {
  font-size: 1rem;
  color: var(--text-light-gray);
  font-weight: 500;
  line-height: 1.4;
}

.data-visualizer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kpi-item {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.kpi-item .v {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-white);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.kpi-item .l {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-gray);
  font-weight: 700;
  letter-spacing: 1px;
}

.growth-meter {
  padding: 25px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.3);
}

.growth-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.growth-header span { font-size: 0.9rem; font-weight: 600; }

.meter-track {
  height: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-orange), #ff4b2b);
  width: 0;
  transition: width 2.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.revealed .meter-fill { width: var(--p-width); }

#intro-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: #050505;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-content {
  text-align: center;
}

.intro-logo-container {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: introReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-logo-container .dijital {
  font-size: 1rem;
  letter-spacing: 5px;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-top: -10px;
}

.intro-loader {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: var(--primary-orange);
  animation: loaderProgress 1.5s ease forwards;
}

@keyframes introReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loaderProgress {
  to { width: 100%; }
}

/* Service Colors */
.tech-color { color: #00f2ff; text-shadow: 0 0 10px rgba(0,242,255,0.3); }
.google-color { color: #4285f4; }
.meta-color { color: #0081fb; }
.seo-color { color: #34a853; }

/* --- Phase 5: Advanced Effects --- */

/* Dotted Surface Utility */
.dotted-surface {
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* Animated Mesh Gradient (Çanta Sektörü) */
.mesh-gradient-canta {
  position: relative;
  background: #050505;
  overflow: hidden;
}

.mesh-gradient-canta::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 149, 0, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 70% 60%, rgba(66, 133, 244, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 40% 80%, rgba(52, 168, 83, 0.1) 0%, transparent 40%);
  filter: blur(80px);
  animation: meshRotate 20s linear infinite;
  z-index: 0;
}

@keyframes meshRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Testimonials Columns (Hap Bilgiler) */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.tip-card {
  flex: 1 1 300px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-normal);
}

.tip-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary-orange);
  transform: translateY(-5px);
}

.tip-card h4 {
  color: var(--primary-orange);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tip-card p {
  font-size: 0.95rem;
  color: var(--text-light-gray);
}

/* Gravity Hero Canvas */
#gravity-canvas {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Admin Access Styles */
.nav-admin-link {
    display: flex;
    align-items: center;
    color: var(--white-80);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-admin-link:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-admin-btn {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 149, 0, 0.1);
    color: var(--primary-color) !important;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 149, 0, 0.2);
    text-decoration: none;
}

.footer-admin-btn:hover {
    background: var(--primary-color);
    color: #000 !important;
    transform: translateY(-2px);
}

/* =========================================================================
   GLOBAL 3D SPACE AESTHETIC (APPLIED TO ALL PAGES)
   ========================================================================= */
body.dark-theme, body.inner-page {
    background: #03050c; /* Deep space black */
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(30, 10, 80, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(10, 40, 80, 0.5) 0%, transparent 40%),
        url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?q=80&w=2500&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Essential Grid - Guaranteed NO Overlapping */
.premium-container-3d {
    max-width: 1500px;
    margin: 0 auto;
    padding: 140px 30px 100px 30px; /* Safe header clearance */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    perspective: 2500px; /* Crucial for 3D depth */
    min-height: 100vh;
}

.col-left, .col-right {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Spacing between cards vertically */
    z-index: 2;
}

/* 3D Glass Platform - The Core Component */
.platform-card-3d {
    position: relative;
    transform-style: preserve-3d;
    background: rgba(18, 22, 38, 0.65);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 45px;
    /* Default isometric tilt */
    transform: rotateX(15deg) rotateY(10deg);
    box-shadow: 
        -30px 40px 50px rgba(0,0,0,0.7),
        inset 0 0 40px rgba(255,255,255,0.02);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s;
    animation: gentleFloat 8s infinite alternate ease-in-out;
}

/* Create the 3D 'thickness/slab' effect below the card */
.platform-card-3d::after {
    content: '';
    position: absolute;
    top: 20px; left: -20px; right: 20px; bottom: -20px;
    background: rgba(10, 12, 25, 0.9);
    border-radius: 30px;
    transform: translateZ(-50px);
    box-shadow: -20px 20px 40px rgba(0,0,0,0.9);
    z-index: -1;
    border: 1px solid rgba(40,50,80,0.5);
    transition: all 0.5s;
}

/* Holographic Interaction */
.platform-card-3d:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 60px rgba(0,0,0,0.8),
        inset 0 0 50px rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.3);
    z-index: 10;
}
.platform-card-3d:hover::after {
    transform: translateZ(-30px); left: 0; bottom: -15px; right: 0; top: 15px;
}

@keyframes gentleFloat {
    0% { transform: rotateX(15deg) rotateY(10deg) translateY(0px); }
    100% { transform: rotateX(15deg) rotateY(10deg) translateY(-20px); }
}

/* Nested Content inside the 3D Card */
.card-content {
    transform: translateZ(60px); /* Lifts content off the glass */
    position: relative;
}

.title-3d {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.8);
    letter-spacing: -1px;
    line-height: 1.2;
}

/* Glowing Badge feature lists */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}
.badge-3d {
    background: rgba(10, 15, 25, 0.60);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
    transition: 0.3s;
    cursor: default;
}
.badge-3d:hover {
    background: rgba(30, 40, 60, 0.75);
    transform: translateX(5px) translateZ(10px);
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.badge-icon {
    font-weight: bold; margin-right: 10px; font-size: 1.1rem;
}

/* Premium Holographic Buttons */
.btn-neon {
    display: inline-flex;
    justify-content: center; align-items: center;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    color: #fff !important;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(40px);
    pointer-events: auto; /* ensure clickable */
}

.btn-orange { background: linear-gradient(135deg, #ff9900, #ff5500); box-shadow: 0 10px 30px rgba(255, 100, 0, 0.4); }
.btn-purple { background: linear-gradient(135deg, #a64dff, #6600cc); box-shadow: 0 10px 30px rgba(166, 77, 255, 0.4); }
.btn-cyan { background: linear-gradient(135deg, #00d4ff, #0088cc); color: #000 !important; box-shadow: 0 10px 30px rgba(0, 204, 255, 0.4); text-shadow: none; }
.btn-blue { background: linear-gradient(135deg, #4285F4, #0b50cc); box-shadow: 0 10px 30px rgba(66, 133, 244, 0.4); }

.btn-neon::before {
    content: ''; position: absolute; top:0; left:-100%; width:50%; height:100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.6s;
}
.btn-neon:hover {
    transform: translateZ(60px) translateY(-5px) scale(1.05);
}
.btn-neon:hover::before { left: 200%; }

/* Description text for Strategy/Ads */
.desc-text {
    color: #b0b5be;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 90%;
    font-weight: 400;
}

/* --- 6. Responsive Flow & Mobile Menu --- */

/* Mobile Menu Toggle (Hamburger) */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Burger Animation */
.mobile-nav-toggle.active span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

/* Sidebar Drawer Menu */
@media (max-width: 991px) {
    .container { width: 100% !important; max-width: 100% !important; padding: 0 20px !important; }
    .section-padding { padding: 60px 0 !important; }
    .premium-container-3d { grid-template-columns: 1fr !important; gap: 30px !important; padding-top: 80px !important; }
    .mobile-nav-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1500;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active { right: 0; }
    .nav-links li { width: 100%; text-align: center; }
    .nav-links a { font-size: 1.1rem; font-weight: 600; display: block; padding: 12px; }
    .title { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    /* Full Width & Flush Fit Layout */
    html, body { overflow-x: hidden !important; position: relative; width: 100%; margin: 0; padding: 0; }
    
    .container { width: 100% !important; max-width: 100% !important; padding: 0 15px !important; }
    
    /* Hero Section - Optimized for Height and Fit */
    .hero.premium-hero { padding: 100px 0 40px; text-align: center; min-height: auto; }
    .hero-content { max-width: 100% !important; width: 100% !important; padding: 0 !important; }
    #gravity-canvas { height: 320px !important; margin-bottom: 20px; width: 100% !important; }
    #gravity-canvas canvas { width: 100% !important; height: 100% !important; }
    
    .hero-actions { flex-direction: column; gap: 12px; margin-top: 25px; width: 100%; }
    .btn-primary-large, .btn-secondary-large { width: 100% !important; display: flex; padding: 14px 20px; font-size: 1rem; }
    
    /* Stacking Everything to Full Width */
    .premium-container-3d, .two-col-layout, .feature-rows, .dashboard-grid, .analysis-layout { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
        width: 100% !important;
    }
    
    /* Ensure internal sections stack (Strategy, Timeline etc) */
    .why-us-content, .process-timeline, .col-left, .col-right {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Inline Grid Overrides (Hizmetler & Forms) */
    .feature-list, .form-group-row, [style*="grid-template-columns: 1fr 1fr"], [style*="grid-template-columns: repeat"] {
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }
    
    /* Expand Glass Cards to Full Width */
    .glass-card, [class*="card"], .platform-card-3d {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        margin: 0 0 20px 0 !important;
        transform: none !important; /* Avoid side shifts */
    }
    
    .glass-card[style*="display: flex"] {
        flex-direction: column !important;
        padding: 25px 15px !important;
        gap: 20px !important;
    }
    
    /* Specific Fix for Hizmet Detail Cards */
    #web, #app, #dron, .glass-card[style*="padding: 50px"] {
        padding: 30px 15px !important;
        margin-bottom: 30px !important;
    }

    [style*="min-width: 300px"] {
        min-width: 100% !important;
    }

    /* Data KPI Cards */
    .case-analytics-card { padding: 20px 15px !important; }
    .kpi-row { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
    .kpi-item { padding: 15px !important; width: 100% !important; }
    .kpi-item .v { font-size: 1.8rem !important; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; gap: 40px; text-align: center; }
    .footer-brand p { margin: 15px auto; width: 100%; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; padding: 20px 0 40px; }
}

@media (max-width: 480px) {
    :root { --container-padding: 12px; }
    .title { font-size: 1.7rem !important; letter-spacing: -0.5px; line-height: 1.2; }
    .subtitle { font-size: 0.7rem; }
    .kpi-row { grid-template-columns: 1fr !important; }
    .case-analytics-card .title { font-size: 1.4rem !important; }
    
    .btn-neon { padding: 12px 20px !important; font-size: 0.9rem !important; }
    
    /* Smaller Padding for tight spaces */
    .section-padding { padding: 50px 0 !important; }
    
    /* Badge optimization */
    .badge-3d { padding: 8px 12px; font-size: 0.8rem; }
    
    /* Contact Page 3D Cards Fix */
    .premium-container-3d { padding-top: 80px !important; }
    .desc-text { font-size: 0.85rem; line-height: 1.5; }
}
