/* ===== YHS ENTERPRISES LLC - Professional Website ===== */

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --secondary: #e94560;
  --accent: #f5a623;
  --text: #eaeaea;
  --text-light: #a0a0b0;
  --white: #f5f5f5;
  --bg: #1a1a2e;
  --bg-alt: #16213e;
  --border: #2a2a4a;
  --gradient-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-2: linear-gradient(135deg, #e94560 0%, #f5a623 100%);
  --shadow: 0 10px 30px -15px rgba(0,0,0,0.7);
  --shadow-lg: 0 20px 40px -15px rgba(0,0,0,0.9);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 5%;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(233, 69, 96, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.7rem 5%;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.7);
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--secondary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  transition: all 0.3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: rgba(233, 69, 96, 0.1) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(233,69,96,0.05) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-subtitle {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 .highlight {
  background: var(--gradient-2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--secondary);
  box-shadow: inset 0 0 0 2px var(--secondary);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: rgba(233, 69, 96, 0.1);
}

/* ===== Section Common ===== */
.section {
  padding: 6rem 5%;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--secondary);
  transition: height 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 69, 96, 0.3);
}

.service-card:hover::before { height: 100%; }

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: var(--secondary);
}

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

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  text-decoration: none;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: gap 0.3s;
}

.service-card .service-link:hover { gap: 0.8rem; }

/* ===== About Section ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.about-right {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.about-right h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.about-right ul {
  list-style: none;
}

.about-right li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-right li:last-child { border-bottom: none; }

.about-right li::before {
  content: '→';
  color: var(--secondary);
  font-weight: 700;
}

/* ===== Features / Why Us ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.feature-item h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.feature-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 45px;
  height: 45px;
  background: rgba(233, 69, 96, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.contact-detail-text p, .contact-detail-text a {
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-detail-text a:hover { color: var(--secondary); }

.contact-form {
  background: var(--bg-alt);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ===== Footer ===== */
.footer {
  background: var(--primary);
  padding: 4rem 5% 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-brand h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand h3 span { color: var(--secondary); }

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.7rem; }

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
}

/* ===== Page Header (subpages) ===== */
.page-header {
  padding: 8rem 5% 3rem;
  text-align: center;
  background: var(--bg-alt);
}

.page-header h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Content Pages (Privacy, Terms) ===== */
.content-page {
  max-width: 850px;
  margin: 0 auto;
  padding: 4rem 5% 6rem;
}

.content-page h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin: 3rem 0 1.5rem;
}

.content-page h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.content-page p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.content-page ul, .content-page ol {
  color: var(--text-light);
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

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

.content-page strong { color: var(--text); }

.content-page .last-updated {
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 2rem;
}

/* ===== Contact Page Full ===== */
.page-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 5%;
}

/* ===== Services Page ===== */
.services-page-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 5% 6rem;
}

.services-page-grid .service-card { background: var(--bg); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 5%;
}

.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-step .step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .page-contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 4rem 5%; }
  .section-header h2 { font-size: 1.8rem; }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg-alt);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transition: right 0.3s;
    border-left: 1px solid var(--border);
  }

  .nav-links.active { right: 0; }
  .menu-toggle { display: flex; }
  
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .about-stats { grid-template-columns: 1fr; }
}
