/* ===== CSS VARIABLES ===== */
:root {
  /* Colors - New Design Tokens */
  --bg: #0F1115;
  --panel: #171A20;
  --panel-2: #1D2129;
  --text: #E8EAED;
  --muted: #CFD6DF;
  --muted-2: #9AA6B2;
  --border: #2A313B;
  --accent: #D6B36A;
  --accent-hover: #E2C98F;
  
  /* Legacy support */
  --bg-color: var(--bg);
  --card-color: var(--panel);
  --text-color: var(--text);
  --primary-color: var(--accent);
  --primary-hover: var(--accent-hover);
  --success-color: #4CAF50;
  --error-color: #F44336;
  --warning-color: #FF9800;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --h1-font-size: 3.125rem; /* 50px */
  --h2-font-size: 2.5rem;
  --h3-font-size: 1.75rem;
  --h4-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Spacing */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-4: 4rem;
  
  /* Layout */
  --container-max-width: 1200px;
  --header-height: 4rem; /* 64px */
  --border-radius: 1rem; /* 16px */
  --border-radius-lg: 1.125rem; /* 18px */
  --border-radius-xl: 1.375rem; /* 22px */
  --box-shadow: 0 22px 60px rgba(0, 0, 0, 0.45);
  --box-shadow-hover: 0 24px 70px rgba(0, 0, 0, 0.5);
  --section-padding: 6rem; /* 96px for desktop */
  --container-padding: 1.25rem; /* 20px */
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media screen and (max-width: 1280px) {
  :root {
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
  }
}

@media screen and (max-width: 1024px) {
  :root {
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --h1-font-size: 2rem;
    --h2-font-size: 1.75rem;
    --h3-font-size: 1.5rem;
    --header-height: 4rem;
  }
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--normal-font-size);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

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

h1 { 
  font-size: var(--h1-font-size); 
  font-weight: var(--font-extrabold);
}
h2 { 
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
}
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }

p {
  margin-bottom: var(--mb-1);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

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

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

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

.section__subtitle {
  text-align: center;
  margin-bottom: var(--mb-4);
  color: var(--muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: #000000;
  border-color: var(--accent);
  box-shadow: var(--box-shadow);
}

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

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

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

.btn--full {
  width: 100%;
}

.btn__spinner {
  margin-left: 0.5rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== NEW COMPONENT STYLES ===== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(15,17,21,.65), rgba(15,17,21,.15));
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  padding: 28px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  box-shadow: var(--box-shadow);
}

.hero__title {
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: 50px;
  font-weight: var(--font-extrabold);
  line-height: 1.1;
}

.hero__title-line:first-child {
  color: #FFFFFF;
}

.hero__title-line:last-child {
  color: var(--accent);
}

.hero__description {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Section */
.services__title {
  position: relative;
  color: var(--accent);
  margin-bottom: 1rem;
}

.services__title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 3px;
  background: var(--accent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 3rem;
}

.service__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 24px;
  box-shadow: var(--box-shadow);
  transition: var(--transition-normal);
}

.service__card:hover {
  transform: translateY(-4px);
  border-color: rgba(214,179,106,.35);
  box-shadow: var(--box-shadow-hover);
}

.service__image {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.service__img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.service__title {
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: var(--font-semibold);
}

.service__description {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service__link {
  color: var(--accent);
  font-weight: var(--font-medium);
  text-decoration: none;
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--transition-normal);
  display: inline-block;
}

.service__link:hover {
  background: var(--accent);
  color: #000000;
}

/* About Section */
.about {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.85));
  z-index: 1;
}

.about__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 32px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.about__title {
  margin-bottom: 2rem;
}

.about__title-text {
  color: #FFFFFF;
}

.about__title-brand {
  color: var(--accent);
}

.about__text {
  color: #DDE3EA;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-align: left;
}

.about__button {
  margin-top: 1.5rem;
}

/* Contact Section */
.contact__form-container {
  max-width: 640px;
  margin: 0 auto;
}

.contact__form {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--box-shadow);
}

.form__group {
  margin-bottom: 1rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: var(--font-medium);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 10px 12px;
  background: #14171D;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-family);
  transition: var(--transition-normal);
  font-size: 0.9rem;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,179,106,.2);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact__submit {
  display: block;
  margin: 0 auto;
  width: auto;
  min-width: 200px;
}

/* Footer */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

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

.footer__logo {
  color: var(--text);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

.footer__description {
  color: var(--muted);
  line-height: 1.6;
}

.footer__title {
  color: var(--text);
  font-weight: var(--font-semibold);
  margin-bottom: 1rem;
}

.footer__list {
  list-style: none;
}

.footer__list li {
  margin-bottom: 0.5rem;
}

.footer__link {
  color: var(--muted);
  transition: var(--transition-normal);
}

.footer__link:hover {
  color: var(--accent);
}

.footer__text {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer__text a {
  color: var(--accent);
}

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

.footer__social-link {
  color: var(--muted);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.footer__social-link:hover {
  color: var(--accent);
}

.footer__bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__copyright {
  color: var(--muted-2);
  font-size: var(--small-font-size);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  :root {
    --section-padding: 4.5rem;
  }
}

@media screen and (max-width: 640px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__title-line {
    font-size: 36px;
  }
  
  :root {
    --section-padding: 3.5rem;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 17, 21, 0.72);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition-normal);
  height: var(--header-height);
}

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

.nav__logo {
  font-size: var(--h4-font-size);
  font-weight: var(--font-extrabold);
  color: var(--text);
}

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

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

.nav__link:hover,
.nav__link.active-link {
  color: #FFFFFF;
}

.nav__link.active-link::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.nav__link--login {
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
}

.nav__link--login:hover {
  background: var(--primary-color);
  color: var(--bg-color);
}

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

.nav__dropdown-icon {
  font-size: 0.8rem;
  margin-left: 0.25rem;
  transition: var(--transition-normal);
}

.nav__dropdown:hover .nav__dropdown-icon {
  transform: rotate(180deg);
}

.nav__dropdown-content {
  position: absolute;
  top: 100%;
  left: -1rem;
  background: var(--card-color);
  min-width: 220px;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-normal);
  border: 1px solid var(--divider-color);
}

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

.nav__dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-color-light);
  transition: var(--transition-normal);
  font-size: var(--small-font-size);
}

.nav__dropdown-content a:hover {
  background: var(--card-color-alt);
  color: var(--primary-color);
  padding-left: 2rem;
}

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

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--card-color);
    padding: 4rem 2rem;
    transition: var(--transition-normal);
    z-index: 1001;
  }
  
  .nav__menu.show-menu {
    right: 0;
  }
  
  .nav__list {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  
  .nav__dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--card-color-alt);
    margin-top: 0.5rem;
    margin-left: 1rem;
  }
  
  .nav__toggle,
  .nav__close {
    display: block;
  }
  
  .nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
}

.hero__slide.active {
  opacity: 1;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  margin-bottom: var(--mb-2);
  font-weight: var(--font-bold);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__title-line {
  display: block;
  line-height: 1.1;
}

.hero__title-line:nth-child(2) {
  color: var(--primary-color);
}

.hero__description {
  font-size: var(--h4-font-size);
  color: var(--text-color-light);
  margin-bottom: var(--mb-3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero__buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}

.hero__prev,
.hero__next {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: var(--text-color);
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-normal);
  font-size: 1.5rem;
}

.hero__prev:hover,
.hero__next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hero__indicators {
  display: flex;
  gap: 0.5rem;
}

.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-normal);
}

.hero__indicator.active {
  background: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__controls {
    bottom: 1rem;
    gap: 1rem;
  }
  
  .hero__prev,
  .hero__next {
    padding: 0.5rem;
    font-size: 1.25rem;
  }
}


/* ===== ABOUT SECTION ===== */
.about__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: var(--mb-4);
}

.about__content {
  order: 1;
}

.about__text {
  color: var(--text-color-light);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

.about__mission {
  background: var(--card-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: var(--mb-3) 0;
  border-left: 4px solid var(--primary-color);
}

.about__mission-title {
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
}

.about__mission-text {
  color: var(--text-color-light);
  font-style: italic;
  margin-bottom: 0;
}

.about__image {
  order: 2;
}

.about__img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
  transition: var(--transition-normal);
}

.about__img:hover {
  transform: scale(1.02);
  box-shadow: var(--box-shadow-hover);
}

@media screen and (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .about__content {
    order: 2;
  }
  
  .about__image {
    order: 1;
  }
}


.form__message {
  margin-top: var(--mb-1);
  padding: 1rem;
  border-radius: var(--border-radius);
  display: none;
  font-weight: var(--font-medium);
}

.form__message.success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: var(--success-color);
  border: 1px solid var(--success-color);
}

.form__message.error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  color: var(--error-color);
  border: 1px solid var(--error-color);
}

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

.contact__image {
  flex: 1;
}

.contact__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow);
}

.contact__details {
  background: var(--card-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--divider-color);
}

.contact__item {
  margin-bottom: var(--mb-2);
}

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

.contact__item-title {
  color: var(--primary-color);
  margin-bottom: var(--mb-0-5);
  font-weight: var(--font-semibold);
}

.contact__item-text {
  color: var(--text-color-light);
  margin-bottom: 0;
}

.contact__item-text a {
  color: var(--text-color);
  transition: var(--transition-normal);
}

.contact__item-text a:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact__form {
    padding: 2rem;
  }
}

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

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

.footer__logo {
  color: var(--primary-color);
  margin-bottom: var(--mb-1);
  font-size: var(--h3-font-size);
  font-weight: var(--font-bold);
}

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

.footer__title {
  margin-bottom: var(--mb-1-5);
  color: var(--text-color);
  font-weight: var(--font-semibold);
}

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

.footer__link {
  color: var(--text-color-light);
  transition: var(--transition-normal);
}

.footer__link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer__text {
  color: var(--text-color-light);
  margin-bottom: var(--mb-0-5);
}

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

.footer__text a {
  color: var(--text-color);
  transition: var(--transition-normal);
}

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

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

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--card-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-normal);
  border: 1px solid var(--divider-color);
}

.footer__social-link:hover {
  background: var(--primary-color);
  color: var(--bg-color);
  transform: translateY(-3px);
}

.footer__divider {
  height: 1px;
  background: var(--divider-color);
  margin: var(--mb-2) 0;
}

.footer__copyright {
  text-align: center;
  color: var(--text-color-muted);
  font-size: var(--small-font-size);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero__buttons {
    gap: 1rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--small-font-size);
  }
  
  .service__card {
    padding: 1.5rem;
  }
  
  .contact__form {
    padding: 1.5rem;
  }
  
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}