:root {
  --accent: #0077cc;
  --muted: #666;
  --bg: #f8fafc;
  --card: #fff;
  --max-width: 1100px;
  --radius: 10px;
  --gap: 18px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: #111; line-height: 1.5; }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 20px; }
.site-header {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { color: var(--accent); text-decoration: none; font-size: 1.4em; font-weight: 700; }
.main-nav a { color: var(--muted); text-decoration: none; margin-left: 16px; font-weight: 500; }
.main-nav a:hover { color: var(--accent); }
.hero-banner {
  position: relative; text-align: center; color: #fff;
  background: linear-gradient(180deg, #00000055, #00000088), url('../images/couple-beach.png') center/cover no-repeat;
  height: 480px; display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.hero-banner .hero-text { z-index: 10; background: rgba(0,0,0,0.35); padding: 20px 40px; border-radius: 12px; }
.hero-banner h1 { margin: 0; font-size: 2.2em; color: #fff; }
.hero-banner .lead { font-size: 1.1em; color: #f3f3f3; margin: 10px 0 20px; }
.btn { display: inline-block; padding: 10px 20px; border-radius: 8px; background: var(--accent); color: #fff; text-decoration: none; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: var(--gap); margin-top: 1em; }
.card { background: var(--card); padding: 18px; border-radius: 10px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); }
.card h3 { margin-top: 0; }
.card a { color: var(--accent); text-decoration: none; font-weight: 600; }
.card a:hover { text-decoration: underline; }
.info ul { list-style: none; padding: 0; }
.info li { margin-bottom: 8px; }
.site-footer { text-align: center; color: var(--muted); padding: 18px 0; margin-top: 30px; font-size: 14px; }
.chat-container { max-width: 100%; margin: 14px 0; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.chat-container iframe { display: block; width: 100%; height: 640px; border: 0; }
@media (max-width: 640px) {
  .hero-banner { height: 360px; }
  .hero-banner .hero-text { padding: 15px 20px; }
  .hero-banner h1 { font-size: 1.6em; }
  .main-nav { display: none; }
  .chat-container iframe { height: 520px; }
}
.about-section h1, .about-section h2 {
  color: var(--peacock);
  margin-top: 1.5em;
}
.about-section ul {
  margin: 1em 0 1em 1.5em;
  list-style: disc;
}
.about-section blockquote {
  border-left: 4px solid var(--saffron);
  padding-left: 12px;
  font-style: italic;
  color: #444;
  margin-top: 1em;
}
.site-footer {
  background: linear-gradient(90deg, #0b6b92, #064a63);
  color: #fff;
  padding: 40px 20px;
  border-top: 4px solid #f39c12;
  font-family: 'Inter', system-ui, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.4em;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-brand .tagline {
  font-size: 0.9em;
  margin-top: 4px;
  color: #dbeafe;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: #f1f5f9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f39c12;
}

.footer-sponsor {
  text-align: right;
  font-size: 0.85em;
}

.footer-sponsor a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 700;
}

.footer-sponsor a:hover {
  text-decoration: underline;
}

/* Responsive footer layout */
@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-sponsor {
    text-align: center;
    margin-top: 15px;
  }
}

/* Section styling */
.info {
  text-align: center;
  margin-top: 40px;
}

.info h1 {
  font-size: 2.2rem;
  color: #0b6b92;
  margin-bottom: 10px;
}

.info p {
  color: #555;
  margin-bottom: 30px;
  font-size: 1rem;
}

/* Grid layout */
.chatroom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Individual cards */
.chat-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 20px;
  transition: all 0.3s ease;
}

.chat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(11,107,146,0.15);
  border-color: #f39c12;
}

.chat-card h3 {
  margin: 0 0 8px;
}

.chat-card a {
  color: #0b6b92;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.chat-card a:hover {
  color: #f39c12;
}

.chat-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}

/* Responsive text sizing */
@media (max-width: 600px) {
  .info h1 {
    font-size: 1.8rem;
  }
  .chat-card {
    padding: 15px;
  }
}

/* WHY CHAT SECTION */
.why-chat {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5f9 100%);
  padding: 80px 20px;
  text-align: center;
  color: #222;
}

.why-chat .container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-chat h2 {
  font-size: 2.2rem;
  color: #0b6b92;
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.why-chat h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #0b6b92, #f39c12);
  border-radius: 2px;
}

.why-chat .intro {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 15px;
}

.feature {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid transparent;
}

.feature:hover {
  transform: translateY(-5px);
  border-top-color: #f39c12;
  box-shadow: 0 10px 25px rgba(11,107,146,0.15);
}

.feature .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature h3 {
  font-size: 1.2rem;
  color: #0b6b92;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* CTA BUTTON */
.why-chat .cta {
  margin-top: 50px;
}

.btn-primary {
  background: linear-gradient(90deg, #f39c12, #f7b733);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(243,156,18,0.3);
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #e68900, #f39c12);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .why-chat {
    padding: 60px 15px;
  }
  .why-chat h2 {
    font-size: 1.8rem;
  }
}

.privacy-page {
  background-color: #f8fafc;
  padding: 60px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.8;
}

.privacy-page .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.privacy-page h1 {
  color: #0b6b92;
  margin-bottom: 10px;
  font-size: 2rem;
}

.privacy-page h2 {
  margin-top: 30px;
  color: #f39c12;
  font-size: 1.3rem;
}

.privacy-page a {
  color: #0b6b92;
  text-decoration: none;
  font-weight: 600;
}

.privacy-page a:hover {
  color: #f39c12;
  text-decoration: underline;
}

.privacy-page ul {
  margin-left: 20px;
  list-style: disc;
}

.terms-page, .safety-page {
  background-color: #f8fafc;
  padding: 60px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.8;
}

.terms-page .container,
.safety-page .container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.terms-page h1, .safety-page h1 {
  color: #0b6b92;
  margin-bottom: 10px;
  font-size: 2rem;
}

.terms-page h2, .safety-page h2 {
  margin-top: 30px;
  color: #f39c12;
  font-size: 1.3rem;
}

.terms-page a, .safety-page a {
  color: #0b6b92;
  text-decoration: none;
  font-weight: 600;
}

.terms-page a:hover, .safety-page a:hover {
  color: #f39c12;
  text-decoration: underline;
}

.terms-page ul, .safety-page ul {
  margin-left: 20px;
  list-style: disc;
}

/* ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f4f9 100%);
  padding: 80px 20px;
  font-family: 'Inter', system-ui, sans-serif;
  color: #222;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 320px;
  animation: fadeIn 1s ease-in-out;
}

.about-text h2 {
  font-size: 2.2rem;
  color: #0b6b92;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #f39c12;
}

.about-text p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  background: #fff;
  margin-bottom: 10px;
  border-left: 4px solid #f39c12;
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 0.95rem;
}

.about-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* Primary Button */
.btn-primary {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(90deg, #f39c12, #f7b733);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(243,156,18,0.25);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #e68900, #f39c12);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .about-text {
    margin-top: 20px;
  }
  .about-text h2 {
    font-size: 1.8rem;
  }
}

/* Simple fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* STATES SECTION */
.states {
  text-align: center;
  padding: 60px 20px;
}

.states h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0b6b92; /* Peacock blue */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Add saffron underline accent */
.states h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #0b6b92, #f39c12);
  border-radius: 2px;
}

/* Optional background for the section */
.states {
  background: linear-gradient(180deg, #f8fafc 0%, #eef5f9 100%);
}

