/* 
* JJETT26 - Main Stylesheet
* Modern, responsive design with high-end aesthetics
*/

/* ===== BASE STYLES ===== */
:root {
  --primary-color: #7209B7;
  --secondary-color: #4361EE;
  --accent-color: #F72585;
  --dark-color: #212121;
  --light-color: #F8F9FA;
  --gray-color: #6c757d;
  --success-color: #28a745;
  --info-color: #17a2b8;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Raleway', sans-serif;
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px */
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--dark-color);
  background-color: var(--light-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--dark-color);
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 2rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header h2 {
  margin-bottom: 1.5rem;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray-color);
}

.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.btn:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

/* ===== HEADER STYLES ===== */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 8rem;
}

.logo {
  height: 6rem;
}

.logo-svg {
  height: 100%;
}

.nav-list {
  display: flex;
  gap: 3rem;
}

.nav-list a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.6rem;
  position: relative;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--primary-color);
}

.nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== HERO STYLES ===== */
.hero {
  padding: 18rem 0 10rem;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 5;
}

.hero h1 {
  margin-bottom: 2rem;
  font-size: 5rem;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 2rem;
  color: var(--gray-color);
  margin-bottom: 4rem;
}

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

.hero-visual {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  z-index: 1;
}

.hero-shape {
  width: 100%;
  opacity: 0.8;
}

/* ===== SERVICES STYLES ===== */
.services {
  padding: 10rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 4rem;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

.service-card p {
  color: var(--gray-color);
  margin-bottom: 2rem;
}

.service-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.service-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover::after {
  transform: translateX(5px);
}

/* ===== FEATURES STYLES ===== */
.features {
  padding: 10rem 0;
  background-color: #f9f9f9;
}

.features-showcase {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.features-list {
  flex: 1;
}

.feature-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 2.4rem;
  min-width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-content h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.feature-content p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.features-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-shape {
  width: 80%;
}

/* ===== ABOUT STYLES ===== */
.about {
  padding: 10rem 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 5rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.about-text p {
  color: var(--gray-color);
  margin-bottom: 3rem;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
  min-width: 150px;
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-color);
  font-size: 1.6rem;
}

/* ===== RESOURCES STYLES ===== */
.resources {
  padding: 10rem 0;
  background-color: #f9f9f9;
}

.resources-content {
  max-width: 900px;
  margin: 0 auto;
}

.resources-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.resources-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 4rem;
}

.resource-category h3 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  color: var(--dark-color);
}

.resource-list li {
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.resource-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 2rem;
}

.resource-list a {
  color: var(--dark-color);
  font-weight: 500;
  transition: var(--transition);
}

.resource-list a:hover {
  color: var(--primary-color);
}

/* ===== CONTACT STYLES ===== */
.contact {
  padding: 10rem 0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.contact-info, .contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-icon {
  font-size: 2.4rem;
  min-width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-text h3 {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.contact-text p {
  color: var(--gray-color);
  margin-bottom: 0;
}

.contact-social {
  margin-top: 4rem;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 1.8rem;
  transition: var(--transition);
}

.social-icon:hover {
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: white;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(114, 9, 183, 0.1);
}

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

/* ===== FOOTER STYLES ===== */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  flex: 1;
  min-width: 200px;
}

.footer-svg {
  margin-bottom: 2rem;
}

.copyright {
  color: #a0a0a0;
  font-size: 1.4rem;
  margin-bottom: 0;
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-column {
  flex: 1;
  min-width: 150px;
}

.footer-column h4 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-column ul li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: #a0a0a0;
  font-size: 1.4rem;
  transition: var(--transition);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #a0a0a0;
  font-size: 1.4rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
  html {
    font-size: 56.25%; /* 9px */
  }
  
  .hero {
    padding: 15rem 0 8rem;
  }
  
  .hero-visual {
    opacity: 0.4;
    width: 70%;
  }
  
  .features-showcase {
    flex-direction: column;
  }
  
  .features-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 50%; /* 8px */
  }
  
  .header-inner {
    height: 7rem;
  }
  
  .nav-list {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    z-index: 999;
  }
  
  .nav-list.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-list li {
    width: 100%;
  }
  
  .nav-list a {
    display: block;
    padding: 1.5rem 2rem;
    width: 100%;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .stat-item {
    flex: 1;
  }
  
  .resources-container {
    grid-template-columns: 1fr;
  }
  
  .contact-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  .section-header {
    margin-bottom: 3rem;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-visual {
    opacity: 0.2;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 2rem;
  }
  
  .about-stats {
    flex-direction: column;
  }
  
  .stat-item {
    margin-bottom: 2rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto 2rem;
  }
  
  .contact-social {
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
}
