/* All extracted inline styles from index.html + existing Style.css content merged */
/* CSS VARIABLES */
:root {
  --primary: #0D1B3E;
  --primary-light: #162550;
  --accent: #F4C430;
  --accent-dark: #d4a820;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --secondary: #f4f3f0;
  --border: #e5e4e0;
  --text-muted: #6b6b6b;
  --text-dark: #1a1a1a;
  --green: #25D366;
  --shadow-sm: 0 2px 8px rgba(13, 27, 62, 0.08);
  --shadow-md: 0 8px 30px rgba(13, 27, 62, 0.12);
  --shadow-lg: 0 20px 60px rgba(13, 27, 62, 0.18);
  --transition: all 0.3s ease;
  --radius: 12px;
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  z-index: 2000;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-box {
  text-align: center;
}

.loader-ring {
  width: 72px;
  height: 72px;
  border: 6px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

.loader-text {
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  font-size: 0.85rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: 'Inter', sans-serif; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }

/* LAYOUT */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* UTILITIES */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border: 1px solid rgba(244,196,48,0.35);
  background: rgba(244,196,48,0.08); color: var(--accent);
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; margin-bottom: 1.25rem;
}
.section-label::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.section-label.light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0 2rem; height: 3.5rem; font-size: 0.9rem; font-weight: 700;
  font-family: 'Inter', sans-serif; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-accent { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-accent:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); filter: brightness(0.98); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border-color: rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.2); }
.btn-solid { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-solid:hover { background: #0a1530; box-shadow: var(--shadow-md); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }

/* NAVBAR - Fixed & Responsive */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,62,0.98); backdrop-filter: blur(20px);
  padding: 1.5rem 0; transition: padding 0.3s ease, box-shadow 0.3s ease;
}
nav.scrolled { padding: 1rem 0; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.nav-logo img.nav-logo-icon { width: 48px; height: auto; border-radius: 0; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text strong { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--white); font-size: 1.1rem; line-height: 1.2; }
.nav-logo-text span { font-size: 0.58rem; color: rgba(244,196,48,0.8); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; transition: all 0.3s ease;
  position: relative; padding: 0.5rem 0;
}
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }

.hamburger { 
  display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; 
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 1px; }
.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(7px, -6px); }

/* MOBILE NAV OVERLAY */
.mobile-nav-backdrop { 
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.5); 
  z-index: 999; opacity: 0; visibility: hidden; transition: all 0.3s ease; 
}
.mobile-nav-backdrop.active { opacity: 1; visibility: visible; }
.mobile-menu { 
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--primary);
  z-index: 1000; transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); padding-top: 100px; 
  display: flex; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem; color: var(--white); font-size: 1.1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08); transition: all 0.2s ease;
}
.mobile-menu a:hover { color: var(--accent); background: rgba(255,255,255,0.05); }
.mobile-menu a i { font-size: 0.8rem; opacity: 0.7; transition: opacity 0.2s ease; }
.mobile-menu a:hover i { opacity: 1; }
.mobile-menu-cta { padding: 2rem; margin-top: auto; }

@media (max-width: 992px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 1.5rem; }
}

/* SECTION HEADER */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }

/* HERO */
#home { position: relative; padding: 13rem 0 9rem; background: url("Src/bg.png") center/cover no-repeat; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,20,50,0.85) 0%, rgba(10,20,50,0.75) 40%, rgba(10,20,50,0.4) 100%); z-index: 1; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom left, rgba(255,255,255,0.04) 0%, transparent 50%); }
.hero-grid { position: absolute; inset: 0; opacity: 0.04; background-image: repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(255,255,255,0.6) 34px, rgba(255,255,255,0.6) 35px); }
.hero-inner { position: relative; z-index: 2; max-width: 750px; padding: 0 1rem; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.25rem; border: 1px solid rgba(244,196,48,0.3); background: rgba(244,196,48,0.1); color: var(--accent); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 2rem; }
.hero-badge i { font-size: 0.75rem; }
.hero-title { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 800; color: var(--white); margin-bottom: 1.75rem; letter-spacing: -0.02em; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.65); max-width: 640px; margin: 0 auto 3rem; font-weight: 300; line-height: 1.75; }
.hero-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 5rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.stat-item { background: rgba(255,255,255,0.05); padding: 1.5rem 1rem; text-align: center; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--accent); display: block; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.12em; }


/* ABOUT */
#about { padding: 6rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr minmax(320px,420px); gap: 3.25rem; align-items: center; }
.about-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--primary); margin-bottom: 1.5rem; line-height: 1.15; }
.about-content p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.about-content p strong { color: var(--primary); }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; }
.mission-card { padding: 1.25rem; border-left: 4px solid var(--primary); background: var(--secondary); }
.mission-card.accent-border { border-color: var(--accent); }
.mission-card i { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.25rem; display: block; }
.mission-card.accent-border i { color: var(--accent); }
.mission-card h4 { font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.mission-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.directors-box { padding: 1.25rem; background: var(--secondary); border: 1px solid var(--border); }
.directors-label { font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.director-item { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.6rem; }
.director-item:last-child { margin-bottom: 0; }
.director-avatar { width: 36px; height: 36px; background: var(--primary); color: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.7rem; flex-shrink: 0; }
.director-name { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.director-role { font-size: 0.72rem; color: var(--text-muted); }
.about-visual { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 1.5rem; 
  justify-items: center; 
  margin-top: 2rem;
}
.about-stat-card { 
  padding: 2.25rem 1.75rem; 
  border-radius: 14px; 
  text-align: center; 
  transition: all 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: var(--shadow-sm);
  width: 260px;
}
.about-stat-card.dark { color: var(--white); }
.about-stat-card.light, .about-stat-card.accent-bg { color: var(--text-dark); }
.about-stat-card.dark { background: var(--primary); }
.about-stat-card.accent-bg { background: var(--accent); }
.about-stat-card.light { background: var(--secondary); border: 1px solid var(--border); }
.about-stat-card.offset { margin-top: 2.5rem; }
.about-stat-value { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.about-stat-card.dark .about-stat-value { color: var(--accent); }
.about-stat-card.accent-bg .about-stat-value { color: var(--primary); }
.about-stat-card.light .about-stat-value { color: var(--primary); }
.about-stat-card.dark p { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.about-stat-card.accent-bg p { color: rgba(13,27,62,0.75); font-size: 0.8rem; font-weight: 600; }
.about-stat-card.light p { color: var(--text-muted); font-size: 0.8rem; }

/* VALUES */
.values-section { padding: 5rem 0; background: var(--secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.value-card { background: var(--white); border: 1px solid var(--border); padding: 1.5rem; text-align: center; transition: var(--transition); cursor: default; }
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.value-card:hover .value-icon { background: var(--accent); }
.value-card:hover .value-icon i { color: var(--primary); }
.value-icon { width: 48px; height: 48px; background: rgba(244,196,48,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: var(--transition); }
.value-icon i { color: var(--accent); font-size: 1.15rem; transition: var(--transition); }
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }

/* SERVICES */
#services { padding: 6rem 0; background: var(--white); }
#services .section-header { max-width: 720px; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; cursor: default; display: flex; flex-direction: column; min-height: 100%; opacity: 0; transform: translateY(24px); animation: fadeUp 0.65s ease forwards; }
.service-card:nth-child(1) { animation-delay: 0.08s; }
.service-card:nth-child(2) { animation-delay: 0.16s; }
.service-card:nth-child(3) { animation-delay: 0.24s; }
.service-card:nth-child(4) { animation-delay: 0.32s; }
.service-card:nth-child(5) { animation-delay: 0.40s; }
.service-card:nth-child(6) { animation-delay: 0.48s; }
.service-card:hover { border-color: var(--accent); box-shadow: 0 24px 80px rgba(13,27,62,0.14); transform: translateY(-8px); }
.service-card-media { position: relative; overflow: hidden; min-height: 220px; background: linear-gradient(135deg, rgba(0,0,0,0.12), rgba(0,0,0,0.04)); }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.service-card:hover .service-card-media img { transform: scale(1.05); }
.service-card-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem 1.25rem; background: rgba(12, 20, 36, 0.88); display: flex; align-items: center; gap: 0.85rem; }
.service-card-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.12); color: var(--accent); font-size: 1rem; }
.service-card-label h3 { margin: 0; color: var(--white); font-size: 1rem; font-weight: 700; line-height: 1.2; }
.service-card-content { display: flex; flex-direction: column; justify-content: space-between; flex: 1; padding: 1.75rem 1.5rem 2rem; }
.service-card-content p { margin: 0 0 1.5rem; color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }
.service-enquire { align-self: flex-start; padding: 0.9rem 1.35rem; border: 1px solid var(--accent); background: transparent; color: var(--accent); border-radius: 999px; font-size: 0.9rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.25s ease; cursor: pointer; text-transform: uppercase; letter-spacing: 0.02em; }
.service-enquire:hover { background: rgba(244,196,48,0.12); border-color: var(--accent-dark); transform: translateY(-2px); color: var(--accent-dark); }
.service-enquire i { transition: transform 0.25s ease; }
.service-enquire:hover i { transform: translateX(3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTORS */

/* SECTORS */
.sectors-section { background: var(--secondary); padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sectors-label { text-align: center; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); margin-bottom: 2rem; }
.sectors-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.sector-tag { padding: 0.75rem 1.5rem; background: var(--white); border: 1px solid var(--border); color: var(--primary); font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; cursor: default; border-radius: 25px; }
.sector-tag:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* WHY US */
#why-us { padding: 6rem 0; background: var(--primary); position: relative; overflow: hidden; }
#why-us::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at bottom right, rgba(244,196,48,0.08) 0%, transparent 60%); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.why-content h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 1.5rem; }
.why-content > p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 3rem; line-height: 1.75; }
.why-points { border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; overflow: hidden; }
.why-point { display: flex; align-items: flex-start; gap: 1.25rem; padding: 1.5rem 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); transition: all 0.3s ease; }
.why-point:last-child { border-bottom: none; }
.why-point:hover { background: rgba(255,255,255,0.08); }
.why-point-icon { width: 44px; height: 44px; background: rgba(244,196,48,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; border-radius: 10px; }
.why-point:hover .why-point-icon { background: var(--accent); }
.why-point:hover .why-point-icon i { color: var(--primary); }
.why-point-icon i { color: var(--accent); font-size: 1.1rem; transition: all 0.3s ease; }
.why-point-text h4 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.why-point-text p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.why-stat { padding: 2rem; border-radius: 16px; position: relative; overflow: hidden; }
.why-stat.glass { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); backdrop-filter: blur(10px); }
.why-stat.accent-bg { background: var(--accent); }
.why-stat.offset { margin-top: 2rem; }
.why-stat-value { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; line-height: 1; }
.why-stat.glass .why-stat-value { color: var(--accent); }
.why-stat.accent-bg .why-stat-value { color: var(--primary); }
.why-stat p { font-size: 0.85rem; font-weight: 600; opacity: 0.9; }

/* PROCESS */
#process { padding: 6rem 0; background: var(--secondary); }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.process-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; position: relative; overflow: hidden; transition: all 0.4s ease; cursor: default; border-radius: 12px; }
.process-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.process-step-num { position: absolute; top: 1rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 4rem; font-weight: 800; color: var(--secondary); line-height: 1; opacity: 0.1; z-index: 0; }
.process-icon-wrap { width: 50px; height: 50px; background: rgba(13,27,62,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.3s ease; border-radius: 12px; z-index: 2; position: relative; }
.process-card:hover .process-icon-wrap { background: var(--primary); }
.process-card:hover .process-icon-wrap i { color: var(--accent); }
.process-icon-wrap i { color: var(--primary); font-size: 1.2rem; transition: all 0.3s ease; }
.process-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 0.75rem; position: relative; z-index: 2; }
.process-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; position: relative; z-index: 2; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); padding: 6rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(13,27,62,0.2); }
.cta-section h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--primary); margin-bottom: 1.25rem; position: relative; z-index: 2; }
.cta-section p { color: rgba(13,27,62,0.8); font-size: 1.2rem; max-width: 600px; margin: 0 auto 3rem; line-height: 1.75; font-weight: 400; position: relative; z-index: 2; }
.cta-btns { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.25rem; position: relative; z-index: 2; }

/* CONTACT */
#contact { padding: 6rem 0; background: var(--secondary); }
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 0; box-shadow: var(--shadow-lg); border-radius: 20px; overflow: hidden; max-width: min(1200px, calc(100% - 2rem)); width: 100%; margin: 0 auto; align-items: stretch; }
.contact-info, .contact-form-area { min-height: 100%; }
.contact-form-area { display: flex; flex-direction: column; }
.contact-form-area form { flex: 1; }
.contact-form-area .form-address { margin-top: 1.5rem; }
.contact-info { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: var(--white); padding: 4rem; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.contact-info::before { content: ''; position: absolute; top: -50%; right: -20%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(244,196,48,0.08) 0%, transparent 60%); animation: float 6s ease-in-out infinite; }
.contact-info .contact-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; position: relative; z-index: 2; }
.contact-logo-icon { width: 52px; height: auto; flex-shrink: 0; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin: 0 0 0.25rem 0; position: relative; z-index: 2; }
.contact-info .contact-brand p { margin: 0; font-size: 0.85rem; opacity: 0.9; color: rgba(255,255,255,0.8); }
.contact-info > p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 2.5rem; position: relative; z-index: 2; opacity: 0.9; }
.contact-detail { display: flex; align-items: flex-start; gap: 1.25rem; margin-bottom: 2rem; position: relative; z-index: 2; transition: transform 0.3s ease; }
.contact-detail:hover { transform: translateX(8px); }
.contact-detail-icon { width: 48px; height: 48px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s ease; border-radius: 12px; }
.contact-detail:hover .contact-detail-icon { background: var(--accent); transform: scale(1.05); }
.contact-detail:hover .contact-detail-icon i { color: var(--primary); }
.contact-detail-icon i { color: var(--white); font-size: 1.1rem; transition: all 0.3s ease; }
.contact-detail-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; font-weight: 600; }
.contact-detail-value { font-size: 1rem; font-weight: 600; color: var(--white); }
.contact-detail-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.25rem; }
.contact-info-footer { padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2rem; position: relative; z-index: 2; }
.contact-cin { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-bottom: 0.5rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; align-items: center; }
.social-link { width: 44px; height: 44px; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: var(--white); transition: transform .24s ease, background .24s ease; border-radius: 10px; font-size: 1.05rem; }
.social-link i { line-height: 1; }
.social-link:hover { background: var(--accent); color: var(--primary); transform: translateY(-4px) scale(1.06); box-shadow: 0 12px 30px rgba(10,20,40,0.08); }

.contact-form-area { background: var(--white); padding: 4rem; position: relative; }
.contact-form-area h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 2.5rem; position: relative; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--primary); }
.form-group input, .form-group textarea { padding: 1rem 1.25rem; height: 3.5rem; border: 2px solid var(--border); background: var(--secondary); font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--primary); transition: all 0.3s ease; outline: none; border-radius: 12px; }
.form-group textarea { height: 160px; padding-top: 1rem; padding-bottom: 1rem; resize: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(244,196,48,0.1); }
.form-error { font-size: 0.75rem; color: #ef4444; margin-top: 0.25rem; font-weight: 500; display: none; }
.form-error.visible { display: block; animation: shake 0.3s ease; }
@keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-4px); } 75% { transform: translateX(4px); } }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; height: 3.75rem; font-size: 0.95rem; letter-spacing: 0.05em; border-radius: 12px; position: relative; overflow: hidden; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--text-muted); margin-top: 1.5rem; }
.form-address { width: 100%; height: 12rem; background: linear-gradient(135deg, var(--secondary), #f9f8f5); border: 2px dashed var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; margin-top: 2rem; padding: 1.5rem; border-radius: 16px; transition: all 0.3s ease; }
.form-address:hover { border-style: solid; border-color: var(--accent); background: linear-gradient(135deg, #fffdf9, var(--secondary)); }
.form-address i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; opacity: 0.6; transition: all 0.3s ease; }
.form-address:hover i { opacity: 1; transform: scale(1.1); color: var(--accent); }
.form-address p { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 0.25rem; }
.form-address small { font-size: 0.78rem; color: var(--text-muted); }
.form-success { display: none; text-align: center; padding: 2.5rem; background: linear-gradient(135deg, rgba(244,196,48,0.1), rgba(244,196,48,0.05)); border: 2px solid rgba(244,196,48,0.3); border-radius: 16px; margin-bottom: 1.5rem; }
.form-success i { font-size: 3rem; color: var(--accent); margin-bottom: 1rem; display: block; animation: bounce 0.6s ease; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }
.form-success p { color: var(--primary); font-weight: 600; font-size: 1.1rem; }

/* FOOTER */
footer { background: linear-gradient(180deg, #080f1f 0%, #0a1428 100%); color: var(--white); padding: 5rem 0 2.5rem; position: relative; overflow: hidden; }
footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 2.5rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.footer-brand img.footer-logo-icon { width: 48px; height: auto; flex-shrink: 0; }
.footer-brand-text strong { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); display: block; line-height: 1.2; }
.footer-brand-text span { font-size: 0.65rem; color: rgba(244,196,48,0.7); text-transform: uppercase; letter-spacing: 0.2em; }
.footer-about { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; }
.footer-cin { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }

.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--white); margin-bottom: 1.75rem; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: -0.5rem; left: 0; width: 30px; height: 2px; background: var(--accent); border-radius: 1px; }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 0.4rem 1rem; align-items: start; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem; transition: all 0.22s ease; padding: 0.25rem 0; position: relative; }
.footer-links a::before { content: ''; width: 12px; height: 1px; background: rgba(255,255,255,0.18); transition: all 0.22s ease; flex-shrink: 0; border-radius: 1px; margin-right: 0.5rem; }
.footer-links a:hover { color: var(--accent); padding-left: 0.75rem; }
.footer-links a:hover::before { width: 18px; background: var(--accent); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: all 0.3s ease; }
.footer-contact-item:hover { color: var(--white); transform: translateX(4px); }
.footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; width: 20px; }
.footer-contact-item a { color: inherit; transition: all 0.3s ease; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: all 0.3s ease; position: relative; }
.footer-bottom-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s ease; }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-links a:hover::after { width: 100%; }

/* WHATSAPP */
.whatsapp-float { 
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1001; width: 60px; height: 60px; 
  background: var(--green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; 
  font-size: 1.6rem; box-shadow: 0 8px 30px rgba(37,211,102,0.4); transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 15px 40px rgba(37,211,102,0.5); }
.whatsapp-label { position: absolute; right: 5rem; background: var(--white); color: var(--primary); font-size: 0.8rem; font-weight: 700; padding: 0.6rem 1rem; border-radius: 25px; box-shadow: var(--shadow-lg); white-space: nowrap; opacity: 0; pointer-events: none; transition: all 0.3s ease; border: 1px solid var(--border); top: 50%; transform: translateY(-50%); }
.whatsapp-float:hover .whatsapp-label { opacity: 1; }

/* RESPONSIVE - Mobile First Enhancements */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }
  #home { padding: 11rem 0 6rem; background-position: center; }
  .hero-title { font-size: 2.5rem; line-height: 1.1; }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .hero-btns { flex-direction: column; gap: 1rem; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; height: 3.25rem; }
  
  .trust-grid { grid-template-columns: 1fr; margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; grid-template-columns: 1fr; }
  .about-visual > div { display: flex; flex-direction: column; gap: 1rem; }
  .mission-grid { grid-template-columns: 1fr; gap: 1rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .why-visual { grid-template-columns: 1fr; gap: 1rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-box { grid-template-columns: 1fr; margin: 0 auto 1.5rem; border-radius: 16px; }
  .contact-info, .contact-form-area { padding: 2rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-links { grid-template-columns: 1fr; justify-items: center; gap: 0.5rem; }
  .footer-links a { padding: 0.35rem 0; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-btns { flex-direction: column; gap: 1rem; }
  .cta-btns .btn { width: 100%; }
}

@media (max-width: 480px) {
  nav.scrolled { padding: 0.75rem 0; }
  .nav-inner { padding: 0 1.25rem; }
  .mobile-menu { width: 100vw; right: -100vw; }
  #home { padding: 9rem 0 5rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { grid-template-columns: 1fr; text-align: center; }
  .trust-card { padding: 1.5rem; }
  .why-point { flex-direction: column; align-items: stretch; gap: 1rem; text-align: center; padding: 1.75rem; }
  .process-card { padding: 1.75rem; }
  .contact-info, .contact-form-area { padding: 1.5rem 1rem; }
  .form-address { height: auto; padding: 1rem; }
  .footer-grid { gap: 1.5rem; }
  .container { padding: 0 1rem; }
  .form-row { gap: 1rem; }
}

@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }

/* SERVICE PAGES */
.service-page { padding: 6rem 0; background: var(--off-white); }
.service-hero { max-width: 1100px; margin: 0 auto; padding: 0 0 1rem; }
.service-back { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 600; font-size: 0.95rem; }
.service-back:hover { color: var(--primary); }
.service-content { background: var(--white); padding: 3rem; border-radius: 24px; box-shadow: 0 28px 70px rgba(13,27,62,0.08); max-width: 900px; margin: 0 auto; }
.service-content h1 { font-size: clamp(2rem, 3.4vw, 2.75rem); color: var(--primary); margin-bottom: 1rem; }
.service-intro { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.9; font-size: 1rem; }
.service-content h2 { font-size: 1.05rem; color: var(--primary); margin-top: 2rem; margin-bottom: 1rem; }
.service-list { margin: 0 0 1.75rem 0; padding: 0; }
.service-list li { margin-bottom: 0.9rem; padding-left: 1.6rem; position: relative; color: var(--text-dark); font-size: 0.98rem; }
.service-list li::before { content: "\2022"; position: absolute; left: 0; top: 0.15rem; color: var(--accent); font-weight: 700; }
.service-benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin: 1.25rem 0 1.75rem; }
.service-benefits .benefit { background: var(--secondary); padding: 1rem 1.1rem; border-radius: 12px; color: var(--text-dark); font-weight: 600; box-shadow: inset 0 0 0 1px rgba(13,27,62,0.04); }
.service-cta { margin-top: 2rem; }
.service-hero .btn-accent { padding: 1rem 1.5rem; border-radius: 10px; font-size: 0.95rem; }

/* Hover & interactions for service pages */
.service-back { transition: color .18s ease, transform .18s ease; }
.service-back:hover { transform: translateX(-6px); color: var(--primary); text-decoration: none; }
.service-back:active { transform: translateX(-2px); }

.service-content { transition: transform .24s ease, box-shadow .24s ease; will-change: transform; }
.service-content:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(10,20,40,0.08); }
.service-content:focus-within { box-shadow: 0 12px 30px rgba(10,20,40,0.06); }

.service-hero .btn-accent { transition: transform .16s ease, filter .16s ease, box-shadow .16s ease; }
.service-hero .btn-accent:hover { transform: translateY(-3px); filter: brightness(.98); box-shadow: 0 8px 20px rgba(16,24,40,0.08); }
.service-hero .btn-accent:active { transform: translateY(-1px); }
.service-hero .btn-accent:focus-visible { outline: 3px solid rgba(255,193,7,0.18); outline-offset: 3px; border-radius: 8px; }

.service-benefits .benefit { transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease; }
.service-benefits .benefit:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(16,24,40,0.06); background: linear-gradient(180deg, rgba(255,255,255,0.98), var(--secondary)); }

.service-list li { transition: color .18s ease, transform .18s ease; }
.service-list li:hover { color: var(--primary); transform: translateX(6px); }

/* PRIVACY POLICY STYLES */
.privacy-header {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 0;
  position: relative;
}

.privacy-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.privacy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 500;
  transition: var(--transition);
}

.privacy-back-link:hover {
  color: var(--white);
}

.privacy-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-logo-text span {
  display: block;
  font-size: 0.875rem;
  opacity: 0.9;
}

.privacy-main {
  padding: 4rem 0;
  background: var(--off-white);
}

.privacy-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.privacy-intro {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-section {
  background: var(--white);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
}

.privacy-section h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.privacy-section p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.privacy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-section li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.privacy-section address {
  font-style: normal;
  line-height: 1.6;
  color: var(--text-dark);
}

.privacy-footer {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.privacy-footer p {
  margin: 0;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 2rem;
  }

  .privacy-intro {
    font-size: 1rem;
  }

  .privacy-section {
    padding: 1.5rem;
  }

  .privacy-header .container {
    flex-direction: column;
    text-align: center;
  }

  .privacy-logo {
    order: -1;
  }
}
