@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --primary-orange: #FF6600;
  --primary-orange-hover: #E05300;
  --primary-orange-rgb: 255, 102, 0;
  --primary-blue: #0F2C59;
  --primary-blue-hover: #0a1e3d;
  --primary-blue-rgb: 15, 44, 89;
  --dark-bg: #030A16;
  --dark-bg-card: #081225;
  --light-bg: #F8FAFC;
  --card-white: #FFFFFF;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dark: #0F172A;
  --text-dark-muted: #475569;
  --border-light: rgba(15, 44, 89, 0.08);
  --border-dark: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(3, 10, 22, 0.75);
  --glass-border: rgba(255, 255, 255, 0.06);

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 44, 89, 0.06);
  --shadow-lg: 0 16px 36px rgba(15, 44, 89, 0.12);
  --shadow-glow: 0 0 30px rgba(255, 102, 0, 0.25);
  --shadow-glow-blue: 0 0 30px rgba(15, 44, 89, 0.25);

  /* Transitions & Speed */
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.dark-theme {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--light-bg);
}
body.dark-theme ::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}
body.dark-theme ::-webkit-scrollbar-thumb {
  background: #1E293B;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background Gradients/Blobs */
.bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.12) 0%, rgba(15, 44, 89, 0.05) 50%, rgba(0,0,0,0) 100%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
}

.bg-glow-1 {
  top: -10%;
  right: -10%;
}

.bg-glow-2 {
  top: 50%;
  left: -20%;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-light);
}

body.dark-theme header.scrolled {
  background: rgba(3, 10, 22, 0.85);
  border-bottom: 1px solid var(--border-dark);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-container img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .logo-container img {
  height: 42px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

body.dark-theme .logo-text {
  color: var(--text-light);
}

.logo-text span.brand-accent {
  color: var(--primary-orange);
}

.logo-text span.brand-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--text-dark-muted);
  margin-top: 0.1rem;
}

body.dark-theme .logo-text span.brand-sub {
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark-muted);
  position: relative;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
}

body.dark-theme .nav-links a {
  color: var(--text-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-orange);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-orange);
}

body.dark-theme .nav-links a:hover {
  color: var(--text-light);
}

.nav-links a.active {
  color: var(--primary-blue);
  font-weight: 600;
}

body.dark-theme .nav-links a.active {
  color: var(--primary-orange);
}

.nav-links a.active::after {
  width: 100%;
}

/* Call to Action Button */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
  background: var(--primary-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

body.dark-theme .btn-secondary {
  color: var(--text-light);
  border-color: var(--border-dark);
}

.btn-secondary:hover {
  background: rgba(15, 44, 89, 0.05);
  transform: translateY(-2px);
}

body.dark-theme .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.theme-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-fast);
}

body.dark-theme .theme-toggle-btn {
  color: var(--primary-orange);
}

.theme-toggle-btn:hover {
  background: rgba(15, 44, 89, 0.08);
}

body.dark-theme .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary-blue);
  cursor: pointer;
}

body.dark-theme .mobile-nav-toggle {
  color: var(--text-light);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-orange);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary-blue);
}

body.dark-theme .hero-title {
  color: var(--text-light);
}

.hero-title span.glow-text {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #FFAA66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-dark-muted);
}

body.dark-theme .hero-desc {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Hero Glass Card Graphic */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-card-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: var(--transition-slow);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

body.dark-theme .logo-card-frame {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-glow-blue);
}

.logo-card-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.logo-card-frame img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Floating Elements for Premium UI */
.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

body.dark-theme .floating-element {
  background: rgba(8, 18, 37, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.float-1 {
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.float-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
}

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

/* Section Common Styling */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--primary-orange);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

body.dark-theme .section-title {
  color: var(--text-light);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-dark-muted);
}

body.dark-theme .section-desc {
  color: var(--text-muted);
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

/* Feature/Service Cards */
.service-card {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 3rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

body.dark-theme .service-card {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 102, 0, 0.2);
}

body.dark-theme .service-card:hover {
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-card:hover::after {
  height: 100%;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(15, 44, 89, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

body.dark-theme .service-card-icon {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary-orange);
}

.service-card:hover .service-card-icon {
  background: var(--primary-orange);
  color: var(--text-light);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-blue);
}

body.dark-theme .service-card h3 {
  color: var(--text-light);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-dark-muted);
}

body.dark-theme .service-card p {
  color: var(--text-muted);
}

.service-card .learn-more {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-fast);
}

body.dark-theme .service-card .learn-more {
  color: var(--primary-orange);
}

.service-card .learn-more i {
  transition: var(--transition-fast);
}

.service-card:hover .learn-more i {
  transform: translateX(5px);
}

/* Service Detail View Grid (5 items) */
.service-pill-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-pill {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-smooth);
}

body.dark-theme .service-pill {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
}

.service-pill:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.service-pill img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-pill-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
}

body.dark-theme .service-pill-title {
  color: var(--text-light);
}

/* Pillars Section (Insights, Innovation, Impact) */
.pillars-section {
  background: var(--primary-blue);
  color: var(--text-light);
  border-radius: 36px;
  padding: 6rem 4rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pillars-section .bg-glow {
  background: radial-gradient(circle, rgba(255, 102, 0, 0.2) 0%, rgba(255,255,255,0) 70%);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-top: 4rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  position: absolute;
  top: -1.5rem;
  left: 0;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-orange);
  position: relative;
  z-index: 1;
}

.pillar-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* About / Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

body.dark-theme .stat-item {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-orange);
  line-height: 1.2;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-blue);
  margin-top: 0.5rem;
}

body.dark-theme .stat-label {
  color: var(--text-light);
}

/* Testimonial Section */
.testimonials-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-card {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 4rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
}

body.dark-theme .testimonial-card {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: rgba(255, 102, 0, 0.15);
  margin-bottom: 2rem;
  display: block;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

body.dark-theme .testimonial-text {
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-blue);
}

body.dark-theme .author-name {
  color: var(--primary-orange);
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

body.dark-theme .author-role {
  color: var(--text-muted);
}

/* Contact Page / Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
}

body.dark-theme .contact-info-title {
  color: var(--text-light);
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-card {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

body.dark-theme .contact-detail-card {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
}

.contact-detail-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-orange);
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 102, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: 1.25rem;
}

.contact-detail-content {
  display: flex;
  flex-direction: column;
}

.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark-muted);
}

body.dark-theme .contact-detail-label {
  color: var(--text-muted);
}

.contact-detail-value {
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary-blue);
  text-decoration: none;
}

body.dark-theme .contact-detail-value {
  color: var(--text-light);
}

/* Contact Form */
.contact-form-container {
  background: var(--card-white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

body.dark-theme .contact-form-container {
  background: var(--dark-bg-card);
  border: 1px solid var(--border-dark);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
}

body.dark-theme .form-group label {
  color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border-light);
  background-color: var(--light-bg);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
  border: 1.5px solid var(--border-dark);
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.15);
  background-color: var(--card-white);
}

body.dark-theme .form-group input:focus,
body.dark-theme .form-group select:focus,
body.dark-theme .form-group textarea:focus {
  background-color: var(--dark-bg-card);
}

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

.form-submit-btn {
  width: 100%;
  border: none;
  font-size: 1rem;
  padding: 1rem;
}

/* Call to Action strip */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a3e75 100%);
  color: var(--text-light);
  text-align: center;
  padding: 6rem 2rem;
  border-radius: 24px;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
}

.cta-strip p {
  max-width: 600px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Footer styling */
footer {
  background-color: var(--primary-blue);
  color: var(--text-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
}

body.dark-theme footer {
  background-color: #020710;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  align-self: flex-start;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 300px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-orange);
  transform: translateX(3px);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-orange);
  color: var(--text-light);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-orange);
}

/* Animations / View Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Font Awesome / Icons Helper classes (if user loads standard FontAwesome) */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Queries */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 2rem;
  }
  .hero-title {
    font-size: 3rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-pill-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pillars-grid {
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    align-items: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-graphic {
    order: -1;
  }
  .floating-element {
    display: none;
  }
  .logo-card-frame {
    transform: none !important;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--light-bg);
    flex-direction: column;
    padding: 80px 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
    align-items: flex-start;
  }
  body.dark-theme .nav-links {
    background: var(--dark-bg);
  }
  .nav-links.active {
    right: 0;
  }
  .mobile-nav-toggle {
    display: block;
    z-index: 1000;
  }
  .grid-3, .grid-2, .pillars-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .service-pill-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pillars-section {
    padding: 4rem 2rem;
  }
  .testimonial-card {
    padding: 2rem;
  }
  .contact-form-container {
    padding: 2rem;
  }
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .service-pill-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
