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

:root {
  --primary-light: #fffbf5;
  --secondary-light: #fff5e8;
  --tertiary-light: #ffe8d1;
  --accent-orange: #ff6b35;
  --accent-teal: #00a896;
  --accent-coral: #ff8c61;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-muted: #757575;
  --border-subtle: #f0ddc8;
  --border-medium: #e5d4ba;
  --overlay-dark: rgba(0, 0, 0, 0.7);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--primary-light);
  letter-spacing: -0.01em;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-header {
  background-color: rgba(255, 251, 245, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.site-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: lowercase;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent-orange);
}

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

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

.mobile-menu-toggle span {
  width: 26px;
  height: 2px;
  background-color: var(--text-primary);
  transition: 0.3s;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c61 50%, #00a896 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/img/hero-automotive.jpg") center / cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.hero h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: 0.01em;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background-color: #ffffff;
  color: var(--accent-orange);
  border-color: #ffffff;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background-color: #ffffff;
  color: var(--accent-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.features {
  padding: 8rem 0;
  background-color: var(--secondary-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--primary-light);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

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

.latest-news {
  padding: 8rem 0;
  background-color: var(--primary-light);
}

.latest-news h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
}

.news-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.news-card {
  background-color: var(--primary-light);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.news-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: var(--tertiary-light);
  position: relative;
}

.news-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.08);
}

.news-content {
  padding: 2rem;
}

.news-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-category {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-coral));
  color: #ffffff;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  border-radius: 20px;
}

.news-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-orange);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.3s ease;
}

.read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.read-more:hover {
  gap: 0.8rem;
  color: var(--accent-teal);
}

.read-more:hover::after {
  transform: translateX(4px);
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--primary-light) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 5rem 0 4rem;
}

.page-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
}

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

.about-content {
  padding: 6rem 0;
  background-color: var(--primary-light);
}

.about-intro,
.about-mission,
.about-coverage,
.about-team {
  margin-bottom: 5rem;
}

.about-intro h3,
.about-mission h3,
.about-coverage h3,
.about-team h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.about-intro p,
.about-team p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  max-width: 900px;
}

.mission-grid,
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mission-item,
.coverage-item {
  padding: 2.5rem;
  background-color: var(--secondary-light);
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mission-item:hover,
.coverage-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.mission-item h4,
.coverage-item h5 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.mission-item p,
.coverage-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.reporters-section {
  padding: 6rem 0;
  background-color: var(--secondary-light);
}

.reporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.reporter-card {
  background-color: var(--primary-light);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.reporter-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.reporter-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: var(--tertiary-light);
}

.reporter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reporter-card:hover .reporter-image img {
  transform: scale(1.05);
}

.reporter-info {
  padding: 2rem;
}

.reporter-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.reporter-role {
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reporter-bio {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.more-reporters {
  text-align: center;
  padding: 3rem 2rem;
  background-color: var(--secondary-light);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-style: italic;
}

.news-section {
  padding: 6rem 0;
  background-color: var(--secondary-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-item {
  background-color: var(--primary-light);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--border-medium);
  background-color: var(--primary-light);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.pagination-btn:hover,
.pagination-btn.active {
  background-color: var(--accent-orange);
  color: #ffffff;
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}

.contact-section {
  padding: 6rem 0;
  background-color: var(--primary-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}

.contact-info h3,
.contact-form-wrapper h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item h4 {
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-item a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--accent-teal);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  padding: 1rem;
  border: 2px solid var(--border-medium);
  background-color: var(--primary-light);
  color: var(--text-primary);
  font-size: 1rem;
  font-family: inherit;
  border-radius: 6px;
  transition: border-color 0.3s;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-message {
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-message.success {
  background-color: rgba(0, 168, 150, 0.1);
  color: var(--accent-teal);
  border: 1px solid var(--accent-teal);
  border-radius: 6px;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid #ef4444;
  border-radius: 6px;
}

.legal-content {
  padding: 6rem 0;
  background-color: var(--primary-light);
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.legal-text h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-text p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-text ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-text li {
  margin-bottom: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-text a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color 0.3s;
}

.legal-text a:hover {
  color: var(--accent-teal);
}

.site-footer {
  background-color: var(--secondary-light);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-section a:hover {
  color: var(--text-primary);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

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

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

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 251, 245, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-subtle);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1.5rem;
  }

  .main-nav ul li {
    border-bottom: 1px solid var(--border-subtle);
  }

  .main-nav ul li:last-child {
    border-bottom: none;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
  }

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

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
    padding: 4rem 0;
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .features {
    padding: 4rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .latest-news {
    padding: 4rem 0;
  }

  .news-preview {
    grid-template-columns: 1fr;
  }

  .reporters-grid {
    grid-template-columns: 1fr;
  }

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

  .news-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 3rem 0 2rem;
  }
}

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

  .hero {
    min-height: 60vh;
  }

  .features,
  .latest-news,
  .about-content,
  .reporters-section,
  .news-section,
  .contact-section,
  .legal-content {
    padding: 3rem 0;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
  }

  .feature-card,
  .mission-item,
  .coverage-item {
    padding: 2rem 1.5rem;
  }
}
