/* Root Variables */
:root {
  --primary-color: #1a1a1a;
  --primary-dark: #0a0a0a;
  --accent-color: #f59e0b;
  --accent-light: #fbbf24;
  --text-color: #1a1a1a;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-card: #f3f4f6;
  --border-color: #e5e7eb;
  --border-light: #f0f0f0;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-white);
  line-height: 1.6;
}

* {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== HEADER ===================== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bg-white);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 700;
  color: var(--bg-white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-text p {
  font-size: 11px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.nav-desktop a {
  padding: 8px 12px;
  color: var(--text-lighter);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-color);
  background-color: rgba(245, 158, 11, 0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--bg-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary-dark);
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: var(--text-lighter);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-color);
  background-color: rgba(245, 158, 11, 0.1);
}

.header-actions {
  display: none;
  gap: 16px;
  align-items: center;
  white-space: nowrap;
  margin-left: 40px;
}

.header-actions a:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-actions a:first-child:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .header-actions {
    display: flex;
    gap: 10px;
  }

  .header-actions a:first-child {
    font-size: 12px;
  }

  .header-actions .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  gap: 8px;
  align-items: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Buttons in dark section */
.section-dark .btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.section-dark .btn-primary:hover {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* ===================== HERO SECTIONS ===================== */
.hero {
  position: relative;
  min-height: 80vh;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 60vh;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: var(--bg-white);
  padding: 40px 0;
}

@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 20px;
  }
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  word-spacing: 2px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.hero-badge {
  display: inline-block;
  background-color: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content > div:last-child {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero-content > div:last-child {
    gap: 12px;
    margin-top: 30px;
  }

  .hero-content > div:last-child > a {
    font-size: 14px;
    padding: 10px 18px;
  }
}

@media (max-width: 480px) {
  .hero-content > div:last-child {
    flex-direction: column;
    gap: 12px;
  }

  .hero-content > div:last-child > a {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }
}

/* ===================== SECTIONS ===================== */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin: 0 auto 40px auto;
  max-width: 600px;
}

.section-dark {
  background-color: #f59e0b;
  color: var(--text-color);
  padding: 40px 0;
}

.section-dark .section-subtitle {
  color: var(--text-light);
}

/* Dark Background Section */
.section-dark-bg {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0;
}

.section-dark-bg .section-title {
  color: var(--bg-white);
}

.section-dark-bg p {
  color: var(--text-lighter);
}

.section-dark-bg .btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.section-dark-bg .btn-primary:hover {
  background-color: var(--accent-light);
}

.section-accent {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: var(--primary-color);
}

.section-light {
  background-color: var(--bg-light);
}

/* ===================== CARDS & BOXES ===================== */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.service-image-wrapper {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-image {
  transform: scale(1.05);
}

.service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 16px;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
  color: var(--primary-color);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}

.feature-item::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.service-features {
  list-style: none;
  margin-top: auto;
}

.service-features li {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.service-features li::before {
  content: '✓';
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 4px;
}

/* ===================== GRID LAYOUTS ===================== */
.grid {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  @media (min-width: 768px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  @media (min-width: 768px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===================== STATS SECTION ===================== */
.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-item i {
  font-size: 40px;
  color: var(--bg-white);
  margin-bottom: 16px;
}

.stat-value {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--bg-white);
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--bg-white);
  opacity: 0.9;
}

/* ===================== TESTIMONIALS ===================== */
.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.testimonial-stars {
  color: var(--accent-color);
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-text {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-color);
}

.testimonial-position {
  font-size: 12px;
  color: var(--text-light);
}

/* ===================== FORM ELEMENTS ===================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.3s ease;
  background-color: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
  font-family: inherit;
}

/* Contact Form Styling */
#contact-form {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.15);
  transition: all 0.3s ease;
}

#contact-form:hover {
  box-shadow: 0 12px 48px rgba(245, 158, 11, 0.25);
  border-color: #fbbf24;
}

@media (max-width: 768px) {
  #contact-form {
    padding: 24px;
    border: 2px solid var(--accent-color);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===================== PROJECT CARDS ===================== */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  background-color: var(--bg-light);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--bg-white);
  z-index: 2;
}

.project-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  width: fit-content;
}

.project-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.project-location {
  font-size: 12px;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===================== FILTER BUTTONS ===================== */
.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-color);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.2);
}

/* ===================== FOOTER ===================== */
footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--bg-white);
}

.footer-section p {
  color: var(--text-lighter);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--text-lighter);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--accent-color);
  min-width: 20px;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-lighter);
  font-size: 12px;
  margin: 0;
  display: inline;
}

.footer-bottom p:first-child {
  font-weight: 600;
  color: var(--text-light);
}

.footer-bottom > div:nth-child(2) {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-bottom a {
  color: var(--text-lighter);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 12px;
  display: inline;
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

.social-media-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.social-media-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  color: white;
}

.social-media-icons a.facebook {
  background-color: #1877F2;
}

.social-media-icons a.facebook:hover {
  background-color: #165ec9;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-media-icons a.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-media-icons a.instagram:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(224, 148, 51, 0.3);
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .header-actions {
    display: flex;
  }

  .hero h1 {
    font-size: 56px;
  }

  .section-title {
    font-size: 56px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }

  section {
    padding: 60px 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    text-align: center;
    padding: 16px 0;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom p {
    font-size: 11px;
    margin: 0;
  }

  .footer-bottom > div {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer-bottom > div > a,
  .footer-bottom > div > span {
    font-size: 11px;
  }

  .social-media-icons a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* ===================== UTILITY CLASSES ===================== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--accent-color);
}

.text-light {
  color: var(--text-light);
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-20 {
  gap: 20px;
}

.gap-40 {
  gap: 40px;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-light);
}

/* ===================== PRINT STYLES ===================== */
@media print {
  * {
    background-color: transparent !important;
    background-image: none !important;
  }

  body {
    background-color: white !important;
    color: #000 !important;
  }

  header {
    background-color: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
  }

  header * {
    color: white !important;
  }

  .logo-text h1,
  .logo-text p {
    color: white !important;
  }

  .logo-icon {
    background-color: var(--accent-color) !important;
    color: var(--primary-color) !important;
  }

  section {
    page-break-inside: avoid;
  }

  .section-dark {
    background-color: var(--primary-color) !important;
    color: white !important;
  }

  .section-dark h2,
  .section-dark h3,
  .section-dark .section-title {
    color: white !important;
  }

  .section-dark p {
    color: #ccc !important;
  }

  .section-light {
    background-color: var(--bg-light) !important;
  }

  .section-accent {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%) !important;
    color: var(--primary-color) !important;
  }

  .section-accent h2,
  .section-accent .section-title {
    color: var(--primary-color) !important;
  }

  a {
    color: var(--accent-color) !important;
    text-decoration: underline !important;
  }

  .btn {
    border: 1px solid #000 !important;
    color: #000 !important;
  }

  .btn-primary {
    background-color: var(--accent-color) !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--accent-color) !important;
  }

  footer {
    background-color: var(--primary-color) !important;
    color: white !important;
    page-break-inside: avoid;
  }

  footer * {
    background-color: transparent !important;
    color: white !important;
  }

  .footer-section a {
    color: var(--accent-color) !important;
  }

  .mobile-menu-toggle,
  .mobile-nav {
    display: none !important;
  }

  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}
