:root {
  font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: dark;
  color: #e6f1ff;
  background-color: #051628;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  font-weight: 500;
  color: #64ffda;
  text-decoration: inherit;
}

a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Wave Animation Background */
body::before {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230a2540" fill-opacity="0.5" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  animation: waveMove 10s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23112d4e" fill-opacity="0.8" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  animation: waveMove2 15s ease-in-out infinite alternate-reverse;
}

@keyframes waveMove {
  0% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(1.1) translateY(-10px);
  }
}

@keyframes waveMove2 {
  0% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(1.2) translateY(-20px);
  }
}

/* Header & Nav */
.site-header {
  width: 100%;
  margin-bottom: 3rem;
  padding: 1.5rem 0;
  /* Vertical padding */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Faint line */
  background-color: rgba(5, 22, 40, 0.8);
  /* Slight background for readability */
  backdrop-filter: blur(5px);
}

h1 {
  font-family: sans-serif;
  font-size: 1.8rem;
  /* Smaller size */
  font-weight: 800;
  /* Bold */
  letter-spacing: 4px;
  /* Wide spacing */
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #64ffda;
  text-shadow: 0 0 10px rgba(100, 255, 218, 0.2);
  text-align: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.main-nav a {
  color: #8892b0;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #64ffda;
}

/* ... existing styles ... */

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #25D366;
  /* WhatsApp Green */
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 50px;
  /* Pill shape */
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Contact Footer */
.contact-footer {
  margin-top: 5rem;
  /* Large gap */
  margin-bottom: 3rem;
  /* Bottom spacing */
  width: 100%;
  text-align: center;
}

h2 {
  font-size: 2em;
  margin: 0 0 0.5em 0;
  color: #64ffda;
}

h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  color: #e6f1ff;
}

h4 {
  margin: 0 0 1em 0;
  color: #8892b0;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 1px;
}

#app {
  width: 100%;
  margin: 0;
  padding: 0;
  /* Removed padding to let header touch top */
  text-align: center;
  box-sizing: border-box;
}

.read-the-docs {
  color: #8892b0;
  font-size: 1.2em;
  margin-bottom: 3rem;
}

/* Main Layout */
.main-layout {
  width: 100%;
  position: relative;
  /* Removed grid to allow independent positioning */
}

/* Sidebar Cards - Fixed on Left */
.sidebar-cards {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
  z-index: 100;
}

.info-card {
  background-color: rgba(17, 45, 78, 0.7);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: #e6f1ff;
}

.payment-item:last-child {
  margin-bottom: 0;
}

.delivery-text {
  font-size: 1em;
  color: #e6f1ff;
  margin-bottom: 1rem;
}

.delivery-subtext {
  font-size: 0.85em;
  color: #8892b0;
  font-style: italic;
}

/* Content Area - Perfectly Centered */
.content-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  /* Center horizontally in viewport */
  padding: 0 2rem 2rem 2rem;
  /* Added padding for content spacing */
}

/* Services Section */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  /* Constrain width */
  margin: 0 auto;
  /* Center in the column */
}

.card {
  padding: 2.5em;
  background-color: rgba(17, 45, 78, 0.7);
  border: 1px solid rgba(100, 255, 218, 0.1);
  border-radius: 16px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -15px rgba(2, 12, 27, 0.7);
  border-color: rgba(100, 255, 218, 0.3);
}

.card-content {
  flex: 1;
}

.card-actions {
  flex-shrink: 0;
}

/* Icons */
.icon {
  width: 24px;
  /* Restored size */
  height: 24px;
  fill: #64ffda;
  vertical-align: middle;
}

.list-icon {
  height: 20px;
  fill: #64ffda;
  margin-right: 8px;
  vertical-align: text-bottom;
}

/* Information Section */
.info-section {
  margin-top: 4rem;
  padding: 2rem;
  background-color: rgba(10, 37, 64, 0.5);
  border-radius: 16px;
  border-top: 1px solid rgba(100, 255, 218, 0.1);
  width: 100%;
  /* Full width of content area */
  max-width: 900px;
  box-sizing: border-box;
}

button {
  border-radius: 8px;
  border: 1px solid #64ffda;
  padding: 0.8em 1.5em;
  font-size: 1em;
  font-weight: 600;
  font-family: inherit;
  background-color: transparent;
  color: #64ffda;
  cursor: pointer;
  transition: all 0.25s;
}

button:hover {
  background-color: rgba(100, 255, 218, 0.1);
  box-shadow: 0 0 15px rgba(100, 255, 218, 0.2);
}

ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

li {
  margin: 0;
  padding: 0.4em 0.8em;
  background: rgba(100, 255, 218, 0.1);
  color: #64ffda;
  border-radius: 20px;
  font-size: 0.9em;
  display: flex;
  align-items: center;
}

/* Responsive adjustments */
@media (max-width: 1300px) {
  .sidebar-cards {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .info-card {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 900px) {
  /* The original .main-layout grid was removed, so this rule is less relevant for grid-template-columns */
  /* .main-layout {
    grid-template-columns: 1fr;
  } */

  /* This rule is now handled by the 1300px media query for .sidebar-cards */
  /* .sidebar-cards {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  } */

  /* This rule is now handled by the 1300px media query for .info-card */
  /* .info-card {
    flex: 1;
    min-width: 250px;
  } */
}

@media (max-width: 768px) {
  .card {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-actions {
    width: 100%;
    margin-top: 1rem;
  }

  button {
    width: 100%;
  }

  .sidebar-cards {
    flex-direction: column;
  }
}