/* =========================================
   CodeHub Software Solutions Inc.
   Main Stylesheet
   ========================================= */

/* --- CSS Variables --- */
:root {
  --primary: #0a2540;
  --accent: #00c4cc;
  --accent2: #ff6b35;
  --white: #ffffff;
  --light: #f4f7fb;
  --gray: #8896a7;
  --dark-gray: #3d4f60;
  --card-bg: #ffffff;
  --shadow: 0 8px 32px rgba(10, 37, 64, 0.12);
  --shadow-hover: 0 16px 48px rgba(10, 37, 64, 0.2);
  --radius: 12px;
  --transition: 0.3s ease;
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--primary);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--dark-gray); line-height: 1.8; }

/* --- Utility --- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
  display: inline-block;
  background: rgba(0, 196, 204, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header p { margin-top: 16px; font-size: 1.05rem; }

.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent2); }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 196, 204, 0.35);
}
.btn-primary:hover {
  background: #00aeb5;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 196, 204, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent2 {
  background: var(--accent2);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.35);
}
.btn-accent2:hover {
  background: #e05a27;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  padding: 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
}

.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}

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

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

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0, 196, 204, 0.15);
  border: 1.5px solid rgba(0, 196, 204, 0.4);
  transition: all var(--transition);
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(0, 196, 204, 0.25);
  border-color: var(--accent);
}
.hamburger span {
  width: 20px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, #0d3260 50%, #0a4080 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 196, 204, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 196, 204, 0.15);
  border: 1px solid rgba(0, 196, 204, 0.3);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-label .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--accent);
  position: relative;
}

.hero-title .highlight2 { color: var(--accent2); }

.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 420px;
  height: 380px;
}

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--white);
}

.hero-card-main {
  width: 320px;
  top: 40px; left: 50px;
  animation: float 6s ease-in-out infinite;
}

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

.hero-card-sm1 {
  width: 180px;
  top: 0; right: 0;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-card-sm2 {
  width: 200px;
  bottom: 20px; left: 0;
  animation: float 6s ease-in-out infinite 2s;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.card-title {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  font-family: var(--font-main);
}

.card-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.card-value.accent { color: var(--accent); }
.card-value.accent2 { color: var(--accent2); }

.card-tag {
  display: inline-block;
  background: rgba(0, 196, 204, 0.2);
  color: var(--accent);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 8px;
  font-weight: 600;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  z-index: 1;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(10, 37, 64, 0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.icon-teal { background: rgba(0, 196, 204, 0.12); }
.icon-blue { background: rgba(10, 37, 64, 0.1); }
.icon-orange { background: rgba(255, 107, 53, 0.12); }
.icon-purple { background: rgba(107, 53, 255, 0.12); }
.icon-green { background: rgba(53, 201, 107, 0.12); }
.icon-pink { background: rgba(255, 53, 161, 0.12); }

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--light);
  color: var(--dark-gray);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

/* =========================================
   PROCESS / HOW IT WORKS
   ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 36px 24px;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0080ff);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; }

/* =========================================
   ABOUT / WHY US
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--primary), #0d3260);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 196, 204, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.about-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 32px;
  position: relative;
  z-index: 1;
}

.about-mini-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  color: var(--white);
  transition: all var(--transition);
}

.about-mini-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.about-mini-card .icon { font-size: 2rem; margin-bottom: 8px; }
.about-mini-card p { color: rgba(255,255,255,0.8); font-size: 0.85rem; margin-top: 4px; }
.about-mini-card strong { color: var(--accent); font-size: 1.4rem; display: block; }

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent2);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.about-badge small { font-size: 0.8rem; opacity: 0.9; }

.about-content {}
.about-content .section-label { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 20px; }
.about-content > p { margin-bottom: 32px; font-size: 1.05rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px; height: 44px;
  background: rgba(0, 196, 204, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h4 { margin-bottom: 4px; }
.feature-text p { font-size: 0.9rem; }

/* =========================================
   TECHNOLOGIES
   ========================================= */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}

.tech-item {
  background: var(--white);
  border: 1px solid rgba(10, 37, 64, 0.08);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.tech-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.tech-item .tech-icon { font-size: 2.8rem; margin-bottom: 8px; line-height: 1; }
.tech-item .tech-icon i { font-size: 2.8rem; }
.tech-item span { font-size: 0.8rem; font-weight: 500; color: var(--dark-gray); }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.quote-icon {
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: serif;
  line-height: 1;
}

.stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 16px; }

.testimonial-card p {
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #0080ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.author-info span { font-size: 0.8rem; color: var(--gray); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #0d3260);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 196, 204, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 { color: var(--white); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--primary), #0d3260);
  padding: 160px 0 96px;
  text-align: center;
  color: var(--white);
}

.contact-hero h1 { color: var(--white); margin-bottom: 16px; }
.contact-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}

.contact-info {}
.contact-info h3 { margin-bottom: 8px; }
.contact-info > p { margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px; height: 48px;
  background: rgba(0, 196, 204, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text h4 { font-size: 0.9rem; color: var(--gray); font-weight: 500; margin-bottom: 2px; }
.contact-item-text p, .contact-item-text a { font-size: 1rem; color: var(--primary); font-weight: 600; }
.contact-item-text a:hover { color: var(--accent); }

.social-links { display: flex; gap: 12px; margin-top: 40px; }

.social-link {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--primary);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 37, 64, 0.06);
}

.contact-form-wrapper h3 { margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 32px; color: var(--gray); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(10, 37, 64, 0.15);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--primary);
  background: var(--light);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 196, 204, 0.12);
}

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

.form-submit { width: 100%; padding: 16px; font-size: 1rem; border-radius: 10px; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 16px;
}

.form-success {
  display: none;
  background: rgba(53, 201, 107, 0.1);
  border: 1px solid rgba(53, 201, 107, 0.3);
  color: #1a7a3d;
  padding: 16px 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

/* =========================================
   SERVICES PAGE
   ========================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary), #0d3260);
  padding: 160px 0 96px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 196, 204, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-hero .breadcrumb a { color: var(--accent); }

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.service-card-header {
  padding: 32px;
  background: linear-gradient(135deg, var(--primary), #0d3260);
  position: relative;
  overflow: hidden;
}

.service-card-header::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.service-card-header .icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-card-header h3 { color: var(--white); margin-bottom: 8px; }
.service-card-header p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

.service-card-body { padding: 32px; }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.service-feature::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(0, 196, 204, 0.15);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), #0d3260);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.team-avatar::before {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 120px;
  background: rgba(0, 196, 204, 0.1);
  border-radius: 50%;
}

.team-info { padding: 24px; }
.team-info h4 { margin-bottom: 4px; }
.team-info .role { color: var(--accent); font-size: 0.85rem; font-weight: 600; }
.team-info p { font-size: 0.85rem; margin-top: 12px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: all var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social { display: flex; gap: 10px; }

.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: var(--accent); }

/* =========================================
   ANIMATIONS & SCROLL EFFECTS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  width: calc(100% - 48px);
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(100px);
  pointer-events: none;
}

.cookie-banner p { font-size: 0.85rem; color: rgba(255,255,255,0.8); flex: 1; margin: 0; }
.cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all var(--transition);
}
.cookie-btn.accept { background: var(--accent); color: var(--primary); }
.cookie-btn.accept:hover { background: #00aeb5; }
.cookie-btn.decline { background: rgba(255,255,255,0.1); color: var(--white); }
.cookie-btn.decline:hover { background: rgba(255,255,255,0.2); }

/* =========================================
   MOBILE NAV MENU
   ========================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  gap: 28px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
  display: flex;
}

.mobile-menu.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--accent); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .scroll-indicator { display: none; }
  .hero { padding-bottom: 48px; }

  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-form-wrapper { padding: 28px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .team-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
}
