/* ===== CSS VARIABLES ===== */
/* Updated: Logo sizes changed - v2.1 */
:root {
  --primary-color: #C4963C;
  --secondary-color: #000000;
  --accent-color: #333333;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --white: #ffffff;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --error-color: #dc3545;

  --header-font: 'Poppins', sans-serif;
  --body-font: 'Inter', sans-serif;

  --container-max-width: 1200px;
  --section-padding: 5rem 0;
  --card-border-radius: 12px;
  --button-border-radius: 8px;
  --transition: all 0.3s ease;

  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --box-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.08);

  --z-header: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--header-font);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

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

ul {
  list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section--dark {
  background-color: var(--secondary-color);
  color: var(--white);
}

.section--primary {
  background: linear-gradient(135deg, var(--primary-color), #d4a651);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: block;
}

.section__title {
  max-width: 600px;
  margin: 0 auto 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--header-font);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: #b8863a;
  border-color: #b8863a;
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-hover);
}

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

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

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

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

.btn--small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: var(--z-header);
  transition: var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--secondary-color);
}

.nav__logo-img {
  width: 197px;
  height: auto;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

/* Navigation Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  background-color: var(--white);
  min-width: 600px;
  box-shadow: var(--box-shadow-hover);
  border-radius: var(--card-border-radius);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: var(--z-modal);
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.nav__dropdown-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.nav__dropdown-section a {
  display: block;
  padding: 0.5rem 0;
  color: var(--medium-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav__dropdown-section a:hover {
  color: var(--primary-color);
  transform: translateX(0.25rem);
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-highlight {
  color: var(--primary-color);
  position: relative;
}

.hero__description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--medium-gray);
}

.trust__item i {
  color: var(--primary-color);
}

.hero__visual {
  position: relative;
  height: 600px;
}

.hero__video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(196, 150, 60, 0.15), rgba(0, 0, 0, 0.05));
  backdrop-filter: blur(1px);
}

.hero__video-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(196, 150, 60, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(196, 150, 60, 0.08) 0%, transparent 50%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(196, 150, 60, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(196, 150, 60, 0.1);
  transition: all 0.3s ease;
}

.floating-icon i {
  font-size: 2rem;
  color: var(--primary-color);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.floating-icon:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(196, 150, 60, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
}

.floating-icon--1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.floating-icon--2 {
  top: 25%;
  left: 5%;
  animation-delay: 1.5s;
}

.floating-icon--3 {
  top: 55%;
  right: 5%;
  animation-delay: 0.8s;
}

.floating-icon--4 {
  bottom: 30%;
  left: 20%;
  animation-delay: 2.2s;
}

.floating-icon--5 {
  top: 35%;
  left: 35%;
  animation-delay: 3s;
}

.floating-icon--6 {
  bottom: 10%;
  right: 30%;
  animation-delay: 1.2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    filter: brightness(1);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
    filter: brightness(1.05);
  }
  50% {
    transform: translateY(-25px) rotate(-1deg);
    filter: brightness(1.1);
  }
  75% {
    transform: translateY(-10px) rotate(1deg);
    filter: brightness(1.05);
  }
}

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

.service-card {
  position: relative;
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--primary-color);
}

.service-card--featured {
  background: linear-gradient(135deg, var(--primary-color), #d4a651);
  color: var(--white);
}

.service-card--featured .service-card__description,
.service-card--featured .service-card__features li {
  color: rgba(255, 255, 255, 0.9);
}

.service-card__badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background-color: var(--success-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 20px;
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background-color: rgba(196, 150, 60, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card--featured .service-card__icon {
  background-color: rgba(255, 255, 255, 0.2);
}

.service-card__icon i {
  font-size: 1.75rem;
  color: var(--primary-color);
}

.service-card--featured .service-card__icon i {
  color: var(--white);
}

.service-card__title {
  margin-bottom: 1rem;
}

.service-card__description {
  margin-bottom: 1.5rem;
}

.service-card__features {
  margin-bottom: 2rem;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.service-card__features i {
  color: var(--success-color);
  font-size: 0.8rem;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
  transition: var(--transition);
}

.service-card--featured .service-card__link {
  color: var(--white);
}

.service-card__link:hover {
  transform: translateX(0.25rem);
}

/* ===== STATISTICS ===== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-item__number {
  font-family: var(--header-font);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: inline-block;
}

.stat-item__suffix {
  font-family: var(--header-font);
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.stat-item__label {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* ===== FEATURES ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-item__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #d4a651);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.1);
}

.feature-item__icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.feature-item__title {
  margin-bottom: 1rem;
}

/* ===== CTA SECTION ===== */
.cta__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

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

.cta__description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.quick-contact-form {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form__row input,
.form__row select {
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--button-border-radius);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form__row input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form__row input:focus,
.form__row select:focus {
  outline: none;
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.2);
}

.form__row select option {
  background-color: var(--secondary-color);
  color: var(--white);
}

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

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer__logo img {
  width: 173px;
  height: auto;
  filter: brightness(0) invert(1);
}

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

.footer__social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

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

.footer__links a:hover {
  color: var(--primary-color);
  transform: translateX(0.25rem);
}

.footer__contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer__contact .contact-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.footer__contact .contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__contact .contact-item a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__certifications {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cert-item i {
  color: var(--primary-color);
}

.footer__legal {
  text-align: center;
}

.footer__legal p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__legal-links a:hover {
  color: var(--primary-color);
}

/* ===== LEGAL & SITEMAP PAGES ===== */
.hero--page {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, #d4a651 100%);
  color: var(--white);
}

.hero--page .hero__title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero--page .hero__description {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
}

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

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

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

.legal-content__updated {
  color: var(--medium-gray);
  font-style: italic;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--light-gray);
}

.legal-content__section {
  margin-bottom: 3rem;
}

.legal-content__section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.legal-content__section h3 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content__section p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content__section ul,
.legal-content__section ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content__section li {
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.contact-info-block {
  background-color: var(--light-gray);
  padding: 1.5rem;
  border-radius: var(--button-border-radius);
  margin-top: 1rem;
}

.contact-info-block p {
  margin-bottom: 0.5rem;
}

.contact-info-block a {
  color: var(--primary-color);
  font-weight: 500;
}

/* Sitemap Styles */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.sitemap-section {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition);
}

.sitemap-section:hover {
  box-shadow: var(--box-shadow);
}

.sitemap-section__title {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sitemap-section__list {
  list-style: none;
}

.sitemap-section__list > li {
  margin-bottom: 1rem;
  position: relative;
}

.sitemap-section__list a {
  color: var(--secondary-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.sitemap-section__list a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.page-description {
  display: block;
  color: var(--medium-gray);
  font-size: 0.85rem;
  margin-left: 1.5rem;
  margin-top: 0.25rem;
}

.sitemap-subsection {
  margin-top: 1.5rem;
}

.sitemap-sublist {
  list-style: none;
  margin-left: 1.5rem;
  margin-top: 0.5rem;
}

.sitemap-sublist li {
  color: var(--medium-gray);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  border-left: 2px solid var(--light-gray);
  padding-left: 1rem;
}

.sitemap-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block h3 {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-block p,
.contact-block a {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-block a:hover {
  color: var(--primary-color);
}

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

.sitemap-social .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  border-radius: var(--button-border-radius);
  color: var(--secondary-color);
  transition: var(--transition);
}

.sitemap-social .social-link:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.sitemap-footer {
  text-align: center;
  padding-top: 2rem;
  border-top: 2px solid var(--light-gray);
}

.sitemap-footer p {
  color: var(--medium-gray);
  margin-bottom: 0.5rem;
}

.sitemap-footer a {
  color: var(--primary-color);
  font-weight: 500;
}

/* ===== SERVICE GRID SPECIFIC STYLES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Center specific service cards when they appear alone on new line */
.service-grid .service-item:nth-child(4):last-child {
  grid-column: 1 / -1;
  max-width: 400px;
  justify-self: center;
}

/* Responsive adjustments for service grid */
@media (max-width: 1200px) {
  .service-grid .service-item:nth-child(4):last-child {
    grid-column: unset;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: var(--z-modal);
  transform: translateY(100%);
  transition: var(--transition);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner__content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-banner__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-modal);
}

.chat-widget__toggle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--box-shadow-hover);
  transition: var(--transition);
}

.chat-widget__toggle:hover {
  transform: scale(1.1);
}

.chat-widget__panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background-color: var(--white);
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.chat-widget__panel.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-widget__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
}

.chat-widget__close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-widget__content {
  padding: 1.5rem;
}

.chat-widget__quick-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.quick-action {
  padding: 0.75rem;
  background-color: var(--light-gray);
  border: none;
  border-radius: var(--button-border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.quick-action:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: var(--z-tooltip);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #b8863a;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
  :root {
    --section-padding: 4rem 0;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

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

  .hero__visual {
    height: 400px;
  }

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

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

  .nav__dropdown-menu {
    min-width: 400px;
  }

  .nav__dropdown-content {
    grid-template-columns: 1fr;
  }
}

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

  .container {
    padding: 0 1rem;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
  }

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

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

  .nav__toggle {
    display: block;
  }

  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    min-width: auto;
    background-color: var(--light-gray);
    margin-top: 1rem;
  }

  .nav__dropdown-content {
    padding: 1rem;
  }

  .hero__title {
    font-size: 2rem;
  }

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

  .hero__trust {
    justify-content: center;
  }

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

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

  .cookie-banner__content {
    flex-direction: column;
    text-align: center;
  }

  .chat-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .chat-widget__panel {
    width: 280px;
  }
}

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

  .hero__visual {
    height: 300px;
  }

  .floating-icon {
    width: 50px;
    height: 50px;
  }

  .floating-icon i {
    font-size: 1.25rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

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

  .stat-item__number {
    font-size: 2.5rem;
  }

  .stat-item__suffix {
    font-size: 1.5rem;
  }
}

/* ===== LOADING 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);
  }
}

/* Animation classes for JavaScript */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

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

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

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .floating-icon {
    animation: none;
  }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
    --box-shadow-light: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}