/* GiftWave Global Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0d9488;
  --primary-dark: #0f766e;
  --primary-light: #e6f7f5;
  --primary-lighter: #f0fdfb;
  --navy: #1a1a2e;
  --navy-light: #2d2d4a;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--gray-700); }

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .35rem; color: var(--gray-700); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { max-width: 620px; margin: .75rem auto 0; font-size: 1.1rem; }

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: .45rem;
}

.logo-wave {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.logo-wave::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath d='M4 18 Q10 10 14 14 Q18 18 24 10' stroke='white' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/cover;
}

nav { display: flex; align-items: center; gap: 1.75rem; }

nav a {
  color: var(--gray-700);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
}

nav a:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

@media (max-width: 820px) {
  .hamburger { display: flex; }
  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
  nav a { padding: .6rem 0; border-bottom: 1px solid var(--gray-100); width: 100%; font-size: 1rem; }
  nav a:last-child { border-bottom: none; }
  .nav-cta { padding: .5rem 1.1rem; }
}

/* ===== DISCLAIMER BANNER ===== */
.disclaimer-bar {
  background: var(--primary-light);
  border-bottom: 1px solid #b2dfdb;
  padding: .6rem 0;
}

.disclaimer-bar .container {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.disclaimer-bar svg { flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(145deg, #f0fdfb 0%, #e6f7f5 40%, #f9fafb 100%);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .8rem;
  border-radius: 999px;
  border: 1px solid #b2dfdb;
  margin-bottom: 1.2rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hero h1 { margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--primary); }

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
  color: var(--gray-600);
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Gift card visual */
.card-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 3/2;
}

.gift-card {
  position: absolute;
  width: 88%;
  aspect-ratio: 1.586/1;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.gift-card:nth-child(3) {
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #134e4a, #0d9488);
  transform: rotate(-6deg);
  opacity: .85;
}

.gift-card:nth-child(2) {
  bottom: 20px;
  left: 8%;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  transform: rotate(-2deg);
  opacity: .92;
}

.gift-card:nth-child(1) {
  bottom: 40px;
  left: 16%;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  transform: rotate(2deg);
}

.gift-card-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,.9);
}

.gift-card-chip {
  width: 36px;
  height: 28px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border-radius: 5px;
}

.gift-card-number {
  font-size: .7rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  font-family: monospace;
}

.gift-card-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 70px;
  opacity: .15;
}

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .card-stack { display: none; }
}

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; }

/* ===== STEPS ===== */
.steps { counter-reset: step; }

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-num {
  counter-increment: step;
  min-width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'DM Serif Display', serif;
  flex-shrink: 0;
}

.step h4 { margin-bottom: .3rem; }
.step p { font-size: .95rem; }

/* ===== FAQ / DETAILS ===== */
details {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  background: var(--white);
  transition: box-shadow var(--transition);
}

details[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

summary {
  cursor: pointer;
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .2s;
  margin-left: 1rem;
}

details[open] summary::after { content: '−'; }

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  font-size: .97rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-100);
}

.faq-category { margin-top: 2.5rem; margin-bottom: 1rem; }
.faq-category h3 { color: var(--primary); }

/* ===== TIPS ===== */
.tip-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tip-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.tip-number {
  min-width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .95rem;
  flex-shrink: 0;
}

.tip-card h4 { margin-bottom: .25rem; font-size: 1rem; }
.tip-card p { font-size: .93rem; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
}

.about-strip h2, .about-strip h3 { color: var(--white); }
.about-strip p { color: rgba(255,255,255,.8); }

.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 640px) {
  .about-strip-inner { grid-template-columns: 1fr; }
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--white);
  white-space: nowrap;
}

.btn-white:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ===== WARNING / INFO BOXES ===== */
.alert {
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid;
  margin: 1.5rem 0;
  font-size: .95rem;
}

.alert-warning {
  background: #fffbeb;
  border-color: #f59e0b;
  color: #92400e;
}

.alert-info {
  background: var(--primary-lighter);
  border-color: var(--primary);
  color: #134e4a;
}

.alert-danger {
  background: #fef2f2;
  border-color: #ef4444;
  color: #991b1b;
}

.alert strong { display: block; margin-bottom: .25rem; }

/* ===== TABLE ===== */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.comparison-table th, .comparison-table td { text-align: left; padding: .85rem 1rem; border-bottom: 1px solid var(--gray-200); }
.comparison-table th { background: var(--gray-50); font-weight: 600; color: var(--navy); }
.comparison-table tr:hover td { background: var(--primary-lighter); }
.check { color: #16a34a; font-weight: 700; }
.cross { color: #dc2626; font-weight: 700; }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy); }
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(13,148,136,.15); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control { cursor: pointer; }

.btn-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: .8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(13,148,136,.18)'/%3E%3C/svg%3E");
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ===== ARTICLE CONTENT ===== */
.article-content { max-width: 760px; }
.article-content h2 { margin: 2.5rem 0 1rem; color: var(--navy); }
.article-content h3 { margin: 2rem 0 .75rem; color: var(--primary-dark); }
.article-content p { margin-bottom: 1.1rem; }
.article-content ul, .article-content ol { margin-bottom: 1.1rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

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

.footer-brand .logo { color: var(--white); margin-bottom: .75rem; }

.footer-tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  max-width: 240px;
  margin-top: .5rem;
  line-height: 1.6;
}

.footer-col h4 {
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col ul li { margin-bottom: .5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
}

.footer-disclaimer {
  background: rgba(13,148,136,.15);
  border: 1px solid rgba(13,148,136,.3);
  border-radius: var(--radius-sm);
  padding: .85rem 1.25rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ===== UTILITIES ===== */
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.text-muted { color: var(--gray-500); font-size: .9rem; }
.fw-600 { font-weight: 600; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.bg-light { background: var(--gray-50); }
.bg-primary-light { background: var(--primary-lighter); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; }
}

.pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 999px;
  padding: .25rem .85rem;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.divider { height: 1px; background: var(--gray-200); margin: 2.5rem 0; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 800px; }
.policy-content h2 { margin: 2.5rem 0 .75rem; border-left: 3px solid var(--primary); padding-left: .85rem; }
.policy-content h3 { margin: 1.75rem 0 .5rem; color: var(--primary-dark); }
.policy-content p { margin-bottom: 1rem; }
.policy-content ul { margin-bottom: 1rem; }
.last-updated { color: var(--gray-500); font-size: .9rem; margin-top: .5rem; }

/* ===== ABOUT PAGE ===== */
.mission-card {
  background: var(--primary-lighter);
  border: 1px solid rgba(13,148,136,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 2rem 0;
}

.mission-card h3 { color: var(--primary-dark); margin-bottom: .75rem; }

.do-not-list { list-style: none; padding: 0; }
.do-not-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.do-not-list li:last-child { border-bottom: none; }
.do-not-list li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

.do-list { list-style: none; padding: 0; }
.do-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
}

.do-list li:last-child { border-bottom: none; }
.do-list li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; margin-top: .05rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

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

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-info-card h4 { margin-bottom: .5rem; }
.contact-info-card p { font-size: .93rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  h1 { font-size: 1.85rem; }
  .card-grid { grid-template-columns: 1fr; }
}
