/* ===================================================
   Samsung Electronics Service - Global Stylesheet
   Color Palette:
     Primary:   #0A2463 (Deep Navy Blue)
     Secondary: #00B4D8 (Electric Cyan)
   =================================================== */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #0A2463;
  --primary-light: #0E3082;
  --primary-dark: #071A4A;
  --secondary: #00B4D8;
  --secondary-light: #33C9E8;
  --secondary-dark: #0090AD;
  --accent-gradient: linear-gradient(135deg, #0A2463 0%, #00B4D8 100%);
  --accent-gradient-reverse: linear-gradient(135deg, #00B4D8 0%, #0A2463 100%);
  --glass-bg: rgba(10, 36, 99, 0.12);
  --glass-border: rgba(0, 180, 216, 0.25);
  --glass-shadow: 0 8px 32px rgba(10, 36, 99, 0.18);

  --text-dark: #0B1D35;
  --text-medium: #3A4A5C;
  --text-light: #6B7B8D;
  --text-white: #FFFFFF;

  --bg-body: #F4F7FC;
  --bg-white: #FFFFFF;
  --bg-dark: #060E1F;

  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;

  --shadow-sm: 0 2px 8px rgba(10, 36, 99, 0.06);
  --shadow-md: 0 4px 20px rgba(10, 36, 99, 0.10);
  --shadow-lg: 0 12px 40px rgba(10, 36, 99, 0.14);
  --shadow-xl: 0 20px 60px rgba(10, 36, 99, 0.18);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 14px;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 50px;
  font-weight: 400;
}

.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-xl);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-white);
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 180, 216, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--text-white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--bg-white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ---------- HEADER / NAVBAR ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  padding: 18px 0;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(10, 36, 99, 0.08);
  padding: 10px 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-white);
  transition: color var(--transition-fast);
}

.header.scrolled .logo {
  color: var(--primary);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.35);
}

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

.nav-links a {
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all var(--transition-fast);
  position: relative;
}

.header.scrolled .nav-links a {
  color: var(--text-medium);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.12);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-links a.active {
  color: var(--secondary);
  background: rgba(0, 180, 216, 0.08);
}

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

.nav-cta .btn {
  padding: 10px 26px;
  font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-white);
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.header.scrolled .menu-toggle span {
  background: var(--primary);
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060E1F 0%, #0A2463 40%, #0E3082 70%, #00394D 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.10) 0%, transparent 70%);
  bottom: -50px;
  left: -50px;
  border-radius: 50%;
  animation: pulse-glow 8s ease-in-out infinite reverse;
}

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

/* Animated circuit lines */
.hero-circuit {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circuit .line {
  position: absolute;
  background: rgba(0, 180, 216, 0.06);
}

.hero-circuit .line-h1 { width: 100%; height: 1px; top: 30%; animation: scan-h 12s linear infinite; }
.hero-circuit .line-h2 { width: 100%; height: 1px; top: 60%; animation: scan-h 16s linear infinite reverse; }
.hero-circuit .line-v1 { width: 1px; height: 100%; left: 25%; animation: scan-v 14s linear infinite; }
.hero-circuit .line-v2 { width: 1px; height: 100%; left: 75%; animation: scan-v 10s linear infinite reverse; }

@keyframes scan-h {
  0% { background: rgba(0, 180, 216, 0.02); }
  50% { background: rgba(0, 180, 216, 0.12); }
  100% { background: rgba(0, 180, 216, 0.02); }
}

@keyframes scan-v {
  0% { background: rgba(0, 180, 216, 0.02); }
  50% { background: rgba(0, 180, 216, 0.10); }
  100% { background: rgba(0, 180, 216, 0.02); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.25);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  color: var(--secondary-light);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #00E5A0;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 22px;
  animation: fadeInUp 0.8s ease 0.15s forwards;
  opacity: 0;
}

.hero h1 span {
  background: linear-gradient(135deg, #00B4D8 0%, #33C9E8 50%, #7EE8FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stat h3 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}

.hero-stat p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- FEATURES GRID (Home) ---------- */
.features { background: var(--bg-body); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 36, 99, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.06) 0%, rgba(0, 180, 216, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--accent-gradient);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.3);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- WHY CHOOSE US (Home) ---------- */
.why-us {
  background: linear-gradient(135deg, #060E1F 0%, #0A2463 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  top: -150px;
  left: -100px;
  border-radius: 50%;
}

.why-us .section-title {
  color: var(--text-white);
  -webkit-text-fill-color: unset;
  background: none;
}

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.why-card:hover {
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.3);
  transform: translateY(-6px);
}

.why-card .icon {
  font-size: 2.25rem;
  margin-bottom: 18px;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: var(--bg-white);
}

.cta-box {
  background: var(--accent-gradient);
  border-radius: var(--radius-xl);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.cta-box::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  bottom: -60px;
  left: -40px;
}

.cta-box h2 {
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 2;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
}

/* ---------- SERVICES PAGE ---------- */
.page-hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #060E1F 0%, #0A2463 40%, #0E3082 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-hero h1 {
  font-size: 3.25rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover { color: var(--secondary); }

.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.breadcrumb .current {
  color: var(--secondary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Services Grid */
.services-section { background: var(--bg-body); }

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

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 36, 99, 0.05);
  position: relative;
}

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

.service-card-header {
  padding: 36px 32px 28px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.03) 0%, rgba(0, 180, 216, 0.04) 100%);
  position: relative;
}

.service-card-header .service-number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(10, 36, 99, 0.04);
  font-family: var(--font-primary);
  line-height: 1;
}

.service-card-header .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.service-card-header h3 {
  font-size: 1.35rem;
  color: var(--primary);
}

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

.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card-body ul {
  margin-bottom: 24px;
}

.service-card-body ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 0.9rem;
  padding: 6px 0;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  width: 22px;
  height: 22px;
  background: rgba(0, 180, 216, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.service-card .btn-link:hover {
  gap: 12px;
  color: var(--primary);
}

/* Service Process */
.service-process {
  background: var(--bg-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.15;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step .step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--text-white);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.25);
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ---------- ABOUT PAGE ---------- */
.about-intro {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 480px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image .placeholder-icon {
  font-size: 6rem;
  opacity: 0.3;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--bg-white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
  font-size: 2.25rem;
  color: var(--secondary);
  margin-bottom: 2px;
}

.about-experience-badge p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.about-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text > p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 180, 216, 0.05);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.highlight-item:hover {
  background: rgba(0, 180, 216, 0.1);
  transform: translateX(5px);
}

.highlight-item .icon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  background: var(--accent-gradient);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-item span {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.92rem;
}

/* Team Section */
.team-section {
  background: var(--bg-body);
}

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

.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 36, 99, 0.05);
}

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

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-gradient);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.25);
  color: white;
}

.team-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-card p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* Values Section */
.values-section {
  background: linear-gradient(135deg, #060E1F 0%, #0A2463 100%);
}

.values-section .section-title {
  -webkit-text-fill-color: white;
  background: none;
}

.values-section .section-subtitle {
  color: rgba(255, 255, 255, 0.55);
}

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

.value-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.value-card:hover {
  background: rgba(0, 180, 216, 0.08);
  border-color: rgba(0, 180, 216, 0.25);
  transform: translateY(-6px);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.value-card h3 {
  color: var(--text-white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  background: var(--bg-body);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background: var(--accent-gradient);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
}

.contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 10px;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

.contact-item .icon {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.contact-socials a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.contact-socials a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10, 36, 99, 0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all var(--transition-fast);
  background: var(--bg-body);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
  background: var(--bg-white);
}

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

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

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* Map Section */
.map-section {
  background: var(--bg-white);
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: linear-gradient(135deg, rgba(10, 36, 99, 0.05) 0%, rgba(0, 180, 216, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 36, 99, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
  color: var(--text-white);
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 280px;
}

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

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

.footer-social a:hover {
  background: var(--secondary);
  color: var(--text-white);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 1rem;
  font-family: var(--font-primary);
  margin-bottom: 22px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--text-white);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form input:focus {
  border-color: var(--secondary);
}

.newsletter-form button {
  padding: 12px 20px;
  background: var(--secondary);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--secondary-light);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  transition: color var(--transition-fast);
}

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

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--accent-gradient);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  box-shadow: 0 6px 24px rgba(0, 180, 216, 0.3);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .section-title { font-size: 2.25rem; }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    padding: 100px 36px 40px;
    transition: right var(--transition-base);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    align-items: stretch;
  }

  .nav-links.active { right: 0; }

  .nav-links a {
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(0, 180, 216, 0.15);
    color: var(--secondary);
  }

  .nav-cta { margin-left: 0; margin-top: 12px; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .hero { padding: 120px 0 80px; }
  .hero h1 { font-size: 2.25rem; }
  .hero p { font-size: 1rem; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat h3 { font-size: 1.75rem; }

  .section-padding { padding: 70px 0; }
  .section-title { font-size: 1.85rem; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { height: 320px; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 130px 0 70px; }
  .page-hero h1 { font-size: 2.25rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cta-box { padding: 50px 28px; }
  .cta-box h2 { font-size: 1.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 1.85rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .highlight-item { padding: 12px 14px; }
}

/* ---------- ANIMATIONS ON SCROLL ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay helpers */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
