/* Nirali - Simple Landing Page Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-light: #ff6b6b;
  --text: #eee;
  --text-muted: #aaa;
  --white: #fff;
  --max-width: 1100px;
  --header-height: 70px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--accent);
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo:hover {
  color: var(--accent-light);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

nav a {
  color: var(--text);
  font-weight: 500;
}
nav a:hover,
nav a.active {
  color: var(--accent-light);
}

/* Mobile menu button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* Main content */
main {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

/* Home - Hero */
.hero {
  text-align: center;
  padding: 4rem 0;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  transition: background var(--transition), transform 0.2s;
}
.btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* Home - Sections (About, Services, Get In Touch) */
.section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.section-desc + .section-desc {
  margin-top: -0.5rem;
}

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

.service-card {
  background: var(--secondary);
  border-radius: 12px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition);
}

.service-card:hover {
  border-color: rgba(233, 69, 96, 0.3);
}

.service-card h3 {
  color: var(--accent-light);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}


.contact-cta-card {
  background: var(--secondary);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--white);
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.contact-cta-card p {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  background: #2563eb;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform 0.2s;
}

.btn-contact:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  color: #fff !important;
}

/* Content pages (Privacy, Terms, Support) */
.page-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 0.5rem;
  color: var(--white);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent);
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.content-section {
  margin-bottom: 2rem;
}

.content-section h2 {
  font-size: 1.25rem;
  color: var(--accent-light);
  margin: 1.5rem 0 0.75rem;
}

.content-section p,
.content-section ul {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.content-section ul {
  padding-left: 1.5rem;
}

/* Support page */
.support-card {
  background: var(--secondary);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.support-card p {
  color: var(--text-muted);
  margin: 0;
}

.support-card .btn-contact-support {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.35rem;
  background: #2962ff;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), box-shadow 0.2s;
}
.support-card .btn-contact-support:hover {
  background: #1e53e5;
  box-shadow: 0 4px 12px rgba(41, 98, 255, 0.35);
  color: #fff !important;
}

/* Footer */
footer {
  background: var(--secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  padding: 2rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent-light);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav ul {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--secondary);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }

  nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav a {
    display: block;
    padding: 0.75rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .section {
    padding: 2rem 0;
  }

  .get-in-touch-section {
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-cta-card {
    margin: 1.5rem auto 0;
    padding: 1.5rem 1.25rem;
  }

  main {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1rem;
  }

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

  .footer-links {
    flex-direction: column;
  }
}
