@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM VARIABLES (HSL CORE)
   ========================================== */
:root {
  --bg-primary: hsl(210, 20%, 98%);
  --bg-secondary: hsl(0, 0%, 100%);
  --bg-tertiary: hsl(210, 16%, 93%);
  
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-bg-hover: rgba(255, 255, 255, 1);
  --card-border: rgba(0, 0, 0, 0.06);
  --card-border-hover: rgba(0, 98, 204, 0.25);
  
  --text-primary: hsl(222, 47%, 15%);
  --text-secondary: hsl(215, 16%, 35%);
  --text-muted: hsl(215, 12%, 45%);
  
  --accent-cyan: hsl(212, 100%, 45%);
  --accent-violet: hsl(220, 85%, 35%);
  --accent-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
  --text-gradient: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-violet) 100%);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --nav-height: 80px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  --shadow-cyan-glow: 0 0 20px rgba(0, 98, 204, 0.15);
}

/* ==========================================
   GLOBAL RESET & BASICS
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Decorative Blur Elements in Background */
body::before, body::after {
  content: '';
  position: absolute;
  width: 35vw;
  height: 35vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  filter: blur(100px);
}

body::before {
  top: 10%;
  left: -5%;
  background: var(--accent-cyan);
}

body::after {
  bottom: 15%;
  right: -5%;
  background: var(--accent-violet);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* ==========================================
   GLASSMORPHISM COMPONENTS
   ========================================== */
.glass-panel {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-glow);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass-panel:hover {
  background: var(--card-bg-hover);
  border-color: var(--card-border-hover);
  box-shadow: var(--shadow-cyan-glow), var(--shadow-glow);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 98, 204, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5), var(--shadow-cyan-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-violet), var(--accent-cyan));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  border: 1.5px solid var(--text-primary);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-3px);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  height: 70px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--text-primary);
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent-cyan);
  padding: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links li.active a::after {
  width: 100%;
}

.nav-links li.active a {
  color: var(--text-primary);
}

/* Dropdown Menu for Corporate */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--bg-secondary);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-glow);
  border-radius: 12px;
  padding: 0.8rem 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--accent-cyan);
  padding-left: 1.8rem;
}

.dropdown-menu a::after {
  display: none;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

/* ==========================================
   LAYOUT SECTIONS
   ========================================== */
section {
  padding: 8rem 2rem;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

/* ==========================================
   INDEX (HOMEPAGE) HERO
   ========================================== */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-sphere {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--accent-gradient);
  position: relative;
  filter: blur(10px);
  animation: floatSphere 8s infinite ease-in-out;
  opacity: 0.85;
}

.visual-sphere::after {
  content: '';
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  background: var(--bg-primary);
  filter: blur(2px);
}

.visual-logo {
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: 10;
  border-radius: 50%;
  animation: logoPulse 4s infinite ease-in-out;
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.4);
}

@keyframes floatSphere {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ==========================================
   PARTNERS CAROUSEL (LOGO MARQUEE)
   ========================================== */
.partners-section {
  text-align: center;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  max-width: 100%;
}

.partners-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.marquee-content {
  display: flex;
  gap: 4rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-muted);
  opacity: 0.4;
  transition: var(--transition-fast);
}

.marquee-content span:hover {
  opacity: 0.95;
  color: var(--accent-cyan);
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

/* ==========================================
   SERVICES INDEX / HIGHLIGHTS
   ========================================== */
.services-highlight {
  text-align: center;
}

.section-tag {
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 3rem 2.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 2rem;
  font-size: 1.5rem;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.card-link:hover span {
  transform: translateX(5px);
}

.card-link span {
  transition: var(--transition-fast);
}

/* ==========================================
   WHY ETHANDA SECTION
   ========================================== */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  padding: 2.2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

/* ==========================================
   CALL TO ACTION PANEL
   ========================================== */
.cta-panel {
  padding: 4.5rem;
  text-align: center;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.15), rgba(168, 85, 247, 0.05)), var(--card-bg);
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow-glow);
}

.cta-panel h2 {
  font-size: 2.5rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

/* ==========================================
   CORPORATE STORY & MEANING
   ========================================== */
.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.meaning-block {
  padding: 3rem;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(0, 242, 254, 0.03) 100%);
  border-left: 4px solid var(--accent-violet);
}

.meaning-block h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.meaning-block p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.corporate-story p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Global Locations Dashboard */
.locations-container {
  margin-top: 4.5rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.location-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.location-card i {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin-bottom: 1.25rem;
  display: block;
}

.location-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.location-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================
   IT CONSULTING SERVICES PAGE
   ========================================== */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.detail-card {
  padding: 3.5rem 2.5rem;
}

.detail-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.detail-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.detail-card li i {
  color: var(--accent-cyan);
}

/* IT CONSULTING PROCESS TIMELINE */
.process-section {
  text-align: center;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 4.5rem auto 0;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1.5rem 3rem;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--accent-cyan);
  z-index: 1;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
  right: auto;
  border-color: var(--accent-violet);
}

.timeline-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.timeline-item:nth-child(odd) .timeline-badge {
  background: rgba(0, 242, 254, 0.12);
  color: var(--accent-cyan);
}

.timeline-item:nth-child(even) .timeline-badge {
  background: rgba(168, 85, 247, 0.12);
  color: var(--accent-violet);
}

.timeline-content {
  padding: 2rem;
}

.timeline-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ==========================================
   CAREERS PAGE
   ========================================== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.role-card {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.role-tag {
  background: rgba(0, 0, 0, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.role-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.role-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.role-details {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.2rem;
  margin-bottom: 1.5rem;
}

.role-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.role-details i {
  color: var(--accent-violet);
}

/* ==========================================
   CONTACT FORM & LOCATION STYLING
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px solid rgba(0, 0, 0, 0.07);
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  font-family: inherit;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
  background: rgba(0, 0, 0, 0.05);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.2rem;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-violet);
  font-size: 1.2rem;
  border: 1px solid rgba(168, 85, 247, 0.2);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.info-text p, .info-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.info-text a:hover {
  color: var(--accent-cyan);
}

/* ==========================================
   MODAL PANEL (RECRUITMENT APPLICATION)
   ========================================== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  max-width: 580px;
  padding: 3rem;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-primary);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 5rem 2rem 2.5rem;
  margin-top: 6rem;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-cyan);
  padding-left: 5px;
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--accent-cyan);
}

.footer-bottom {
  max-width: 1240px;
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 80%;
    height: calc(100vh - var(--nav-height));
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: flex-start;
    border-left: 1px solid var(--card-border);
    transition: var(--transition-smooth);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 0 0 1rem;
  }
  
  .dropdown:hover .dropdown-menu {
    transform: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .why-section {
    grid-template-columns: 1fr;
  }
  
  .corporate-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .roles-grid {
    grid-template-columns: 1fr;
  }
  
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .timeline::before {
    left: 2rem;
  }
  
  .timeline-item {
    width: 100%;
    text-align: left;
    padding-left: 4.5rem;
    padding-right: 0;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-item::after, .timeline-item:nth-child(even)::after {
    left: 1.5rem;
    right: auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.35rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .visual-sphere {
    width: 250px;
    height: 250px;
  }
  .visual-logo {
    width: 120px;
    height: 120px;
  }
}
