/* CSS Variables */
:root {
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(215, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(195, 85%, 45%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(82, 75%, 55%);
  --muted-foreground: hsl(215, 15%, 45%);
  --accent: hsl(188, 75%, 50%);
  --border: hsl(210, 25%, 88%);
  --snow: hsl(210, 40%, 98%);
  --ice-blue: hsl(200, 80%, 92%);
  --mountain-blue: hsl(210, 50%, 35%);
  --ski-teal: hsl(188, 75%, 50%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

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

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--foreground);
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

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

nav a,
nav button {
  background: none;
  border: none;
  color: var(--foreground);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
  font-size: 1rem;
  font-family: inherit;
}

nav a:hover,
nav button:hover {
  color: var(--primary);
}

.btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--ski-teal));
  color: white;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(70, 184, 218, 0.3);
}

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

.btn-outline:hover {
  background-color: rgba(70, 184, 218, 0.1);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  text-align: left;
  padding: 0.5rem 0;
  background: none;
  border: none;
  color: var(--foreground);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
  font-size: 1rem;
  font-family: inherit;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ice-blue), var(--background), var(--snow));
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
}

.hero-text {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background-color: rgba(70, 184, 218, 0.1);
  border-radius: 9999px;
  margin-bottom: 2rem;
  border: 1px solid rgba(70, 184, 218, 0.2);
}

.badge img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 50%;
}

.badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--ski-teal), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: left;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px -12px rgba(33, 70, 94, 0.25);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--card);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 30px -6px rgba(33, 70, 94, 0.15);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--ski-teal));
  border-radius: 0.75rem;
  color: white;
  font-size: 1.5rem;
}

.hero-badge-text .name {
  font-weight: bold;
  font-size: 1.125rem;
}

.hero-badge-text .title {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

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

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(70, 184, 218, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(70, 184, 218, 0.2);
}

.section-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* About Section */
#about {
  background-color: var(--card);
}

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

.about-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--background), rgba(200, 235, 245, 0.5));
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 8px 30px -6px rgba(33, 70, 94, 0.15);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--ski-teal));
  border-radius: 0.75rem;
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Services Section */
#services {
  background: linear-gradient(to bottom, var(--background), rgba(200, 235, 245, 0.3));
}

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

.service-card {
  padding: 1.5rem;
  background: var(--card);
  border-radius: 1rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 50px -12px rgba(33, 70, 94, 0.25);
  border-color: rgba(70, 184, 218, 0.5);
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

.service-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* Why Choose Section */
#why-choose {
  background: linear-gradient(to bottom, rgba(200, 235, 245, 0.3), var(--background));
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: background-color 0.3s;
}

.benefit-item:hover {
  background-color: var(--card);
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--ski-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.benefit-item p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.cta-box {
  padding: 2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(70, 184, 218, 0.1), rgba(73, 215, 199, 0.1), rgba(161, 204, 84, 0.1));
  border: 2px solid rgba(70, 184, 218, 0.2);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tag {
  padding: 0.5rem 1rem;
  background-color: var(--background);
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid var(--border);
}

/* Contact Section */
#contact {
  background-color: var(--card);
}

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

.contact-card {
  padding: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 8px 30px -6px rgba(33, 70, 94, 0.15);
  border-color: var(--primary);
}

.contact-icon {
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--ski-teal));
  border-radius: 0.75rem;
  color: white;
  font-size: 1.5rem;
  display: inline-flex;
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.contact-cta {
  padding: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--ski-teal), var(--accent));
  color: white;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

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

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-white-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.seo-keywords {
  text-align: center;
  font-size: 0.875rem;
  color: #ffffff;
  border-radius: 0.75rem;
}

/* Footer */
footer {
  background-color: var(--mountain-blue);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 120px;
  width: 120px;
  object-fit: contain;
}

.footer-text {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links button {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: inherit;
}

.footer-links a:hover,
.footer-links button:hover {
  color: white;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.7;
}

.footer-bottom p:last-child {
  margin-top: 0.5rem;
  font-size: 0.75rem;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text {
    text-align: left;
  }

  .hero-buttons {
    flex-direction: row;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }

  .stat {
    text-align: left;
  }

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

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

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

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

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

  .contact-buttons {
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 4.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .hero-badge {
    position: static;
    margin-top: 1rem;
  }
}
