/* NEMETH PUBLISHERS - Complete Professional Design */
/* Exact Arisesalem Style - Black & Yellow Theme */

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

:root {
  --yellow: #F4C21C;
  --black: #1e1e1e;
  --dark: #0a0a0a;
  --gray: #666;
  --light: #f8f9fa;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar */
.top-bar {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 3px solid var(--black);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar i {
  margin-right: 8px;
}

/* Navigation */
nav {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.logo img {
  height: 85px;
  transition: transform 0.3s;
}

.logo:hover img {
  transform: scale(1.08);
}

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

.nav-links li {
  position: relative;
}

.nav-links a {
  color: var(--black);
  text-decoration: none;
  padding: 28px 18px;
  display: block;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--yellow);
  transition: width 0.4s;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
  background: rgba(244,194,28,0.05);
}

.pipe {
  color: #ddd;
  font-size: 20px;
  font-weight: 300;
  padding: 0 10px;
}

/* Hero Section */
.hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244,194,28,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h3 {
  font-size: 48px;
  font-weight: 300;
  color: #555;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-content h1 span {
  color: var(--yellow);
  text-shadow: 2px 2px 4px rgba(244,194,28,0.3);
}

.hero-content .tagline {
  font-size: 22px;
  color: var(--gray);
  border-left: 5px solid var(--yellow);
  padding-left: 20px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.8;
}

.rating {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 40px;
}

.stars {
  color: var(--yellow);
  font-size: 26px;
  margin-right: 12px;
  text-shadow: 0 2px 8px rgba(244,194,28,0.4);
  letter-spacing: 3px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 15px;
  border: 3px solid var(--yellow);
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(244,194,28,0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--black);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn:hover::before {
  width: 400px;
  height: 400px;
}

.btn:hover {
  color: var(--yellow);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(244,194,28,0.6);
  border-color: var(--black);
}

.btn span {
  position: relative;
  z-index: 1;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: #fff;
}

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

.stat-card {
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.5s;
  text-align: center;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow), var(--black));
  transform: scaleX(0);
  transition: transform 0.5s;
}

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

.stat-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  border-color: var(--yellow);
}

.stat-icon {
  font-size: 52px;
  color: var(--black);
  margin-bottom: 25px;
  transition: all 0.4s;
}

.stat-card:hover .stat-icon {
  transform: scale(1.3) rotate(360deg);
  color: var(--yellow);
}

.stat-number {
  font-size: 54px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 15px;
  line-height: 1;
}

.stat-label {
  font-size: 15px;
  color: var(--gray);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Titles */
.section-title {
  font-size: 48px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100px;
  height: 6px;
  background: var(--yellow);
  border-radius: 3px;
}

.section-subtitle {
  font-size: 19px;
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 500;
}

.lead {
  font-size: 22px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 25px;
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 100px 0;
  background: #fff;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Journals Section */
.journals {
  padding: 100px 0;
  background: var(--light);
}

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

.journals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.journal-card {
  background: #fff;
  border-radius: 25px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
  transition: all 0.6s;
  border: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.journal-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 8px;
  background: linear-gradient(90deg, var(--yellow), var(--black));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s;
}

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

.journal-card:hover {
  transform: translateY(-25px) scale(1.04);
  border-color: var(--yellow);
  box-shadow: 0 30px 70px rgba(244,194,28,0.3);
}

.journal-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  transition: all 0.6s;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.journal-card:hover .journal-logo {
  transform: scale(1.15) rotate(8deg);
  box-shadow: 0 15px 40px rgba(244,194,28,0.4);
}

.journal-card h3 {
  font-size: 34px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.journal-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray);
  margin-bottom: 20px;
  min-height: 50px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.journal-card p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.journal-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-weight: 800;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border: 3px solid var(--black);
  border-radius: 50px;
  transition: all 0.4s;
  background: #fff;
}

.journal-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  gap: 18px;
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(244,194,28,0.4);
}

/* Page Header (Inner Pages) */
.page-header {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  padding: 80px 0 60px;
  margin-bottom: 60px;
  color: #fff;
  border-bottom: 5px solid var(--yellow);
}

.page-header h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-header p {
  font-size: 19px;
  color: #ccc;
  margin-bottom: 0;
}

/* Content Section (Inner Pages) */
.content-section {
  padding: 60px 0;
}

.content-section h2 {
  color: var(--black);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
  border-left: 5px solid var(--yellow);
  padding-left: 20px;
}

.content-section h3 {
  color: var(--black);
  font-size: 26px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.content-section li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.info-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-left: 5px solid var(--yellow);
  transition: all 0.3s;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.info-card h3 {
  color: var(--black);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 15px;
  margin-top: 0;
}

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--black);
  font-size: 15px;
}

.form-control {
  width: 100%;
  border: 2px solid #ddd;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 0.2rem rgba(244,194,28,0.25);
  outline: none;
}

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

.btn-submit {
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  padding: 16px 45px;
  border: none;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 15px;
}

.btn-submit:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,194,28,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta p {
  font-size: 22px;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 40px;
}

/* Footer */
footer {
  background: var(--dark);
  padding: 80px 0 30px;
  color: #ccc;
}

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

footer h4,
footer h5 {
  color: var(--yellow);
  margin-bottom: 25px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 18px;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 12px;
}

footer a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
  font-weight: 500;
  font-size: 15px;
}

footer a:hover {
  color: var(--yellow);
  transform: translateX(8px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #ccc;
  font-size: 14px;
}

/* WhatsApp Button */
.whatsapp {
  position: fixed;
  width: 70px;
  height: 70px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 38px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  animation: whatsappPulse 2.5s infinite;
  border: 4px solid #fff;
  text-decoration: none;
}

.whatsapp:hover {
  transform: scale(1.2) rotate(5deg);
  box-shadow: 0 12px 45px rgba(37,211,102,0.8);
  color: #fff;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  }
  50% {
    box-shadow: 0 8px 30px rgba(37,211,102,0.8), 
                0 0 0 15px rgba(37,211,102,0.2),
                0 0 0 30px rgba(37,211,102,0.1);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .hero .container,
  .about .container {
    grid-template-columns: 1fr;
  }
  
  .hero-content h3 { font-size: 36px; }
  .hero-content h1 { font-size: 56px; }
  .section-title { font-size: 38px; }
  .page-header h1 { font-size: 42px; }
  
  .pipe { display: none; }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  footer .container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .hero-content h3 { font-size: 28px; }
  .hero-content h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
  .page-header h1 { font-size: 36px; }
  .cta-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .journals-grid {
    grid-template-columns: 1fr;
  }
  
  footer .container {
    grid-template-columns: 1fr;
  }
  
  .whatsapp {
    width: 65px;
    height: 65px;
    font-size: 34px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .stats, .about, .journals {
    padding: 60px 0;
  }
}
