/* Care Vision Thailand - Family Wellness Theme */
/* Warm & Trustworthy Design */

/* CSS Variables */
:root {
  --cream-bg: #FDFCF0;
  --forest-green: #2E7D32;
  --forest-green-dark: #1B5E20;
  --sand: #C19A6B;
  --sand-light: #D4B896;
  --warm-white: #FFFEF7;
  --text-dark: #2C3E30;
  --text-light: #5A6B5C;
  --shadow-soft: 0 4px 20px rgba(46, 125, 50, 0.1);
  --shadow-medium: 0 8px 30px rgba(46, 125, 50, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Sarabun', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--forest-green);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* Container */
.c25v0bex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: var(--warm-white);
  box-shadow: var(--shadow-soft);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.y5pyk2g7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.ra2uq6ci {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--forest-green);
}

.nfj3ngp9 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--forest-green), var(--sand));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

nav a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: var(--forest-green);
  color: white;
}

/* Mobile Menu Toggle */
.mkcifjz9 {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mkcifjz9 span {
  width: 25px;
  height: 3px;
  background-color: var(--forest-green);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.cwzyqjgm {
  margin-top: 80px;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--cream-bg) 0%, var(--warm-white) 100%);
  position: relative;
  overflow: hidden;
}

.cwzyqjgm::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(193, 154, 107, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.tc2f5nzi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.joxoirm9 h1 {
  margin-bottom: 20px;
  font-size: 3rem;
}

.joxoirm9 .p4alvfgj {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-light);
}

.bhjd4wmz {
  position: relative;
}

.bhjd4wmz img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
}

.bhjd4wmz::after {
  content: '☀️';
  position: absolute;
  top: -30px;
  right: -30px;
  font-size: 4rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Buttons */
.suazqrvo {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}

.uy4yb4c9 {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.uy4yb4c9:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.5);
}

.zubi9gc2 {
  background: linear-gradient(135deg, var(--sand), var(--sand-light));
  color: white;
  box-shadow: 0 4px 15px rgba(193, 154, 107, 0.4);
}

.zubi9gc2:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(193, 154, 107, 0.5);
}

/* Section Styles */
section {
  padding: 80px 20px;
}

.h6lchb7s {
  text-align: center;
  margin-bottom: 50px;
}

.h6lchb7s h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.h6lchb7s p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Threats Section */
.gdox7tx1 {
  background-color: var(--warm-white);
}

.iw1x86ha {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.gwpsve4e {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.gwpsve4e:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}

.gwpsve4e img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.p6pzvh1a {
  padding: 30px;
}

.p6pzvh1a h3 {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tj3tuqfe {
  font-size: 1.5rem;
}

/* Nutrients Section */
.ecgtqim2 {
  background: linear-gradient(135deg, var(--cream-bg) 0%, #F5F0E0 100%);
}

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

.gz98s9yd h3 {
  margin-bottom: 20px;
}

.mz3bu08c {
  list-style: none;
  margin-top: 30px;
}

.mz3bu08c li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}

.dj4ai5uj {
  font-size: 2rem;
  min-width: 50px;
}

.y52e1lut h4 {
  color: var(--forest-green);
  margin-bottom: 5px;
}

.y52e1lut p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.dundlayq img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-medium);
}

/* Form Section */
.rkk9bb5b {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.rkk9bb5b::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.rkk9bb5b p {
  color: rgba(255, 255, 255, 0.9);
}

.fhr3of3u {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fhr3of3u h2 {
  color: white;
  margin-bottom: 30px;
}

.og0l5mst {
  margin-bottom: 20px;
  text-align: left;
}

.og0l5mst label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.og0l5mst input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.og0l5mst input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.og0l5mst input:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(255, 255, 255, 0.2);
}

.rkk9bb5b .suazqrvo {
  width: 100%;
  margin-top: 10px;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 60px 20px 30px;
}

.oq0olv35 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.j4fo9fcs {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.j4fo9fcs .nfj3ngp9 {
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
}

.j4fo9fcs span {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.qkx7g5sp p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.heeg2o2q {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.heeg2o2q a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.heeg2o2q a:hover {
  color: var(--sand);
  padding-left: 10px;
}

.brh3zkcq {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Modal */
.vbvlxduf {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.vbvlxduf.active {
  display: flex;
}

.xrom8sd1 {
  background: white;
  border-radius: 30px;
  padding: 50px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.w3agyzph {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.xrom8sd1 h3 {
  color: var(--forest-green);
  margin-bottom: 15px;
}

.xrom8sd1 p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.sj80w1c8 {
  background: linear-gradient(135deg, var(--forest-green), var(--forest-green-dark));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s ease;
}

.sj80w1c8:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

/* Policy Pages */
.swusfdst {
  max-width: 900px;
  margin: 100px auto 50px;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.swusfdst h1 {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--sand);
}

.swusfdst h2 {
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--forest-green);
}

.swusfdst p,
.swusfdst li {
  color: var(--text-light);
  margin-bottom: 15px;
}

.swusfdst ul {
  margin-left: 30px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .tc2f5nzi,
  .iw1x86ha,
  .j3ppmug9 {
    grid-template-columns: 1fr;
  }

  .joxoirm9 h1 {
    font-size: 2.2rem;
  }

  .bhjd4wmz img {
    height: 350px;
  }

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

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-medium);
  }

  nav ul.active {
    display: flex;
  }

  .mkcifjz9 {
    display: flex;
  }

  .cwzyqjgm {
    padding: 60px 20px;
    margin-top: 70px;
  }

  .joxoirm9 h1 {
    font-size: 1.8rem;
  }

  .h6lchb7s h2 {
    font-size: 1.8rem;
  }

  .xrom8sd1 {
    padding: 30px;
  }

  .swusfdst {
    margin: 80px 15px 30px;
    padding: 25px;
  }
}

/* Heart Icon Animation */
.heart-icon {
  display: inline-block;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10%, 30% { transform: scale(1.1); }
  20%, 40% { transform: scale(1); }
}

/* Hand Care Icon */
.hand-care {
  font-size: 3rem;
  opacity: 0.8;
}
