/* ========================================
   Siam Eye Guard - Optical Precision Theme
   Future of Vision
   ======================================== */

/* CSS Variables */
:root {
  --arctic-white: #f8fafc;
  --intense-blue: #0284c7;
  --soft-gold: #eab308;
  --deep-blue: #0c4a6e;
  --pure-white: #ffffff;
  --light-gray: #e2e8f0;
  --text-dark: #1e293b;
  --text-muted: #64748b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Prompt",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background-color: var(--arctic-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.3;
}

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

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

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(2, 132, 199, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.header .c25v0bex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.nfj3ngp9 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--intense-blue), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nfj3ngp9::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--pure-white);
  border-radius: 50%;
  position: absolute;
}

.nfj3ngp9::after {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--intense-blue);
  border-radius: 50%;
  position: absolute;
}

.fbvrzq11 {
  display: flex;
  gap: 30px;
  list-style: none;
}

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

.fbvrzq11 a:hover {
  color: var(--intense-blue);
  background: rgba(2, 132, 199, 0.1);
}

/* ========================================
   Hero Section
   ======================================== */
.cwzyqjgm {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(
    180deg,
    var(--arctic-white) 0%,
    rgba(2, 132, 199, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.cwzyqjgm::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(2, 132, 199, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cwzyqjgm::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(234, 179, 8, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.joxoirm9 {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.cwzyqjgm h1 {
  font-size: 3rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.cwzyqjgm p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.fttzms2w {
  display: inline-block;
  background: linear-gradient(135deg, var(--intense-blue), var(--deep-blue));
  color: var(--pure-white);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(2, 132, 199, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.4s both;
  cursor: pointer;
  border: none;
}

.fttzms2w:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(2, 132, 199, 0.4);
}

/* Eye Animation */
.pcb83gyo {
  width: 200px;
  height: 200px;
  margin: 0 auto 40px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.or01byfk {
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at 30% 30%,
    var(--intense-blue),
    var(--deep-blue)
  );
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(2, 132, 199, 0.4);
}

.or01byfk::before {
  content: "";
  width: 40px;
  height: 40px;
  background: var(--pure-white);
  border-radius: 50%;
  position: absolute;
  top: 20%;
  left: 25%;
  opacity: 0.8;
}

.mjacvjl8 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--soft-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.ffn6qypg {
  width: 140px;
  height: 140px;
  animation-delay: 0s;
}

.cp8a1fxq {
  width: 180px;
  height: 180px;
  border-color: rgba(2, 132, 199, 0.3);
  animation-delay: 0.5s;
}

/* ========================================
   Risk Section
   ======================================== */
.bfgb5053 {
  padding: 100px 0;
  background: var(--pure-white);
}

.h6lchb7s {
  text-align: center;
  font-size: 2.2rem;
  color: var(--deep-blue);
  margin-bottom: 60px;
  position: relative;
}

.h6lchb7s::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--intense-blue), var(--soft-gold));
  margin: 20px auto 0;
  border-radius: 2px;
}

.mdcl1u5m {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.z9a8gknf {
  background: var(--arctic-white);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.z9a8gknf:hover {
  transform: translateY(-10px);
  border-color: var(--intense-blue);
  box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
}

.da3sx95m {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(
    135deg,
    rgba(2, 132, 199, 0.1),
    rgba(234, 179, 8, 0.1)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.z9a8gknf h3 {
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.z9a8gknf p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========================================
   Benefits Section
   ======================================== */
.lg1yd1dj {
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--arctic-white) 0%,
    rgba(2, 132, 199, 0.03) 100%
  );
}

.jt0o1kji {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.tucmi23f {
  background: var(--pure-white);
  padding: 50px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tucmi23f::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--intense-blue), var(--soft-gold));
}

.tucmi23f:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(2, 132, 199, 0.2);
}

.qu38z0un {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--intense-blue), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
}

.tucmi23f h3 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.tucmi23f p {
  color: var(--text-muted);
  line-height: 1.8;
}

.wwdqrx2a {
  color: var(--soft-gold);
  font-weight: 600;
}

/* ========================================
   Ingredients Section
   ======================================== */
.t15c3xx4 {
  padding: 100px 0;
  background: var(--pure-white);
}

.uvf79xok {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.nww59a2w {
  background: var(--arctic-white);
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nww59a2w:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.qq3toyv8 {
  height: 200px;
  background: linear-gradient(135deg, var(--intense-blue), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.qq3toyv8.q37pfeps {
  background: linear-gradient(135deg, var(--soft-gold), #ca8a04);
}

.qq3toyv8.a52olfu1 {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.f41how22 {
  padding: 30px;
}

.f41how22 h3 {
  font-size: 1.3rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
}

.f41how22 p {
  color: var(--text-muted);
  line-height: 1.8;
}

.x4x2wfod {
  display: inline-block;
  background: rgba(2, 132, 199, 0.1);
  color: var(--intense-blue);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 15px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: linear-gradient(135deg, var(--deep-blue), var(--intense-blue));
  color: var(--pure-white);
  padding: 60px 0 30px;
}

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

.lpoeytph {
  max-width: 300px;
}

.lpoeytph .ra2uq6ci {
  color: var(--pure-white);
  margin-bottom: 20px;
}

.lpoeytph .nfj3ngp9 {
  background: var(--pure-white);
}

.lpoeytph .nfj3ngp9::before {
  background: var(--intense-blue);
}

.lpoeytph .nfj3ngp9::after {
  background: var(--pure-white);
}

.lpoeytph p {
  opacity: 0.8;
  line-height: 1.8;
}

.heeg2o2q h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--soft-gold);
}

.heeg2o2q ul {
  list-style: none;
}

.heeg2o2q li {
  margin-bottom: 12px;
}

.heeg2o2q a {
  opacity: 0.8;
  transition: all 0.3s ease;
}

.heeg2o2q a:hover {
  opacity: 1;
  color: var(--soft-gold);
}

.nhr9xovd {
  opacity: 0.8;
  line-height: 1.8;
}

.nhr9xovd p {
  margin-bottom: 10px;
}

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

/* ========================================
   Modal
   ======================================== */
.saxcj8d6 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.vbvlxduf {
  background: var(--pure-white);
  border-radius: 30px;
  padding: 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: all 0.3s ease;
  position: relative;
}

.sj80w1c8 {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--arctic-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sj80w1c8:hover {
  background: var(--intense-blue);
  color: var(--pure-white);
}

.w3agyzph {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--intense-blue), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.vbvlxduf h2 {
  font-size: 1.6rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.vbvlxduf p {
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

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

.ymf21cfe input,
.ymf21cfe select {
  padding: 15px 20px;
  border: 2px solid var(--light-gray);
  border-radius: 15px;
  font-size: 1rem;
  font-family: "Prompt", sans-serif;
  transition: all 0.3s ease;
}

.ymf21cfe input:focus,
.ymf21cfe select:focus {
  outline: none;
  border-color: var(--intense-blue);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

.ymf21cfe button {
  background: linear-gradient(135deg, var(--intense-blue), var(--deep-blue));
  color: var(--pure-white);
  padding: 18px;
  border: none;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Prompt", sans-serif;
}

.ymf21cfe button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .header .c25v0bex {
    flex-direction: column;
    gap: 15px;
  }

  .fbvrzq11 {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cwzyqjgm h1 {
    font-size: 2rem;
  }

  .cwzyqjgm p {
    font-size: 1rem;
  }

  .h6lchb7s {
    font-size: 1.6rem;
  }

  .vbvlxduf {
    padding: 30px 20px;
  }

  .jt0o1kji,
  .uvf79xok,
  .mdcl1u5m {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Policy Pages
   ======================================== */
.f708drqe {
  min-height: 100vh;
  padding: 120px 20px 60px;
  background: var(--arctic-white);
}

.swusfdst {
  max-width: 800px;
  margin: 0 auto;
  background: var(--pure-white);
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.swusfdst h1 {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--intense-blue);
}

.swusfdst h2 {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin: 30px 0 15px;
}

.swusfdst p,
.swusfdst li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 15px;
}

.swusfdst ul {
  margin-left: 25px;
}

.d6pydi11 {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--intense-blue);
  font-weight: 600;
  transition: all 0.3s ease;
}

.d6pydi11:hover {
  color: var(--deep-blue);
}
