:root {
  --primary-color: #c7d300;
  --primary-dark: #aeb800;
  --secondary-color: #1a1a1a;
  --text-color: #333;
  --text-light: #6b7280;
  --light-bg: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
  --font-main: 'Inter', sans-serif;
  --transition-speed: 0.3s;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-speed);
}

ul {
  list-style: none;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  //background-color: var(--secondary-color);
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  //background-color: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
}

.logo span {
  color: var(--primary-color);
  margin-left: 5px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  padding: 0 10px;
  font-weight: 500;
  color: var(--primary-color);
}

.nav-links a:hover {
  color: var(--white);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color) !important;
  padding: 10px 25px !important;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color var(--transition-speed);
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 50px 0 20px;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #888;
}

/* ==================== MODERN HOME STYLES ==================== */

/* Hero Modern */
.hero-modern {
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 120px 0 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(199, 211, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content-modern {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(199, 211, 0, 0.15);
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.btn-primary-modern {
  background: var(--primary-color);
  color: var(--secondary-color) !important;
  text-decoration: none !important;
}

.btn-primary-modern:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 211, 0, 0.3);
}

.btn-outline-modern {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  text-decoration: none !important;
}

  .btn-outline-modern:hover {
    background: var(--white);
    color: var(--secondary-color);
    
  }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Modern */
.section-modern {
  padding: 100px 0;
  background: var(--white);
}

.section-header-modern {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(199, 211, 0, 0.1);
  border-radius: 50px;
  color: var(--primary-color);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title-modern {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-description-modern {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Services Grid Modern */
.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.service-card-modern {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-color);
  transition: height 0.3s;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card-modern:hover::before {
  height: 100%;
}

.service-icon-modern {
  width: 64px;
  height: 64px;
  background: rgba(199, 211, 0, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}

.service-icon-modern i {
  width: 32px;
  height: 32px;
  color: var(--primary-color);
}

.service-card-modern:hover .service-icon-modern {
  background: var(--primary-color);
}

.service-card-modern:hover .service-icon-modern i {
  color: var(--secondary-color);
}

.service-card-modern h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.service-card-modern p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s;
}

.service-link i {
  width: 16px;
  height: 16px;
}

.service-link:hover {
  gap: 10px;
}

/* About Modern */
.about-modern {
  padding: 100px 0;
  background: var(--light-bg);
}

.about-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-modern {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.image-badge i {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.image-badge span {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 14px;
}

.about-content-modern h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 16px;
}

.about-content-modern p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 32px;
}

.feature-list-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.feature-item-modern {
  display: flex;
  gap: 16px;
}

.feature-icon-small {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-small i {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
}

.feature-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* Process Modern */
.process-modern {
  padding: 100px 0;
  background: var(--white);
}

.process-grid-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-card-modern {
  position: relative;
  text-align: center;
  padding: 32px 24px;
}

.process-number {
  position: absolute;
  top: 0;
  right: 24px;
  font-size: 80px;
  font-weight: 700;
  color: rgba(199, 211, 0, 0.1);
  line-height: 1;
}

.process-icon-modern {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  background: rgba(199, 211, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}

.process-icon-modern i {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
}

.process-card-modern:hover .process-icon-modern {
  background: var(--primary-color);
  transform: scale(1.1);
}

.process-card-modern:hover .process-icon-modern i {
  color: var(--secondary-color);
}

.process-card-modern h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.process-card-modern p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* CTA Modern */
.cta-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(199, 211, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content-modern {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text-modern h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-text-modern p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
}

.cta-actions-modern {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-light-modern {
  background: var(--white);
  color: var(--secondary-color);
}

.btn-light-modern:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 211, 0, 0.3);
}

.btn-outline-light-modern {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light-modern:hover {
  background: var(--white);
  color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-grid-modern {
    gap: 60px;
  }
  
  .process-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    font-size: 18px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .section-title-modern {
    font-size: 32px;
  }
  
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .about-grid-modern {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .process-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .cta-content-modern {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-actions-modern {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-modern {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .section-title-modern {
    font-size: 28px;
  }
  
  .service-card-modern {
    padding: 32px 24px;
  }
  
  .cta-text-modern h2 {
    font-size: 28px;
  }
}
