/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  
  /* Brand Colors: Indigo & Sunset Orange */
  --brand-primary: #4f46e5;
  --brand-secondary: #f97316;
  --brand-primary-light: rgba(79, 70, 229, 0.08);
  --brand-secondary-light: rgba(249, 115, 22, 0.08);
  
  --gradient-1: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.05);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(90% + 10px);
  max-width: 1260px;
  padding: 16px 32px;
  border-radius: 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Always have glass effect for floating header */
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

header.scrolled {
  padding: 12px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  top: 16px;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -1.5px;
  display: flex;
  align-items: center;
}

.logo span.highlight-text {
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo span.dot {
  color: var(--brand-secondary);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 0.5;
  margin-left: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--brand-primary);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
  border-radius: 2px;
}

nav ul li a:hover::after {
  width: 100%;
}

.cta-btn {
  background: var(--gradient-1);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
  white-space: nowrap;
}

.cta-btn:hover {
  background: var(--gradient-1);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.mobile-only {
  display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Hero Section - 2 Column Layout */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

/* Decorative Background Elements */
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--brand-primary-light);
  top: -150px;
  right: -100px;
  animation: float 10s infinite alternate ease-in-out;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--brand-secondary-light);
  bottom: 0;
  left: -100px;
  animation: float 12s infinite alternate-reverse ease-in-out;
}

@keyframes float {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
  100% { transform: translate(20px, -20px); }
}

.hero-container,
.page-container {
  width: calc(90% + 10px);
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: grid;
  gap: 60px;
}

.hero-container {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.hero-content {
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.badge span {
  color: var(--brand-secondary);
  font-weight: 600;
  margin-right: 8px;
  font-size: 1.2rem;
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 4.5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero h1 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.secondary-btn {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.secondary-btn:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.2);
}

/* Image Section styles */
.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: block;
}

.hero-image-wrapper:hover img {
  transform: translateY(-10px) scale(1.02);
}

/* Floating elements behind image */
.image-decoration {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px dashed var(--brand-secondary);
  border-radius: 50%;
  bottom: -20px;
  right: -20px;
  z-index: -1;
  animation: spin 20s linear infinite;
  opacity: 0.5;
}

.image-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(var(--brand-primary) 2px, transparent 2px);
  background-size: 16px 16px;
  top: -20px;
  left: -20px;
  z-index: -1;
  opacity: 0.3;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* --- SERVICES SECTION --- */
.services {
  padding: 70px 0;
  background-color: var(--bg-primary);
  position: relative;
}

.services-container {
  width: calc(90% + 10px);
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header .subtitle {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header h2 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- ABOUT SECTION --- */
.about {
  padding: 70px 0;
  background-color: #f8fafc;
}

/* --- BENTO GRID ABOUT SECTION --- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.bento-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.05);
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}

.bento-main {
  grid-column: span 2;
  background: #ffffff;
}

.bento-main .subtitle {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.bento-main h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.bento-main h2 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-main p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.8;
}

.bento-stats {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  justify-content: center;
  gap: 0;
}

.bento-stats::before {
  content: '';
  position: absolute;
  top: 0; 
  right: 0;
  width: 150px; 
  height: 150px;
  background: var(--brand-secondary);
  filter: blur(80px);
  opacity: 0.2;
  z-index: 0;
  border-radius: 50%;
}

.bento-stats::after {
  content: '';
  position: absolute;
  bottom: 0; 
  left: 0;
  width: 150px; 
  height: 150px;
  background: var(--brand-primary);
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
  border-radius: 50%;
}

.bento-stats:hover {
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.1);
}

.bento-stats .stat-item {
  position: relative;
  z-index: 1;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}

.bento-stats .stat-item:last-child {
  border-bottom: none;
}

.bento-stats h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
  line-height: 1;
}

.bento-stats span {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
}

.bento-feature .feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.bento-feature h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.bento-feature p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- SERVICES SECTION --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.06);
  border-color: rgba(79, 70, 229, 0.3);
  background: linear-gradient(to bottom right, #ffffff, #f8fafc);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--brand-primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.icon-wrapper i {
  font-size: 32px;
  color: var(--brand-primary);
  transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
  background: var(--gradient-1);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.service-card:hover .icon-wrapper i {
  color: #fff;
}

.service-content {
  display: flex;
  flex-direction: column;
}

.service-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  padding: 8px 16px;
  background: var(--brand-primary-light);
  border-radius: 30px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-card:hover .service-link {
  background: var(--brand-primary);
  color: #fff;
}

.service-card:hover .service-link i {
  transform: translateX(5px);
}

/* --- EXPERIENCE SECTION --- */
.experience {
  padding: 70px 0;
  background-color: #ffffff;
}

.sticky-deck {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  padding-bottom: 60px; /* Space to scroll past the last sticky card */
}

.sticky-card {
  position: sticky;
  top: calc(120px + var(--index) * 15px);
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 40px;
  align-items: center;
  transition: all 0.3s ease;
  z-index: var(--index);
  transform-origin: top center;
}

.sticky-card-date {
  flex-shrink: 0;
  width: 200px;
}

.date-badge {
  color: var(--brand-primary);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.5px;
  background: var(--brand-primary-light);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
}

.sticky-card-content {
  flex-grow: 1;
}

.sticky-card-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.sticky-card-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* --- CASE STUDIES SECTION --- */
.case-studies {
  padding: 70px 0;
  background-color: var(--bg-secondary);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.04);
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.case-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-card:hover .img-placeholder {
  transform: scale(1.08);
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.4); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.view-btn {
  background: #fff;
  color: var(--text-primary);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-card:hover .view-btn {
  transform: translateY(0);
}

.view-btn:hover {
  background: var(--brand-primary);
  color: #fff;
}

.case-info {
  padding: 35px;
}

.case-category {
  display: inline-block;
  color: var(--brand-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.case-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.case-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials {
  padding: 70px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 400px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.08);
  border-color: rgba(79, 70, 229, 0.2);
}

.stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.quote {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 30px;
  font-style: italic;
}

.client-info h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.client-info span {
  font-size: 0.9rem;
  color: var(--brand-secondary);
  font-weight: 600;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 15px));
  }
}

/* --- CONTACT US SECTION (Modular Bento) --- */
.contact-bento-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.contact-bento-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.contact-bento-header .subtitle {
  display: inline-block;
  font-weight: 700;
  color: var(--brand-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.contact-bento-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.contact-bento-header h2 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-bento-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  width: 100%;
}

.c-bento-card {
  background: #ffffff;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.c-bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(79, 70, 229, 0.08);
}

.c-bento-right-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Form Styles */
.form-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.form-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.bento-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.bento-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.bento-group label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.bento-group input,
.bento-group textarea {
  width: 100%;
  padding: 16px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.bento-group input:focus,
.bento-group textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px var(--brand-primary-light);
}

.bento-submit-btn {
  background: var(--gradient-1);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
}

.bento-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

/* Info Cards */
.info-icon {
  width: 60px;
  height: 60px;
  background: var(--brand-primary-light);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.info-card h3,
.social-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.info-list a:hover {
  color: var(--brand-primary);
}

.social-card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.bento-social-links {
  display: flex;
  gap: 12px;
}

.bento-social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.3rem;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.bento-social-links a:hover {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.2);
}

/* --- MEGA FOOTER --- */
.mega-footer {
  background: #020617; /* Deep Slate Black */
  padding: 80px 0 0;
  border-top: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-col p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.links-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.links-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.links-col a:hover {
  color: #a78bfa;
  padding-left: 5px;
}

.footer-newsletter {
  display: flex;
  position: relative;
}

.footer-newsletter input {
  width: 100%;
  padding: 16px 60px 16px 20px;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.footer-newsletter input::placeholder {
  color: #64748b;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: #a78bfa;
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.2);
}

.footer-newsletter button {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 40px;
  background: var(--gradient-1);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-newsletter button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #a78bfa;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpAnim 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }

@keyframes fadeUpAnim {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }
  
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .hero-container, .services-container, .page-container {
    padding: 0 20px;
    width: 100%;
  }

  nav ul {
    display: none;
  }
  
  .cta-btn.desktop-only {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1001;
  }
  
  .hero-btns {
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .cta-btn, .secondary-btn {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .service-card {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .case-image {
    height: 240px;
  }

  .case-info {
    padding: 25px;
  }

  .case-info h3 {
    font-size: 1.35rem;
  }

  .case-info p {
    font-size: 0.95rem;
  }
  
  /* Bento Grid Mobile */
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .bento-main {
    grid-column: span 1;
  }
  
  .bento-main h2 {
    font-size: 2.2rem;
  }
  
  .bento-stats {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .bento-stats .stat-item {
    border-bottom: none;
    border-right: 1px solid rgba(0,0,0,0.06);
    padding: 10px 20px;
    text-align: center;
    flex: 1;
  }
  
  .bento-stats .stat-item:last-child {
    border-right: none;
  }
  
  .bento-stats h3 {
    font-size: 2.5rem;
  }
  
  /* Contact Mobile */
  .contact-bento-grid {
    grid-template-columns: 1fr;
  }
  
  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  /* Sticky Deck Mobile (991px) */
  .sticky-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
  }
  .sticky-card-date {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-container, .services-container, .page-container {
    padding: 0 16px;
    width: 100%;
  }

  /* Global Mobile Padding & Typography Adjustments */
  section {
    padding: 60px 0 !important;
  }
  
  .hero {
    padding: 120px 0 40px !important;
  }

  .section-header h2 {
    font-size: 1.7rem !important;
  }

  .hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.2;
  }

  .hero p, .section-header p, .about-left p, .bento-main p {
    font-size: 0.9rem !important;
  }
  
  .c-bento-card {
    padding: 30px;
  }
  
  .contact-bento-header h2 {
    font-size: 2rem !important;
  }
  
  .bento-submit-btn {
    width: 100%;
  }
  
  .bento-form-row {
    grid-template-columns: 1fr;
  }
  
  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .bento-box {
    padding: 24px;
  }

  .service-card {
    padding: 24px;
    gap: 16px;
  }

  .bento-stats {
    flex-direction: column;
  }
  
  .bento-stats .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 15px 0;
  }
  
  .bento-stats .stat-item:last-child {
    border-bottom: none;
  }
  
  .bento-stats h3 {
    font-size: 2rem !important;
  }
  
  .bento-main h2 {
    font-size: 1.6rem !important;
  }

  .sticky-card {
    padding: 24px;
    top: calc(100px + var(--index) * 10px);
  }
  .sticky-card-content h3 {
    font-size: 1.3rem !important;
  }
  .sticky-card-content p {
    font-size: 0.9rem !important;
  }
  
  .testimonial-card {
    width: 300px;
    padding: 30px;
  }
  .quote {
    font-size: 1.05rem;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 120px 40px 40px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-left: 1px solid var(--glass-border);
  }
  
  nav.nav-active {
    right: 0;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }
  
  nav ul li a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    display: inline-block;
  }
  
  nav ul li a:hover {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .mobile-only {
    display: inline-flex !important;
    margin-top: auto;
    width: 100%;
    justify-content: center;
  }
  
  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
  }
  
  .hero-btns a {
    justify-content: center;
    width: 100%;
  }

  .case-info h3 {
    font-size: 1.25rem;
  }
}
