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

/* CSS Variables - Clean Light Corporate Theme (Matching taxfreecorp.com) */
:root {
  --font-primary: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Colors */
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-header: #0b1329; /* Dark Navy Header from taxfreecorp */
  --bg-footer: #080d1a;
  
  --primary: #1e40af; /* Corporate Blue */
  --primary-hover: #1d4ed8;
  --secondary: #0f172a;
  --accent: #10b981; /* Green/Teal highlight */
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  --transition: all 0.25s ease-in-out;
  --max-width: 1200px;
  --border-radius: 8px;
  --shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

a:hover {
  color: var(--primary-hover);
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header (Navy Dark, matching taxfreecorp) */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-header);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
}

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

.logo svg {
  width: 32px;
  height: 32px;
}

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

.nav-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

.btn-consultation {
  background: var(--accent);
  color: var(--text-white) !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-consultation:hover {
  background: #0d9488; /* Darker teal/green */
  transform: translateY(-1px);
}

.btn-consultation svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-white);
  margin: 5px auto;
  transition: var(--transition);
}

/* Hero Section (Clean and minimalist light hero) */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(180deg, #edf2f7 0%, var(--bg-body) 100%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(30, 64, 175, 0.08);
  padding: 6px 14px;
  border-radius: 4px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--secondary);
  max-width: 850px;
  margin: 0 auto 20px;
  letter-spacing: -0.01em;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-secondary {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 20px;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: var(--border-hover);
}

/* Value Columns (Replaces numeric stats) */
.value-pillars {
  padding: 50px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.value-item h3 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-muted);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid (Clean cards, light theme) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: rgba(30, 64, 175, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.5;
}

.service-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

.service-link:hover {
  color: var(--primary-hover);
}

/* Two-column layout */
.two-col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.feature-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--secondary);
}

.feature-content p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Call to Action */
.cta {
  padding: 80px 0;
  background: #f1f5f9;
}

.cta-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.cta p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 24px;
}

/* Contacts Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(30, 64, 175, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-details h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-details p, .contact-details a {
  color: var(--text-muted);
  font-size: 14px;
}

.contact-details a:hover {
  color: var(--primary);
}

.contact-form-container {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.contact-form-container h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: var(--bg-body);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
}

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

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: var(--text-white);
  border: none;
  border-radius: 4px;
  padding: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--primary-hover);
}

/* Compliance Legal Pages */
.legal-container {
  padding: 150px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}

.legal-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 13px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--secondary);
  border-left: 3px solid var(--primary);
  padding-left: 10px;
}

.legal-content h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.legal-content p, .legal-content li {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

/* Footer (Dark Slate) */
footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 70px 0 25px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

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

footer a {
  color: rgba(255, 255, 255, 0.6);
}

footer a:hover {
  color: var(--accent);
}

footer h4.footer-heading {
  color: var(--text-white);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-desc {
  max-width: 280px;
  line-height: 1.5;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-info svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.compliance-info {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 650px;
  line-height: 1.5;
}

.payment-gateways {
  display: flex;
  gap: 8px;
  align-items: center;
}

.gateway-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 3px 6px;
  font-weight: 700;
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-white);
  opacity: 0.6;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-header);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 20px;
    transition: var(--transition);
  }
  .nav-menu.active {
    left: 0;
  }
  .hero h1 {
    font-size: 36px;
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .value-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a, .hero-buttons button {
    width: 100%;
    justify-content: center;
  }
}
