/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

/* ===== CSS VARIABLES ===== */
:root {
  /* Colors */
  --primary-color: #2563eb;
  --primary-color-alt: #1d4ed8;
  --secondary-color: #f59e0b;
  --accent-color: #10b981;
  --text-color: #1f2937;
  --text-color-light: #6b7280;
  --white-color: #ffffff;
  --black-color: #000000;
  --body-color: #f9fafb;
  --container-color: #ffffff;
  --border-color: #e5e7eb;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --footer-bg-color: #1f2937;

  /* Typography */
  --body-font: 'Inter', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.5rem;
  --h2-font-size: 2rem;
  --h3-font-size: 1.5rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /* Font Weight */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /* Spacing */
  --header-height: 4rem;
  --section-padding: 5rem 0;
  --border-radius: 0.75rem;
  --border-radius-small: 0.5rem;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Z-index */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
  --z-mobile-menu: 1100;
}

/* Dark theme variables */
[data-theme="dark"] {
  --text-color: #f9fafb;
  --text-color-light: #d1d5db;
  --body-color: #111827;
  --container-color: #1f2937;
  --border-color: #374151;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --footer-bg-color: #0f172a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  color: var(--text-color);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  transition: var(--transition);
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: var(--section-padding);
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.section__subtitle {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--border-radius-small);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--container-color);
  box-shadow: 0 2px 20px var(--shadow-color);
  z-index: var(--z-fixed);
  transition: var(--transition);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}

.nav.container {
  padding: 0 !important;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: var(--font-bold);
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.nav__logo:hover {
  transform: translateY(-1px);
}

.nav__logo-img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--body-font);
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  color: var(--text-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  margin-left: 0.25rem;
  background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav__logo-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  right: -2px;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav__logo:hover .nav__logo-text::before {
  opacity: 1;
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  font-weight: var(--font-medium);
  color: var(--text-color);
  position: relative;
  transition: var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary-color);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--body-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: scale(1.1);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}

/* Hide mobile menu elements on desktop */
.nav__menu-header,
.nav__menu-footer {
  display: none;
}

.nav__menu-content {
  display: contents;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: calc(var(--header-height) + 2rem);
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--body-color) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__title-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--text-color-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 40px var(--shadow-color);
}

/* ===== FEATURES SECTION ===== */
.features {
  background-color: var(--container-color);
}

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

.features__card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--body-color);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.features__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.features__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white-color);
}

.features__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.features__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== PRODUCTS SECTION ===== */
.products__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.products__card {
  background-color: var(--container-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
}

.products__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--shadow-color);
}

.products__img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.products__content {
  padding: 2rem;
}

.products__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.products__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--gradient-primary);
  color: var(--white-color);
}

.cta__container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.cta__description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta .btn--primary:hover {
  background: var(--body-color);
  transform: translateY(-2px);
}

.cta .btn--secondary {
  border-color: var(--white-color);
  color: var(--white-color);
}

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

/* ===== FOOTER ===== */
.footer {
  background-color: var(--footer-bg-color);
  color: var(--white-color);
  padding: 3rem 0 1rem;
  border-top: 1px solid var(--border-color);
}

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

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: var(--transition);
  padding: 0.25rem 0;
}

.footer__logo:hover {
  transform: translateY(-1px);
}

.footer__logo-img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.footer__logo-text {
  font-family: var(--body-font);
  font-weight: var(--font-bold);
  font-size: 1.25rem;
  color: var(--white-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer__registry {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-font-size);
  font-style: italic;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--white-color);
  transform: translateX(5px);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item i {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--small-font-size);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 3rem;
  background: var(--gradient-primary);
  color: var(--white-color);
  text-align: center;
}

.page-header__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.page-header__subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  :root {
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.25rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .nav.container {
    padding: 0 !important;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__image {
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
  }

  .nav__logo-img,
  .footer__logo-img {
    width: 40px;
    height: 40px;
  }

  .nav__logo-text,
  .footer__logo-text {
    font-size: 1.125rem;
    letter-spacing: 1.5px;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--container-color);
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    z-index: var(--z-mobile-menu);
    padding: 0;
    box-shadow: -5px 0 20px var(--shadow-color);
  }

  .nav__menu.show-menu {
    right: 0;
  }

  /* Mobile Menu Header */
  .nav__menu-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--body-color);
  }

  .nav__menu-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
  }

  .nav__menu-logo-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .nav__menu-logo-text {
    font-size: 1.125rem;
    letter-spacing: 1.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Mobile Menu Content */
  .nav__menu-content {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .nav__link {
    font-size: 1.25rem;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  .nav__close {
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
  }

  .nav__close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
  }

  /* Mobile Menu Footer */
  .nav__menu-footer {
    display: block !important;
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--body-color);
  }

  .nav__menu-actions {
    text-align: center;
  }

  .nav__menu-actions-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: var(--font-semi-bold);
  }

  .nav__menu-actions-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    color: var(--text-color-light);
    line-height: 1.4;
  }

  .nav__menu-actions-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-width: auto;
  }

  .btn--small i {
    font-size: 1rem;
    margin-right: 0.25rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--small-font-size);
  }

  .features__container,
  .products__container {
    grid-template-columns: 1fr;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --biggest-font-size: 2rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .nav.container {
    padding: 0 !important;
  }

  .nav__logo-img,
  .footer__logo-img {
    width: 35px;
    height: 35px;
  }

  .nav__logo-text,
  .footer__logo-text {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .nav__logo {
    gap: 0.5rem;
  }

  .footer__logo {
    gap: 0.5rem;
  }

  .hero__title {
    font-size: var(--h1-font-size);
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-overview {
  background-color: var(--container-color);
}

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

.service-card {
  background-color: var(--body-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--white-color);
}

.service-card__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card__description {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card__features {
  list-style: none;
}

.service-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: var(--font-bold);
}

/* Process Section */
.process {
  background-color: var(--body-color);
}

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

.process__step {
  text-align: center;
  position: relative;
}

.process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: var(--gradient-primary);
  z-index: 1;
}

.process__number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: var(--font-bold);
  margin: 0 auto 1rem;
}

.process__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.process__description {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  line-height: 1.6;
}

/* ===== ABOUT PAGE STYLES ===== */
.company-story {
  background-color: var(--container-color);
}

.story__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story__text {
  margin-bottom: 1.5rem;
  color: var(--text-color-light);
  line-height: 1.7;
}

.story__text:last-child {
  margin-bottom: 0;
}

.story__img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px var(--shadow-color);
}

/* Mission & Vision */
.mission-vision {
  background-color: var(--body-color);
}

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

.mv__card {
  background-color: var(--container-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.mv__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.mv__icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--white-color);
}

.mv__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.mv__description {
  color: var(--text-color-light);
  line-height: 1.7;
}

/* Values Section */
.values {
  background-color: var(--container-color);
}

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

.value__card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--body-color);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.value__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.value__icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--white-color);
}

.value__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.value__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
  background-color: var(--body-color);
}

.choose__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.choose__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.choose__item {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--container-color);
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.choose__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

.choose__number {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.choose__text h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.choose__text p {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.choose__img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 30px var(--shadow-color);
}

/* Team Section */
.team {
  background-color: var(--container-color);
}

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

.team__card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius);
  background-color: var(--body-color);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.team__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px var(--shadow-color);
}

.team__icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--white-color);
}

.team__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.team__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact {
  background-color: var(--container-color);
}

.contact__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact__main {
  background-color: var(--body-color);
  padding: 3rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.contact__title {
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
  color: var(--text-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact__description {
  color: var(--text-color-light);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-size: 1.125rem;
}

.contact__methods {
  display: grid;
  gap: 2rem;
}

.contact__method {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--container-color);
  border-radius: var(--border-radius-small);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact__method:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px var(--shadow-color);
}

.contact__method-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white-color);
  flex-shrink: 0;
}

.contact__method-content h3 {
  font-size: var(--h3-font-size);
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact__method-content p {
  font-size: 1.125rem;
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.contact__method-note {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/* Office Information */
.contact__office-card {
  background-color: var(--body-color);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px var(--shadow-color);
  height: fit-content;
}

.contact__office-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.contact__office-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white-color);
}

.contact__office-header h3 {
  font-size: var(--h3-font-size);
  color: var(--text-color);
}

.contact__address {
  margin-bottom: 2rem;
}

.contact__address h4,
.contact__hours h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact__address p {
  color: var(--text-color-light);
  line-height: 1.6;
}

.contact__hours-list {
  margin-bottom: 1rem;
}

.contact__hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.contact__hours-item:last-child {
  border-bottom: none;
}

.contact__hours-item span:first-child {
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.contact__hours-item span:last-child {
  color: var(--text-color-light);
}

.contact__timezone {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-style: italic;
}

/* Company Information */
.contact__company {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.contact__company h4 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact__company-name {
  font-weight: var(--font-semi-bold);
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact__company-registry,
.contact__company-founded {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  margin-bottom: 0.25rem;
}

/* Quick Contact Actions */
.contact__actions {
  text-align: center;
  background: var(--gradient-primary);
  padding: 3rem;
  border-radius: var(--border-radius);
  color: var(--white-color);
}

.contact__actions-title {
  font-size: var(--h2-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.contact__actions-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact__actions-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.contact__actions .btn--primary:hover {
  background: var(--body-color);
  transform: translateY(-2px);
}

.contact__actions .btn--secondary {
  border-color: var(--white-color);
  color: var(--white-color);
}

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

/* FAQ Section */
.faq {
  background-color: var(--body-color);
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq__item:hover {
  box-shadow: 0 5px 15px var(--shadow-color);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq__question:hover {
  background-color: var(--body-color);
}

.faq__question h3 {
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
}

.faq__icon {
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 200px;
}

.faq__answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-color-light);
  line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media screen and (max-width: 1024px) {
  .story__container,
  .choose__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .choose__content {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process__step:not(:last-child)::after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .process__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__main,
  .contact__office-card {
    padding: 1.5rem;
  }

  .contact__actions {
    padding: 2rem;
  }

  .contact__actions-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .process__container {
    grid-template-columns: 1fr;
  }

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

  .contact__main,
  .contact__office-card {
    padding: 1rem;
  }

  .contact__actions {
    padding: 1.5rem;
  }

  .contact__method {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  /* Mobile Menu Responsive */
  .nav__menu-header {
    padding: 0.75rem 1rem !important;
  }

  .nav__menu-logo-img {
    width: 35px !important;
    height: 35px !important;
  }

  .nav__menu-logo-text {
    font-size: 1rem !important;
  }

  .nav__menu-footer {
    padding: 1.5rem 1rem !important;
  }

  .nav__menu-actions-title {
    font-size: 1.125rem !important;
  }

  .nav__menu-actions-subtitle {
    font-size: 0.8125rem !important;
  }

  .nav__menu-actions-buttons {
    gap: 0.5rem !important;
  }

  .btn--small {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.8125rem !important;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease forwards;
}

/* ===== SCROLL ANIMATIONS ===== */
.section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== NOTIFICATION ANIMATIONS ===== */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ===== SCROLL HEADER STYLES ===== */
.scroll-header {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

/* ===== BACK TO TOP BUTTON HOVER ===== */
.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* ===== ENHANCED BUTTON ANIMATIONS ===== */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* ===== ENHANCED CARD HOVER EFFECTS ===== */
.features__card,
.products__card,
.service-card,
.value__card,
.team__card,
.mv__card {
  position: relative;
  overflow: hidden;
}

.features__card::before,
.products__card::before,
.service-card::before,
.value__card::before,
.team__card::before,
.mv__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.features__card:hover::before,
.products__card:hover::before,
.service-card:hover::before,
.value__card:hover::before,
.team__card:hover::before,
.mv__card:hover::before {
  opacity: 1;
}

/* ===== ENHANCED FORM STYLES ===== */
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  transform: translateY(-2px);
}

.form__group {
  position: relative;
}

.form__input:focus + .form__label,
.form__select:focus + .form__label,
.form__textarea:focus + .form__label {
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== ENHANCED NAVIGATION ===== */
.nav__link {
  position: relative;
  overflow: hidden;
}

.nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav__link:hover::before {
  width: 100%;
}

/* ===== ENHANCED HERO SECTION ===== */
.hero__title {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__description {
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__buttons {
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__image {
  animation: fadeInRight 0.8s ease 0.3s both;
}

/* ===== ENHANCED FOOTER ===== */
.footer__link {
  position: relative;
}

.footer__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white-color);
  transition: width 0.3s ease;
}

.footer__link:hover::after {
  width: 100%;
}

/* ===== ENHANCED CONTACT INFO ===== */
.contact__info-item {
  transition: var(--transition);
}

.contact__info-item:hover {
  transform: translateX(5px);
}

.contact__info-item:hover .contact__info-icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* ===== ENHANCED PROCESS SECTION ===== */
.process__step {
  animation: fadeInUp 0.6s ease both;
}

.process__step:nth-child(1) { animation-delay: 0.1s; }
.process__step:nth-child(2) { animation-delay: 0.2s; }
.process__step:nth-child(3) { animation-delay: 0.3s; }
.process__step:nth-child(4) { animation-delay: 0.4s; }
.process__step:nth-child(5) { animation-delay: 0.5s; }

/* ===== ENHANCED FAQ ===== */
.faq__item {
  transition: all 0.3s ease;
}

.faq__item:hover {
  transform: translateY(-2px);
}

.faq__question {
  position: relative;
}

.faq__question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: var(--border-color);
  transition: background 0.3s ease;
}

.faq__item.active .faq__question::after {
  background: var(--primary-color);
}

/* ===== ENHANCED THEME TOGGLE ===== */
.theme-toggle {
  position: relative;
}

.theme-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: -1;
}

.theme-toggle:hover::after {
  width: 100%;
  height: 100%;
}

/* ===== ENHANCED LOADING STATES ===== */
.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn:disabled::before {
  display: none;
}

/* ===== ENHANCED RESPONSIVE IMAGES ===== */
.hero__img,
.story__img,
.choose__img,
.products__img {
  transition: transform 0.3s ease;
}

.hero__img:hover,
.story__img:hover,
.choose__img:hover,
.products__img:hover {
  transform: scale(1.05);
}

/* ===== ENHANCED SECTION TRANSITIONS ===== */
.section {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section.show {
  transform: translateY(0);
}

/* ===== ENHANCED GRADIENT OVERLAYS ===== */
.hero,
.cta,
.page-header {
  position: relative;
}

.hero::before,
.cta::before,
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  pointer-events: none;
}

/* ===== PRINT STYLES ===== */
@media print {
  .header,
  .nav__toggle,
  .nav__close,
  .theme-toggle,
  .back-to-top,
  .btn,
  .cta {
    display: none !important;
  }

  .main {
    padding-top: 0 !important;
  }

  .section {
    page-break-inside: avoid;
  }

  .hero__title,
  .section__title {
    color: #000 !important;
  }
}
