@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root{
  /* Core Brand Colors */
  --blue-dark:#1D4E89;
  --green-eco:#6BBF4E;
  --blue-azur:#4DBEE3;
  --white:#ffffff;
  --light-gray:#F5F7FA;
  --muted:#6b7280;
  
  /* Extended Palette */
  --soft-gold: #F6C453;
  --light-bg: #F9FBFD;
  --border-radius: 12px;
  --success-green: #10b981;
  --warning-amber: #f59e0b;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(29, 78, 137, 0.08);
  --shadow-lg: 0 12px 32px rgba(29, 78, 137, 0.12);
  --shadow-xl: 0 20px 48px rgba(29, 78, 137, 0.15);
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}
html{
  scroll-behavior: smooth;
}
html,body{height:100%}
body {
  margin:0;
  font-family:'DM Sans', 'Poppins', system-ui, -apple-system, sans-serif;
  color:var(--blue-dark);
  background:#ffffff;
  overflow-x:hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}

.container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:20px;
  flex-wrap:wrap;
  position:relative;
  z-index:100;
  padding: 16px 0;
}

.brand {
  transition: transform var(--transition-base);
}
.brand:hover {
  transform: translateY(-2px);
}
.brand img{
  height:55px;
  width:auto;
  display:block;
  filter: drop-shadow(0 2px 4px rgba(29, 78, 137, 0.1));
}

nav.topnav{
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
  margin-left:auto;
}

.topnav a{
  text-decoration:none;
  color:var(--blue-dark);
  font-weight:600;
  font-size: 15px;
  padding:10px 18px;
  border-radius:999px;
  border:2px solid transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.topnav a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(107, 191, 78, 0.1);
  transform: translate(-50%, -50%);
  transition: width var(--transition-slow), height var(--transition-slow);
}

.topnav a:hover::before {
  width: 200px;
  height: 200px;
}

.topnav a:hover{
  background:rgba(255,255,255,0.8);
  border-color:rgba(107, 191, 78, 0.3);
  transform: translateY(-2px);
  box-shadow:var(--shadow-md);
}

.topnav a.active{
  background:var(--green-eco);
  color:#fff;
  border-color:var(--green-eco);
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
}

.topnav .book-btn{
  background:linear-gradient(135deg, var(--green-eco), #5aaa42);
  color:#fff;
  padding:10px 22px;
  font-weight:700;
  box-shadow: 0 4px 16px rgba(107, 191, 78, 0.3);
}

.topnav .book-btn:hover{
  background:linear-gradient(135deg, var(--blue-azur), #3da5c7);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(77, 190, 227, 0.4);
}

/* Hamburger Menu */
.hamburger{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  margin-left:auto;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition-base);
}

.hamburger:hover {
  background: rgba(107, 191, 78, 0.1);
}

.hamburger span{
  width:28px;
  height:3px;
  background:var(--blue-dark);
  border-radius:3px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1){transform:translateY(9px) rotate(45deg)}
.hamburger.active span:nth-child(2){opacity:0; transform: scaleX(0);}
.hamburger.active span:nth-child(3){transform:translateY(-9px) rotate(-45deg)}

.mobile-menu{
  display:none;
  flex-direction:column;
  position:absolute;
  top:100%;
  left:0;
  right:auto;
  width:100%;
  background:rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  box-shadow:0 12px 32px rgba(0,0,0,.15);
  border-radius:0 0 16px 16px;
  animation:slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding:20px;
  z-index:9999;
  border-top: 2px solid rgba(107, 191, 78, 0.2);
}

.mobile-menu a{
  padding:14px 18px;
  color:var(--blue-dark);
  text-decoration:none;
  border-bottom:1px solid rgba(107, 191, 78, 0.1);
  border-radius:10px;
  font-weight: 500;
  transition: all var(--transition-base);
}

.mobile-menu a:hover{
  background:rgba(107, 191, 78, 0.08);
  transform: translateX(4px);
  border-color: var(--green-eco);
}

.mobile-menu .book-btn{
  margin:12px 0 4px;
  background:linear-gradient(135deg, var(--green-eco), #5aaa42);
  color:#fff;
  text-align:center;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
}

.mobile-menu .book-btn:hover{
  background:linear-gradient(135deg, var(--blue-azur), #3da5c7);
  transform: translateX(0) translateY(-2px);
}

.mobile-menu.open{display:flex}

@keyframes slideDown{
  from{opacity:0;transform:translateY(-20px) scale(0.95)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

@media(max-width:880px){
  nav.topnav{display:none}
  .hamburger{display:flex}
  .container{padding-bottom:120px}
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  margin-top: 20px;
  border-radius: 20px;
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(77,190,227,.06), rgba(107,191,78,.04));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(107, 191, 78, 0.1);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 191, 78, 0.08), transparent);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow{
  display:inline-block;
  padding:8px 16px;
  border-radius:999px;
  background:linear-gradient(135deg, rgba(77,190,227,.15), rgba(107,191,78,.12));
  color:var(--blue-dark);
  font-weight:700;
  font-size:13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1{
  margin:16px 0 12px;
  font-size:clamp(26px, 4vw, 36px);
  line-height:1.2;
  font-weight:800;
  color:var(--blue-dark);
  letter-spacing: -0.5px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.lead{
  margin:0 0 20px;
  color:var(--muted);
  max-width:100%;
  line-height:1.7;
  font-size: 17px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-row{
  display:flex;
  gap:14px;
  margin-top:20px;
  align-items:center;
  flex-wrap:wrap;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn{
  border-radius:999px;
  padding:12px 28px;
  font-weight:700;
  cursor:pointer;
  border:none;
  font-size: 15px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

.btn-primary{
  background:linear-gradient(135deg, var(--green-eco), #5aaa42);
  color:#fff;
  box-shadow:0 6px 20px rgba(107,191,78,.3);
}

.btn-primary:hover{
  background:linear-gradient(135deg, #5aaa42, var(--green-eco));
  transform: translateY(-3px);
  box-shadow:0 8px 24px rgba(107,191,78,.4);
}

.btn-ghost{
  background:transparent;
  border:2px solid var(--blue-dark);
  color:var(--blue-dark);
}

.btn-ghost:hover{
  background:var(--blue-dark);
  color:#fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   CARDS & GRID
   ======================================== */
.grid{
  display:grid;
  gap:24px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cards{grid-template-columns:1fr}

.card{
  background:#fff;
  border-radius:16px;
  box-shadow:var(--shadow-md);
  padding:24px;
  text-align:left;
  transition: all var(--transition-base);
  border: 1px solid rgba(29, 78, 137, 0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-eco), var(--blue-azur));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover{
  transform: translateY(-8px);
  box-shadow:var(--shadow-xl);
  border-color: var(--green-eco);
}

.card img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:16px;
  transition: transform var(--transition-slow);
}

.card:hover img{
  transform: scale(1.05);
}

h2.section-title{
  font-size:clamp(24px, 3vw, 32px);
  margin:0 0 20px;
  font-weight:800;
  color:var(--blue-dark);
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 12px;
}

h2.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-eco), var(--blue-azur));
  border-radius: 2px;
}

h3{
  margin:0 0 10px;
  font-weight:700;
  font-size: 20px;
  color:var(--blue-dark);
}

.muted{
  color:var(--muted);
  line-height: 1.6;
}

@media(min-width:880px){
  .cards{grid-template-columns:repeat(3,1fr)}
}

/* ========================================
   TABLES
   ======================================== */
.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 12px;
}

.table th{
  text-align:left;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
}

.table td{
  background:#fff;
  padding:16px 18px;
  border-top:1px solid rgba(29, 78, 137, 0.08);
  border-bottom:1px solid rgba(29, 78, 137, 0.08);
  transition: background var(--transition-base);
}

.table tr:hover td{
  background: rgba(107, 191, 78, 0.03);
}

.table tr td:first-child{
  border-left:1px solid rgba(29, 78, 137, 0.08);
  border-top-left-radius:12px;
  border-bottom-left-radius:12px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight: 500;
}

.table tr td:last-child{
  border-right:1px solid rgba(29, 78, 137, 0.08);
  border-top-right-radius:12px;
  border-bottom-right-radius:12px;
  font-weight: 700;
  color: var(--blue-dark);
}

.table td, .table th {
  vertical-align: middle;
}

/* ========================================
   BANNER
   ======================================== */
.banner {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.1));
  pointer-events: none;
}

.banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.banner:hover img {
  transform: scale(1.05);
}

/* ========================================
   LISTS
   ======================================== */
.hero .steps {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.hero .steps li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}

.hero .steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-eco);
  font-weight: 700;
  font-size: 18px;
}

.hero .steps strong {
  color: var(--blue-dark);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hero-highlights li {
  margin-bottom: 14px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.hero-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-eco);
  font-weight: 800;
  font-size: 20px;
  animation: checkPop 0.5s ease-out;
}

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

.why-choose {
  margin: 48px 0;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: linear-gradient(135deg, var(--blue-dark), #15396b);
  color: #fff;
  padding: 48px 24px 24px;
  margin-top: 64px;
  border-radius: 20px 20px 0 0;
  font-size: 0.95rem;
  box-shadow: 0 -4px 20px rgba(29, 78, 137, 0.15);
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 32px;
  justify-items: center;
  text-align: center;
}

footer h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: var(--blue-azur);
  font-weight: 700;
  letter-spacing: 0.5px;
}

footer p, footer a {
  margin: 6px 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all var(--transition-base);
  position: relative;
}

footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-azur);
  transition: width var(--transition-base);
}

footer a:hover::after {
  width: 100%;
}

footer a:hover {
  color: var(--blue-azur);
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
  text-align: center;
  margin: 32px 0 24px;
}

.footer-social p {
  margin: 0 0 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-azur);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

.social-icons a::after {
  display: none;
}

.social-icons a:hover {
  background: var(--blue-azur);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 16px rgba(77, 190, 227, 0.4);
}

/* ========================================
   APP SECTION
   ======================================== */
.app-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.app-text { 
  flex: 1 1 300px; 
}

.app-text ol { 
  line-height: 1.9; 
  font-size: 1.05rem; 
  margin: 0; 
  padding-left: 24px; 
}

.app-text ol li {
  margin-bottom: 12px;
}

.app-separator {
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--green-eco), transparent);
  min-height: 200px;
}

.app-right {
  flex: 1 1 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.app-right .store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.app-right .store-buttons img {
  width: 150px;
  height: auto;
  transition: transform var(--transition-base);
}

.app-right .store-buttons img:hover {
  transform: scale(1.05);
}

.qr-code {
  width: 120px;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.qr-code:hover {
  transform: scale(1.1) rotate(3deg);
}

@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-grid div {
    margin-bottom: 16px;
  }
  .app-flex {
    flex-direction: column;
    gap:24px;
    text-align:center;
    align-items: center;
  }
  .app-separator { display:none; }
  .app-right {
    flex-direction: column !important;
    gap:16px !important;
  }
  .qr-code {
    width:140px;
    margin-top:12px;
  }
}

/* ========================================
   HOME PAGE SPECIFIC
   ======================================== */
#comingSoonOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(29, 78, 137, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  color: #fff;
  text-align: center;
  padding: 20px;
}

#comingSoonOverlay h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

#comingSoonOverlay p {
  font-size: 1.3rem;
  margin: 8px 0 24px;
  opacity: 0.95;
}

#comingSoonOverlay small {
  opacity: 0.75;
  margin-top: 12px;
  display: block;
}

#closeOverlayBtn {
  margin-top: 32px;
  padding: 14px 32px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #fff;
  border-radius: 999px;
  transition: all var(--transition-base);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.4);
}

#closeOverlayBtn:hover {
  background: linear-gradient(135deg, #5aaa42, var(--green-eco));
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(107, 191, 78, 0.5);
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0 3.5rem;
  background: var(--light-bg);
  text-align: center;
  margin: 48px -20px;
}

.how-it-works .section-title {
  margin-bottom: 3rem;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.how-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem 2.2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-base);
  border: 2px solid transparent;
}

.how-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-eco);
}

.how-icon {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(107, 191, 78, 0.1), rgba(77, 190, 227, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--blue-dark);
  transition: all var(--transition-slow);
}

.how-card:hover .how-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(107, 191, 78, 0.2), rgba(77, 190, 227, 0.2));
}

.how-icon svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.4);
}

.how-card h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.how-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .how-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid-2col {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .services-grid-2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card-image-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  margin: 0;
}

.card.service-card {
  padding: 0;
  overflow: hidden;
}

.card-body {
  padding: 24px;
}

.card-title {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 700;
}

.card-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
}

.learn-more-btn:hover {
  background: linear-gradient(135deg, var(--blue-azur), #3da5c7);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(77, 190, 227, 0.4);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(107,191,78,0.06), rgba(77,190,227,0.06));
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(107, 191, 78, 0.1);
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-eco);
}

.value-card h4 {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 18px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ========================================
   SERVICES & TECHNOLOGY PAGES
   ======================================== */
.service-detail, .tech-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid rgba(29, 78, 137, 0.08);
  transition: all var(--transition-base);
}

.service-detail:hover, .tech-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-detail h3, .tech-card h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 22px;
}

.service-detail p, .service-detail ul, .tech-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-detail ul {
  margin: 14px 0;
  padding-left: 28px;
}

.service-detail ul li {
  margin-bottom: 8px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 32px;
  margin-top: 32px;
  border: 1px solid rgba(29, 78, 137, 0.08);
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.contact-flex > div {flex:1 1 300px;}

.phone-box {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  padding: 24px;
  border-radius: 999px;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(107, 191, 78, 0.4);
  transition: all var(--transition-base);
}

.phone-box:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(107, 191, 78, 0.5);
}

.form .input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border: 2px solid rgba(29, 78, 137, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: all var(--transition-base);
  font-family: inherit;
}

.form .input:focus {
  outline: none;
  border-color: var(--green-eco);
  box-shadow: 0 0 0 4px rgba(107, 191, 78, 0.1);
}

.form button {margin-top:8px}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 320px;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(29, 78, 137, 0.08);
}

.store-buttons img {
  width: 145px;
  height: auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(29, 78, 137, 0.1);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  transition: all var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green-eco);
  box-shadow: 0 0 0 4px rgba(107, 191, 78, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#submitBtn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.3);
}

#submitBtn:hover {
  background: linear-gradient(135deg, var(--blue-azur), #3da5c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(77, 190, 227, 0.4);
}

#thankYouOverlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index:9999;
  text-align:center;
  padding:48px;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

#thankYouOverlay.active { 
  display:flex; 
  animation: fadeIn 0.5s ease-out;
}

#thankYouOverlay h1 { 
  font-size:clamp(28px, 5vw, 40px); 
  color:var(--blue-dark); 
  margin-bottom:16px;
  font-weight: 800;
}

#thankYouOverlay p { 
  font-size:20px; 
  color:var(--muted); 
  margin-bottom:32px;
  line-height: 1.6;
}

#thankYouOverlay img { 
  max-width:160px; 
  margin-bottom:24px;
  filter: drop-shadow(0 4px 12px rgba(29, 78, 137, 0.15));
}

/* ========================================
   PRICING PAGE
   ======================================== */
.carousel-container {
  position: relative;
  padding: 0 50px;
  margin-bottom: 48px;
}

.category-selector {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 16px 0;
  scrollbar-width: none;
}

.category-selector::-webkit-scrollbar {
  display: none;
}

.category-card {
  cursor: pointer;
  flex: 0 0 160px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  background-color: var(--white);
  text-align: center;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.category-card.active {
  border-color: var(--green-eco);
  box-shadow: 0 0 0 4px rgba(107,191,78,0.2), var(--shadow-lg);
}

.category-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background-color: var(--white);
  display: block;
  padding: 12px;
  transition: transform var(--transition-base);
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-card p {
  margin: 12px;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.95rem;
  line-height: 1.3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-dark), #15396b);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.carousel-arrow:hover {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

#arrow-left { left: 0; }
#arrow-right { right: 0; }

.price-content-area {
  min-height: 400px;
  position: relative;
  padding-top: 24px;
}

.price-table-panel {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.price-table-panel.active {
  display: block;
}

.price-table-panel h3 {
  border-bottom: 3px solid var(--green-eco);
  padding-bottom: 12px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
}

.section-divider td,
.section-divider th {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #fff;
  font-weight: 800;
  padding: 12px 16px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.section-divider td span,
.section-divider th span {
  text-transform: uppercase;
}

.note-row td {
  font-size: 0.9rem;
  color: var(--muted);
  padding-top: 8px;
  padding-bottom: 8px;
  font-style: italic;
}

/* Icon Badge System */
.icon-badge{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
  font-size: 0;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.icon-badge::before{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 19px;
  line-height: 1;
}

.icon-blue   { background: linear-gradient(135deg, #e3f2fd, #bbdefb); color: #1565c0; }
.icon-green  { background: linear-gradient(135deg, #e6f4ea, #c8e6c9); color: #1b5e20; }
.icon-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); color: #ef6c00; }
.icon-pink   { background: linear-gradient(135deg, #fce4ec, #f8bbd0); color: #ad1457; }
.icon-purple { background: linear-gradient(135deg, #ede7f6, #d1c4e9); color: #5e35b1; }
.icon-teal   { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); color: #006064; }
.icon-gold   { background: linear-gradient(135deg, #fff8e1, #ffecb3); color: #f57f17; }

td .icon-badge:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .carousel-container {
    padding: 0 30px;
  }
  .category-card {
    flex: 0 0 140px;
  }
  .category-card img {
    height: 100px;
  }
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thankyou-page {
  font-family: 'DM Sans', 'Poppins', sans-serif;
  background: linear-gradient(135deg, #F5F7FA, #E8F4F8);
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.thankyou-page .bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  animation: rise 20s infinite linear;
  background: var(--blue-azur);
  z-index: 0;
  pointer-events: none;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.thankyou-page .bubble.green {
  background: var(--green-eco);
}

@keyframes rise {
  from { transform: translateY(100vh) scale(0.8) rotate(0deg); }
  to { transform: translateY(-120vh) scale(1.2) rotate(360deg); }
}

.thankyou-page .content {
  z-index: 2;
  max-width: 600px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thankyou-page .content img {
  max-width: 180px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(29, 78, 137, 0.15));
}

.thankyou-page h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin-bottom: 16px;
  font-weight: 800;
  color: var(--blue-dark);
}

.thankyou-page p {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--muted);
  line-height: 1.6;
}

.thankyou-page .btn {
  background: linear-gradient(135deg, var(--green-eco), #5aaa42);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(107, 191, 78, 0.3);
  font-size: 16px;
}

.thankyou-page .btn:hover {
  background: linear-gradient(135deg, var(--blue-azur), #3da5c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(77, 190, 227, 0.4);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .topnav,
  .hamburger,
  .mobile-menu,
  footer,
  .btn,
  #bg-canvas {
    display: none !important;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}

.book-now-btn {
  background: #6BBF4E !important;    /* Green background */
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  border: 2px solid #6BBF4E !important;
}
/* Cookie Consent Styles - EcoNclean */
/* Save as: cookie-consent.css */

/* Banner Styles - FIXED AT BOTTOM */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 3px solid #6BBF4E;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  color: white;
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.cookie-text p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.cookie-text a {
  color: #6BBF4E;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s;
}

.cookie-text a:hover {
  color: #5aaa42;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-btn-accept {
  background: #6BBF4E;
  color: white;
  box-shadow: 0 4px 12px rgba(107, 191, 78, 0.3);
}

.cookie-btn-accept:hover {
  background: #5aaa42;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(107, 191, 78, 0.4);
}

.cookie-btn-reject {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 24px;
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

/* Modal Styles */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal {
  position: relative;
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: scaleIn 0.3s ease-out;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.cookie-modal-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #1a1a2e;
  font-weight: 700;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s;
  line-height: 1;
}

.cookie-modal-close:hover {
  background: #e5e7eb;
  color: #1a1a2e;
}

.cookie-modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 20px;
}

.cookie-category h3 {
  margin: 0 0 4px 0;
  font-size: 1.15rem;
  color: #1a1a2e;
  font-weight: 700;
}

.cookie-category-header > div > p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.cookie-category-description {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  border-radius: 28px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #6BBF4E;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(26px);
}

.cookie-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  background: #f9fafb;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .cookie-content {
    gap: 20px;
  }
  
  .cookie-buttons {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 16px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .cookie-text h3 {
    font-size: 1.15rem;
  }

  .cookie-text p {
    font-size: 0.95rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .cookie-btn-settings {
    padding: 10px 20px;
  }

  #cookie-settings-modal {
    padding: 0;
  }

  .cookie-modal {
    max-height: 100vh;
    border-radius: 0;
    height: 100%;
  }

  .cookie-modal-body {
    padding: 20px;
  }

  .cookie-modal-header {
    padding: 20px;
  }

  .cookie-modal-footer {
    flex-direction: column-reverse;
    padding: 16px 20px;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px 12px;
  }

  .cookie-text h3 {
    font-size: 1.05rem;
  }

  .cookie-text p {
    font-size: 0.9rem;
  }

  .cookie-btn {
    padding: 11px 18px;
    font-size: 0.95rem;
  }
  
  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-toggle {
    align-self: flex-start;
  }
}