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

:root {
  --primary: #0F172A; /* Deep Navy */
  --primary-light: #1E293B;
  --accent: #D97706; /* Premium Gold */
  --accent-hover: #B45309;
  --text-dark: #0F172A;
  --text-body: #475569;
  --text-light: #94A3B8;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-dark: #020617;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: var(--bg-white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-6 { margin-top: 3rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}

.btn-outline:hover {
  background-color: var(--bg-white);
  color: var(--primary);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-dark:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.header.scrolled {
  background-color: var(--bg-white);
  padding: 16px 0;
  box-shadow: var(--shadow-md);
}

.header.scrolled .nav-link {
  color: var(--text-dark);
}

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

.header.scrolled .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

.header.scrolled .btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* For non-transparent headers on inner pages */
.header-solid {
  background-color: var(--bg-white);
  padding: 16px 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.header-solid .nav-link, .header-solid .logo {
  color: var(--primary);
}

.header-solid .btn-outline {
  border-color: var(--primary);
  color: var(--primary);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--bg-white);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--bg-white);
  margin: 5px 0;
  transition: var(--transition);
}

.header.scrolled .mobile-menu-btn span,
.header-solid .mobile-menu-btn span {
  background-color: var(--primary);
}

/* Sections */
.section {
  padding: 100px 0;
}

.section-light {
  background-color: var(--bg-light);
}

.section-dark {
  background-color: var(--primary);
  color: var(--bg-white);
}

.section-dark h2, .section-dark h3 {
  color: var(--bg-white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.section-dark .section-subtitle {
  color: #CBD5E1;
}

.text-left { text-align: left; margin-left: 0; }

/* Hero Sections */
/* Index Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.2s;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #E2E8F0;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.4s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards 0.6s;
}

/* Inner Page Heros */
.page-hero {
  padding: 160px 0 80px;
  background-color: var(--primary);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

.page-hero h1 {
  font-size: 3.5rem;
  color: var(--bg-white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.25rem;
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Partners Logo Bar */
.partners-section {
  padding: 40px 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid #E2E8F0;
}

.partners-text {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 600;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partners-logos:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.partners-logos img {
  height: 35px;
  object-fit: contain;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Feature/Service block */
.service-card {
  background-color: var(--bg-white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid #E2E8F0;
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--accent);
}

.service-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--accent);
  color: var(--bg-white);
}

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

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

/* Image wrappers */
.img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.img-wrapper:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--accent);
  color: var(--bg-white);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.experience-badge h4 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin: 0;
}

.experience-badge p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Steps Process */
.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  position: relative;
  z-index: 2;
  border: 4px solid var(--bg-white);
  box-shadow: var(--shadow-md);
}

.step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background-color: #E2E8F0;
  z-index: 1;
}

.step-card h3 {
  margin-bottom: 12px;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.quote-icon {
  color: var(--accent);
  font-size: 40px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1rem;
  margin: 0;
}

.author-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

/* Stats */
.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.1rem;
  color: #E2E8F0;
}

/* CTA Sub-banner */
.cta-banner {
  background-color: var(--accent);
  padding: 80px 0;
  text-align: center;
  color: var(--bg-white);
}

.cta-banner h2 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.cta-banner p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: #94A3B8;
  padding: 80px 0 24px;
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 24px;
  display: block;
}

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

.footer-desc {
  margin-bottom: 24px;
  max-width: 350px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bg-white);
  transition: var(--transition);
}

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

.footer-title {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 24px;
}

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

.footer-links a {
  transition: var(--transition);
}

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

.contact-info li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-info i {
  color: var(--accent);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

/* Contact Page Form */
.contact-wrapper {
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

.contact-info-panel {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 48px;
}

.contact-info-panel h3 {
  color: var(--bg-white);
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}

.contact-form-panel {
  padding: 48px;
}

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

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

textarea.form-control {
  height: 150px;
  resize: vertical;
}

/* Accordion FAQ */
.faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 24px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-body);
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 16px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3.5rem; }
  .step-card:not(:last-child)::after { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  
  .mobile-menu-btn { display: block; }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--primary);
    flex-direction: column;
    justify-content: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link { color: var(--bg-white); font-size: 1.25rem; }
  .header.scrolled .nav-link { color: var(--bg-white); }
  
  .hero-title { font-size: 2.5rem; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  .experience-badge { right: 0; bottom: 0; border-radius: 0; }
}
