/* CSS Variables */
:root {
  --ginger-1: #F97316;
  --ginger-2: #EA580C;
  --ginger-3: #DC2626;
  --dark: #2B2B2B;
  --gray: #4B5563;
  --light-gray: #E5E7EB;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --footer-dark: #0F172A;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--white);
}

h1, h2, h3 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--ginger-2);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ginger-3);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation Bar */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 88px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--ginger-2);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ginger-2);
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 6rem 0 7rem;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(234, 88, 12, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(251, 146, 60, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(253, 186, 116, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 90%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
  filter: blur(60px);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--dark);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--gray);
}

.section-text {
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--ginger-1);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.contact-card {
  padding: 2rem;
  background: var(--bg);
  border-radius: 8px;
}

.contact-card h3 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.contact-card p {
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

.contact-card a {
  font-weight: 500;
  font-size: 1.125rem;
}

/* Footer */
.footer {
  background: var(--footer-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0;
  margin-top: 5rem;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

/* Privacy Policy Page */
.privacy-section {
  padding: 4rem 0 5rem;
}

.content-container {
  max-width: 900px;
}

.content-container h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.update-date {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  font-style: italic;
}

.content-container h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
}

.content-container h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-container p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-container ul {
  margin: 1rem 0 1.5rem 2rem;
  line-height: 1.8;
}

.content-container li {
  margin-bottom: 0.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 73px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    padding: 1rem 0;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero {
    padding: 4rem 0 5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .services-grid {
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .nav-container {
    padding: 1rem 1.25rem;
  }

  .nav-logo img {
    height: 55px;
  }

  h1 {
    font-size: 1.85rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 2rem;
  }

  .content-container h1 {
    font-size: 2rem;
  }

  .content-container h2 {
    font-size: 1.5rem;
  }
}
