/* styles.css */
:root {
  --primary: #1a73e8;
  --light: #e0f2fd;   /* slightly darker pastel */
  --dark: #2b2b2b;
  --accent-teal: #00a58e;
  --accent-green: #388e3c;
  --footer-bg: #0b1620;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#services .container h2 {
}

body {
  font-family: Arial, sans-serif;
  color: var(--dark);
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
/* Header */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 60px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}
.btn {
  padding: 0.6rem 1.2rem;
  border: none;
  cursor: pointer;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
/* Hero */
.hero {
  background: var(--light);
  padding: 4rem 0;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-text {
  flex: 1 1 400px;
}
.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.highlight {
  color: var(--primary);
}
.hero-text p {
  margin-bottom: 1.5rem;
}
.hero-buttons .btn {
  margin-right: 1rem;
}
.hero-services-card {
  background: #f1f1f1;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 0 1 300px;
}
.hero-services-card ul {
  list-style: none;
  margin-top: 1rem;
}
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.blue { background: var(--primary); }
.teal { background: var(--accent-teal); }
.green { background: var(--accent-green); }
/* Services */
.services-overview {
  background: #fff; /* white pastel */
  padding: 4rem 0;
}
.services-overview .subtext {
  text-align: center;
  margin-bottom: 2rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 2rem;
}
.card {
  background: #f5f5f5; /* darker pastel */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.card h4 { margin-bottom: 0.5rem; }
.card p  { margin-bottom: 1rem; }
.card ul { list-style: disc inside; margin-bottom: 1rem; }
/* Domain Search */
.domain-search {
  background: var(--light);
  padding: 3rem 0;
  text-align: center;
  border-radius: 8px;
}
.search-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.search-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}
.search-form input {
  padding: 0.6rem;
  width: 250px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.search-form button {
  padding: 0.6rem 1rem;
}
.small-text { font-size: 0.85rem; color: #555; }
/* Booking Section */
.booking {
  background: #dff3fe; /* darker pastel */
  padding: 4rem 0;
}
.booking-container { text-align: center; }
.gift-icon {
  font-size: 2rem;
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}
.booking h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.highlight-green { color: var(--accent-green); }
.booking p { margin-bottom: 2rem; }
.booking-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 0 auto;
}
.booking-card h3 { margin-bottom: 1rem; }
.booking-form .form-group { display: flex; gap: 1rem; margin-bottom: 1rem; }
.two-col input { flex: 1; }
.full-width textarea { width: 100%; padding: 0.6rem; border: 1px solid #ccc; border-radius: 4px; }
.booking-form input { padding: 0.6rem; border: 1px solid #ccc; border-radius: 4px; }
.btn-green { background: var(--accent-green); color: #fff; width: 100%; padding: 0.8rem; border: none; border-radius: 4px; font-size: 1rem; }
/* Footer */
.footer { background: var(--footer-bg); color: #fff; padding: 4rem 0 2rem; }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-widget p, .footer-widget ul { margin-top: 1rem; line-height: 1.6; }
.footer-logo { height: 40px; }
.social-icons a { color: #fff; margin-right: 0.5rem; font-size: 1rem; }
.footer-widget h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-widget ul { list-style: none; padding: 0; }
.footer-widget ul li { margin-bottom: 0.5rem; }
.footer-widget ul li a { color: #fff; text-decoration: none; font-size: 0.95rem; }
.contact-info li { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 1rem; }
.footer-bottom p { font-size: 0.85rem; }
.footer-links a { color: #fff; text-decoration: none; margin: 0 0.5rem; font-size: 0.85rem; }
/* Responsive */
@media (max-width:768px) {
  .menu-toggle { display: block; }
  nav { display: none; flex-direction: column; align-items: center; gap: 1rem; background: #fff; position: absolute; top: 60px; left: 0; right: 0; padding: 1rem 0; }
  nav.active { display: flex; }
  .hero-content, .form-group.two-col { flex-direction: column; }
  .form-group.two-col input { width: 100%; }
}
