/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 2.7;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

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

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

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scroll {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideDown 0.8s ease-out;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.nav-link:nth-child(1) {
  animation-delay: 0.3s;
}
.nav-link:nth-child(2) {
  animation-delay: 0.4s;
}
.nav-link:nth-child(3) {
  animation-delay: 0.5s;
}

.nav-link:hover {
  color: #e2b051;
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #555;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(2) {
  margin: 3px 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  max-height: 200px;
}

.mobile-menu-content {
  padding: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #e2b051;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-backgrounds {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.1);
  transition: all 1.5s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

@media (min-width: 640px) {
    .hero-content {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding: 0 5rem;
    }
}

.hero-text {
    color: white;
    text-align: left;
    animation: heroFadeInUp 0.8s ease-out;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.experience-badge {
    background-color: #eaeaed;
    border-radius: 20px;
    padding: 0.1rem 0.50rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #636363;
    width: fit-content;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (min-width: 640px) {
    .experience-badge {
        border-radius: 30px;
        padding: 1rem 1.5rem;
        margin-bottom: 1.5rem;
        gap: 1rem;
        font-size: 18px;
        letter-spacing: 0.81px;
    }
}

.avatars {
    display: flex;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatars {
        margin-left: -0.5rem;
    }
}
.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.25rem;
}
@media (min-width: 640px) {
    .avatar {
        width: 35px;
        height: 35px;
        margin-left: -0.5rem;
    }
}
.avatar-1 { background-color: #d1d5db; }
.avatar-2 { background-color: #9ca3af; }
.avatar-3 { background-color: #6b7280; }
.avatar-4 { background-color: #4b5563; }

.hero-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
@media (min-width: 640px) {
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: 1.5px;
        margin-bottom: 5.5rem;
    }
}
@media (min-width: 768px) {
    .hero-title {
        font-size: 48px;
        letter-spacing: 2px;
    }
}
@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 2.6px;
    }
}
.hero-subtitle {
    font-size: 16px;
    color: #d1d5db;
    line-height: 1.5;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    max-width: 90%;
}
@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: 0.8px;
        margin-bottom: 2rem;
        max-width: 600px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 24px;
        line-height: 1.42;
        letter-spacing: 1.1px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 28px;
        line-height: 1.43;
        letter-spacing: 1.4px;
        max-width: 724px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

.btn {
    padding: 0.75rem 1rem;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.3px;
    border-radius: 10px;
    height: 46px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@media (min-width: 640px) {
    .btn {
        padding: 1rem 2rem;
        font-size: 16px;
        letter-spacing: 0.7px;
        height: 50px;
        width: auto;
        min-width: 240px;
    }
}

@media (min-width: 1024px) {
    .btn {
        font-size: 18px;
        letter-spacing: 0.9px;
        height: 58px;
        min-width: 260px;
    }
}

@media (min-width: 1280px) {
    .btn {
        min-width: 280px;
    }
}

.btn-primary {
    background-color: #f3bf5f;
    color: white;
}

.btn-primary:hover {
    background-color: #d19f3f;
    transform: translateY(-2px);
}

.btn-group {
    display: flex;
    width: 100%;
}

@media (min-width: 640px) {
    .btn-group {
        width: auto;
    }
}

.btn-secondary {
    border: 2px solid;
    color: #1cb40e;
    
    background: transparent;
    flex: 1;
    border-radius: 10px ;
    min-width: 200px;
}

@media (min-width: 1024px) {
    .btn-secondary {
        min-width: 220px;
    }
}

@media (min-width: 1280px) {
    .btn-secondary {
        min-width: 280px;
    }
}

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

.btn-arrow {
    background-color: #4f4f4f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    border-radius: 0 10px 10px 0;
    box-shadow: var(--shadow-lg);
    color: var(--secondary-color);
    font-size: 20px;
}

@media (min-width: 640px) {
    .btn-arrow {
        padding: 0 1rem;
    }
}


/* Section Styles */
.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 9rem 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: sectionHeaderFadeIn 0.6s ease-out forwards;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@keyframes sectionHeaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-size: 28px;
    font-weight: bold;
    color: #171712;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-header h2 {
        font-size: 36px;
        letter-spacing: -0.8px;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 42px;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 48px;
        letter-spacing: -1px;
    }
}

.highlight {
    color: #feca28;
}

.section-header p {
    font-size: 16px;
    color: #727272;
    letter-spacing: 0.5px;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-header p {
        font-size: 20px;
        letter-spacing: 0.8px;
        max-width: 48rem;
    }
}

@media (min-width: 768px) {
    .section-header p {
        font-size: 24px;
        letter-spacing: 1.1px;
        line-height: 1.42;
    }
}

@media (min-width: 1024px) {
    .section-header p {
        font-size: 28px;
        letter-spacing: 1.4px;
        line-height: 1.43;
        max-width: 64rem;
    }
}



/* Approach Section */
.approach-section {
    background-color: var(--bg-white);
}

.approach-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.approach-card {
    background-color: #ffffff;
    border: 1px solid #e5e5db;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: #2c2c2c;
    transition: #777777;
    opacity: 0;
    transform: translateY(30px);
    animation: cardFadeInUp 0.6s ease-out forwards;
}

@media (min-width: 640px) {
    .approach-card {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .approach-card {
        padding: 2rem;
    }
}

.approach-card:nth-child(2) {
    animation-delay: 0.2s;
}

.approach-card:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes cardFadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    position: relative;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .approach-icon {
        margin-bottom: 1.5rem;
    }
}

.icon-bg-1 {
    width: 30px;
    height: 30px;
    background: linear-gradient(to bottom, #0c50ff, #1581bd);
    border-radius: 5px;
    transform: rotate(15deg);
    position: absolute;
}
/*
@media (min-width: 640px) {
    .icon-bg-1 {
        width: 37px;
        height: 37px;
    }*/


.icon-bg-2 {
    width: 24px;
    height: 24px;
    background: linear-gradient(to bottom, #0c99ff, #0ce2ff);
    border-radius: 5px;
    position: relative;
    margin-left: 3px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

@media (min-width: 640px) {
    .icon-bg-2 {
        width: 30px;
        height: 30px;
    }
}

.approach-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #222c38;
    letter-spacing: 0.8px;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

@media (min-width: 640px) {
    .approach-card h3 {
        font-size: 24px;
        letter-spacing: 1.2px;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .approach-card h3 {
        font-size: 32px;
        letter-spacing: 1.6px;
        margin-bottom: 1.5rem;
    }
}

.approach-card:hover h3 {
    color: #FECA28;
}


.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.approach-card p {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    line-height: 1.57;
}

@media (min-width: 640px) {
    .approach-card p {
        font-size: 16px;
        letter-spacing: 0.6px;
        line-height: 1.75;
    }
}

@media (min-width: 1024px) {
    .approach-card p {
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 2;
    }
}




/* services section and anether body section */
/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 8vw, 72px);
}

.section-header h1, .section-header h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: clamp(16px, 3vw, 24px);
    letter-spacing: -0.02em;
}

.section-header .highlight {
    color: #feca28;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 28px);
    color: #727272;
    letter-spacing: 0.05em;
    line-height: 1.4;
    max-width: min(90%, 1155px);
    margin: 0 auto;
}

/* Sections */
section {
    padding: clamp(50px, 8vw, 80px) 0;
    position: relative;
}
/* Services Section */
.services-section {
    padding-top: clamp(80px, 12vw, 120px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: clamp(30px, 6vw, 80px);
    justify-items: center;
}

.service-card {
    position: relative;
    max-width: min(100%, 400px);
    height: clamp(380px, 50vw, 565px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(30px);
    opacity: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
}

.service-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(20px, 4vw, 30px);
    background: white;
    border-radius: 10px;
    margin: clamp(12px, 2vw, 20px);
    transform: translateY(100px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .card-content {
    transform: translateY(0);
}

.card-content h3 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: bold;
    color: rgba(22, 22, 22, 0.6);
    margin-bottom: clamp(12px, 2vw, 16px);
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.card-content p {
    font-size: clamp(15px, 2vw, 18px);
    color: #8f9497;
    line-height: 1.5;
    letter-spacing: 0.025em;
}


/* Services Offer Section */
.services-offer-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(25px, 4vw, 38px);
    margin-bottom: clamp(30px, 5vw, 40px);
}
.services-offer-grid .single-card {
    grid-column: auto;
}
.offer-card {
    height: clamp(350px, 45vw, 400px);
    border-radius: clamp(16px, 3vw, 24px);
    overflow: hidden;
    position: relative;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.offer-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.offer-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.1);
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.offer-overlay h3 {
    color: #feca28;
    font-size: clamp(20px, 3.5vw, 30px);
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specializations Section */
.specializations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(40px, 8vw, 80px);
    align-items: center;
}

.specialization-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.specialization-card.slide-right {
    transform: translateY(40px);
}

.specialization-card.animate {
    transform: translateY(0);
    opacity: 1;
}

.spec-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: clamp(300px, 50vw, 500px);
    border-radius: clamp(12px, 2vw, 20px);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.specialization-card:hover .spec-image img {
    transform: scale(1.1);
}

.spec-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(254, 202, 40, 0.2) 0%,
        rgba(254, 202, 40, 0.1) 100%
    );
}

.spec-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    align-content: space-around;
    flex-direction: row;
}

.spec-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: bold;
    color: #222c38;
    letter-spacing: 0.05em;
    line-height: 1.2;
    margin-bottom: clamp(16px, 3vw, 24px);
}

.spec-content p {
    font-size: clamp(16px, 2vw, 18px);
    color: #8f9497;
    letter-spacing: 0.025em;
    line-height: 1.5;
    margin-bottom: clamp(20px, 3vw, 24px);
}

.learn-more-btn {
    background: #feca28;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.learn-more-btn:hover {
    background: #e5b41f;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(254, 202, 40, 0.3);
}

.learn-more-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(254, 202, 40, 0.2);
}













/* Footer */
.footer {
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://cdn.pixabay.com/photo/2020/05/04/13/30/outdoors-5129182_960_720.jpg");
  background-size: cover;
  background-position: center;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.75);
}

.footer-content {
  position: relative;
  z-index: 10;
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-company {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .footer-company {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.social-link {
  width: 36px;
  height: 36px;
  background: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #555;
}

.social-link:hover {
  background: #e2b051;
  transform: scale(1.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-section-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

.footer-links {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links p {
  margin-bottom: 1rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links p:hover {
  color: white;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
}

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

.contact-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }
}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease-out;
}

.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease-out;
}

.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}
