/* CSS Variables */
:root {
  --background: #ffffff;
  --foreground: #33475b;
  --card: #f0f4f8;
  --card-foreground: #33475b;
  --primary: #0077cc;
  --primary-foreground: #ffffff;
  --secondary: #00aaff;
  --secondary-foreground: #ffffff;
  --muted: #f0f4f8;
  --muted-foreground: #33475b;
  --accent: #00aaff;
  --accent-foreground: #ffffff;
  --border: #e2e8f0;
  --input: #ffffff;
  --ring: rgba(0, 119, 204, 0.3);
  --radius: 0.5rem;
}

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

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Animations */
@keyframes wave {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(1deg);
  }
  66% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

@keyframes ripple {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.wave-animation {
  animation: wave 3s ease-in-out infinite;
}

.float-animation {
  animation: float 4s ease-in-out infinite;
}

.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: ripple 2s infinite;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

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

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

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

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

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

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.top-bar {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.contact-info {
  display: flex;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item i {
  width: 1rem;
  height: 1rem;
}

.hours {
  display: none;
}

@media (min-width: 768px) {
  .hours {
    display: block;
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--foreground);
}

.logo-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text h1 {
  font-size: 1.25rem;
  margin: 0;
}

.logo-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

.desktop-nav {
  display: none;
  gap: 1.5rem;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.2s;
}

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

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

.cta-section {
  display: none;
}

@media (min-width: 768px) {
  .cta-section {
    display: block;
  }
}

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

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

.mobile-nav {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--foreground);
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.2s;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 119, 204, 0.05) 0%, var(--background) 50%, rgba(0, 170, 255, 0.05) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.float-element {
  position: absolute;
  border-radius: 50%;
}

.float-1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(0, 119, 204, 0.1);
  animation: float 4s ease-in-out infinite;
}

.float-2 {
  top: 10rem;
  right: 5rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 170, 255, 0.1);
  animation: wave 3s ease-in-out infinite 1s;
}

.float-3 {
  bottom: 10rem;
  left: 5rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(0, 170, 255, 0.1);
  animation: float 4s ease-in-out infinite 2s;
}

.float-4 {
  bottom: 5rem;
  right: 2.5rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 119, 204, 0.1);
  animation: wave 3s ease-in-out infinite 0.5s;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(0, 119, 204, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  width: fit-content;
}

.hero-badge i {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-text h1 {
    font-size: 3.75rem;
  }
}

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

.hero-text p {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
}

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

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.trust-indicators {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars i {
  width: 1rem;
  height: 1rem;
  color: #fbbf24;
  fill: currentColor;
}

.hero-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-container img {
  width: 100%;
  height: 37.5rem;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 119, 204, 0.2), transparent);
}

.floating-card {
  position: absolute;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-1 {
  top: -1.5rem;
  left: -1.5rem;
}

.card-2 {
  bottom: -1.5rem;
  right: -1.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 119, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon.accent {
  background-color: rgba(0, 170, 255, 0.1);
}

.card-icon i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
}

.card-icon.accent i {
  color: var(--accent);
}

.card-title {
  font-weight: 600;
  color: var(--card-foreground);
}

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

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

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

.feature-card {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 119, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon i {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--muted-foreground);
}

/* Services Section */
.services {
  padding: 5rem 0;
}

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

.service-card {
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.feature-tag {
  background-color: rgba(0, 119, 204, 0.1);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: var(--muted);
}

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

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

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

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

.contact-details .contact-item i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.contact-details .contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-details .contact-item p {
  margin: 0;
  color: var(--muted-foreground);
}

.contact-form {
  background-color: var(--background);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--ring);
}

/* Footer */
.footer {
  background-color: var(--foreground);
  color: var(--background);
  padding: 3rem 0 1rem;
}

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

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

.footer-logo .logo-icon {
  background-color: var(--primary);
}

.footer-logo h3 {
  margin: 0;
}

.footer-logo p {
  margin: 0;
  opacity: 0.8;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--background);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-section ul li a:hover {
  opacity: 1;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-contact i {
  width: 1rem;
  height: 1rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: 50%;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: transform 0.2s;
}

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

.social-link i {
  width: 1.25rem;
  height: 1.25rem;
}

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

/* Responsive Design */
@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

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

  .service-card {
    min-width: auto;
  }
}
