:root{
  --bg:#eef5f9;
  --bg-soft:#f7fbfd;
  --surface:#ffffff;
  --surface-2:#f1f7fb;
  --text:#183244;
  --text-soft:#486274;
  --line:#cfe0ea;

  --primary:#2f5d73;
  --primary-strong:#22485a;
  --primary-soft:#d8eaf3;

  --accent:#5f8fa8;
  --accent-soft:#e7f2f8;

  --highlight:#89b7cf;
  --highlight-strong:#6ea3bf;

  --shadow-sm:0 8px 22px rgba(24,50,68,.08);
  --shadow-md:0 18px 42px rgba(24,50,68,.12);
  --shadow-lg:0 24px 60px rgba(24,50,68,.16);

  --radius:22px;
  --radius-sm:16px;
  --max:1180px;
  --transition:all .28s ease;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(137,183,207,.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(95,143,168,.12), transparent 30%),
    linear-gradient(180deg, #f9fcfe 0%, #edf5f9 55%, #e7f1f6 100%);
  color:var(--text);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

img{
  max-width:100%;
  display:block;
  border-radius:inherit;
}

a{
  color:inherit;
  text-decoration:none;
  transition:var(--transition);
}

.container{
  width:min(var(--max), 92%);
  margin:0 auto;
}

/* Header */
.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(12px);
  /* background:linear-gradient(180deg, #0f1e28 0%, #142a36 100%);*/
  background: linear-gradient(135deg, rgba(18, 50, 74, 0.96), rgba(30, 86, 120, 0.92));
  border-bottom:1px solid rgba(201,162,74,.25);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1.25rem;
  padding:1rem 0;
}


.brand{
  display:flex;
  align-items:center;
  gap:1rem;
  min-width:0;
}

.brand img{
  width:124px;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 6px 12px rgba(212,175,55,.25));
}

.brand-text{
  min-width:0;
}

.brand-title{
  margin:0;
  font-size:1.08rem;
  font-weight:700;
  letter-spacing:.05em;
  color:#d4af37; /* gold */
}

.brand-sub{
  margin:.18rem 0 0;
  color:#ffffffcc; /* soft white */
  font-size:.88rem;
}

.menu{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.menu a{
  padding:.72rem 1rem;
  border-radius:999px;
  color:#ffffffcc;
  font-size:.95rem;
  border:1px solid transparent;
  transition:all .25s ease;
}

.menu a:hover,
.menu a.active{
  background:rgba(212,175,55,.15);
  color:#d4af37;
  border-color:rgba(212,175,55,.35);
  box-shadow:0 6px 16px rgba(0,0,0,.25);
}

.mobile-toggle{
  display:none;
  background:transparent;
  border:1px solid rgba(212,175,55,.35);
  color:#d4af37;
  padding:.6rem .9rem;
  border-radius:12px;
  font:inherit;
  cursor:pointer;
}

/* Hero */
.hero{
  padding:5rem 0 4.25rem;
  background:
    radial-gradient(circle at top right, rgba(137,183,207,.26), transparent 30%),
    radial-gradient(circle at left center, rgba(95,143,168,.16), transparent 30%);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:2.2rem;
  align-items:center;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.48rem .9rem;
  border:1px solid rgba(47,93,115,.16);
  border-radius:999px;
  color:var(--primary);
  font-size:.88rem;
  background:rgba(216,234,243,.7);
  box-shadow:0 6px 14px rgba(47,93,115,.06);
}

.hero h1{
  font-size:clamp(2.6rem, 5vw, 4.8rem);
  line-height:1.02;
  margin:1rem 0 .6rem;
  color:var(--primary-strong);
  letter-spacing:-.03em;
}

.hero h2{
  margin:0 0 1.2rem;
  font-size:clamp(1.25rem, 2vw, 1.8rem);
  line-height:1.25;
  color:var(--accent);
  font-weight:700;
}

.hero p{
  font-size:1.08rem;
  color:var(--text-soft);
  max-width:64ch;
  margin:0 0 1rem;
}

.cta-row{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  margin-top:1.6rem;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:.95rem 1.4rem;
  border-radius:999px;
  font-weight:700;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  cursor:pointer;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff;
  box-shadow:0 14px 28px rgba(47,93,115,.22);
}

.btn-primary:hover{
  background:linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow:0 18px 34px rgba(47,93,115,.28);
}

.btn-secondary{
  background:rgba(255,255,255,.78);
  border-color:rgba(47,93,115,.15);
  color:var(--primary-strong);
  box-shadow:var(--shadow-sm);
}

.btn-secondary:hover{
  background:var(--surface);
  border-color:rgba(47,93,115,.24);
}

.hero-card,
.card,
.logo-panel{
  background:linear-gradient(180deg, rgba(255,255,255,.97), rgba(241,247,251,.96));
  border:1px solid rgba(24,50,68,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow-md);
}

.hero-card{
  padding:1.2rem;
  overflow:hidden;
}

.hero-card img{
  width:100%;
  max-width:440px;
  margin:0 auto;
  border-radius:18px;
}

/* Sections */
.section{
  padding:4.75rem 0;
}

.section-alt{
  background:linear-gradient(180deg, rgba(255,255,255,.52), rgba(223,238,246,.5));
  border-top:1px solid rgba(24,50,68,.04);
  border-bottom:1px solid rgba(24,50,68,.04);
}

.section-header{
  max-width:800px;
  margin:0 0 2.1rem;
}

.section-header h2{
  font-size:clamp(1.95rem, 3vw, 3.1rem);
  margin:0 0 .8rem;
  color:var(--primary-strong);
  letter-spacing:-.02em;
}

.section-header p{
  margin:0;
  color:var(--text-soft);
  font-size:1.02rem;
}

.grid-2,
.grid-3,
.grid-4{
  display:grid;
  gap:1.25rem;
}

.grid-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.grid-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.grid-4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.card{
  padding:1.55rem;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
  border-color:rgba(47,93,115,.14);
}

.card h3{
  margin:.2rem 0 .7rem;
  font-size:1.28rem;
  line-height:1.3;
  color:var(--primary-strong);
}

.card p{
  margin:0;
  color:var(--text-soft);
}

.icon{
  width:48px;
  height:48px;
  border-radius:14px;
  margin-bottom:1rem;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(216,234,243,.9), rgba(231,242,248,.96));
  border:1px solid rgba(47,93,115,.12);
  color:var(--primary);
  font-size:1.15rem;
  font-weight:700;
  box-shadow:0 8px 18px rgba(47,93,115,.08);
}

/* Split section */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.6rem;
  align-items:start;
}

.checklist{
  display:grid;
  gap:.95rem;
}

.check{
  display:flex;
  gap:.85rem;
  align-items:flex-start;
  padding:1rem 1.05rem;
  border:1px solid rgba(24,50,68,.08);
  border-radius:18px;
  background:rgba(255,255,255,.74);
  box-shadow:0 10px 20px rgba(24,50,68,.05);
}

.check strong{
  display:block;
  margin-bottom:.2rem;
  color:var(--primary-strong);
}

.check span{
  display:block;
  color:var(--text-soft);
}

.badge{
  display:inline-block;
  padding:.32rem .65rem;
  border-radius:999px;
  background:rgba(216,234,243,.95);
  color:var(--primary);
  font-size:.8rem;
  font-weight:700;
  border:1px solid rgba(47,93,115,.1);
  white-space:nowrap;
}

.stat{
  padding:1.15rem;
  border-radius:18px;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(24,50,68,.08);
  box-shadow:0 10px 22px rgba(24,50,68,.05);
}

.stat strong{
  display:block;
  font-size:1.3rem;
  margin-bottom:.35rem;
  color:var(--primary);
}

.stat span{
  color:var(--text-soft);
}

/* Packages */
.package{
  position:relative;
  overflow:hidden;
}

.package.featured{
  border-color:rgba(47,93,115,.22);
  box-shadow:var(--shadow-lg);
}

.package .price{
  font-size:2rem;
  font-weight:700;
  color:var(--primary);
  margin:.65rem 0;
}

.package ul{
  padding-left:1.15rem;
  color:var(--text-soft);
  margin:0;
}

.package li + li{
  margin-top:.5rem;
}

.ribbon{
  position:absolute;
  top:15px;
  right:-32px;
  transform:rotate(28deg);
  background:linear-gradient(135deg, var(--primary), var(--accent));
  color:#fff;
  font-weight:700;
  padding:.32rem 2.3rem;
  font-size:.78rem;
  box-shadow:0 8px 16px rgba(47,93,115,.2);
}

/* Blog */
.blog-card img{
  height:200px;
  width:100%;
  object-fit:cover;
  border-radius:16px;
  margin-bottom:1rem;
  background:linear-gradient(135deg, #d9ebf4, #f8fcfe);
}

.blog-meta{
  font-size:.85rem;
  color:var(--primary);
  margin-bottom:.45rem;
  font-weight:700;
}

/* Contact */
.contact-wrap{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:1.5rem;
}

form{
  display:grid;
  gap:1rem;
}

input,
textarea,
select{
  width:100%;
  padding:1rem 1rem;
  border-radius:16px;
  border:1px solid rgba(24,50,68,.12);
  background:#fff;
  color:var(--text);
  font:inherit;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:rgba(47,93,115,.42);
  box-shadow:0 0 0 4px rgba(137,183,207,.22);
  background:#fcfeff;
}

textarea{
  min-height:180px;
  resize:vertical;
}

.note,
.small{
  font-size:.92rem;
  color:var(--text-soft);
}

/* Footer */
.footer{
  padding:2.5rem 0;
  border-top:1px solid rgba(24,50,68,.08);
  background:linear-gradient(180deg, #eef5f9 0%, #e5eff5 100%);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:1.3rem;
}

.footer h3{
  margin-top:0;
  color:var(--primary-strong);
}

.footer p,
.footer li{
  color:var(--text-soft);
}

.footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.55rem;
}

.footer a:hover{
  color:var(--primary);
}

/* Inner pages */
.page-hero{
  padding:3.3rem 0 2.5rem;
  background:
    radial-gradient(circle at top right, rgba(137,183,207,.22), transparent 28%),
    radial-gradient(circle at left center, rgba(95,143,168,.12), transparent 30%);
}

.page-hero h1{
  font-size:clamp(2.1rem, 4vw, 3.7rem);
  margin:0 0 .8rem;
  color:var(--primary-strong);
  letter-spacing:-.02em;
}

.page-hero p{
  max-width:72ch;
  color:var(--text-soft);
}

.logo-panel{
  padding:1.2rem;
  border-radius:24px;
}

.cta-banner{
  padding:1.7rem 1.7rem;
  background:linear-gradient(135deg, rgba(216,234,243,.78), rgba(231,242,248,.95));
  border:1px solid rgba(24,50,68,.08);
  border-radius:24px;
  box-shadow:var(--shadow-md);
}

.cta-banner h2{
  color:var(--primary-strong);
}

.cta-banner p{
  color:var(--text-soft);
}

/* Tables */
table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  background:rgba(255,255,255,.85);
  border-radius:18px;
}

th,
td{
  padding:.95rem 1rem;
  text-align:left;
  border-bottom:1px solid rgba(24,50,68,.08);
  vertical-align:top;
}

th{
  color:var(--primary);
  font-weight:700;
  background:rgba(216,234,243,.35);
}

.highlight{
  color:var(--primary);
}

/* Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:3px solid rgba(95,143,168,.45);
  outline-offset:2px;
}

/* Responsive */
@media (max-width:980px){
  .hero-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .split,
  .contact-wrap,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .menu{
    display:none;
    width:100%;
    padding-bottom:.6rem;
  }

  .menu.open{
    display:flex;
    flex-direction:column;
    align-items:stretch;
  }

  .menu a{
    border-radius:14px;
  }

  .nav{
    flex-wrap:wrap;
  }

  .mobile-toggle{
    display:inline-flex;
  }

  .hero{
    padding:4.2rem 0 3.4rem;
  }

  .hero h1{
    font-size:clamp(2.2rem, 9vw, 3.4rem);
  }
}

@media (max-width:640px){
  .container{
    width:min(var(--max), 94%);
  }

  .section,
  .hero,
  .page-hero{
    padding-left:0;
    padding-right:0;
  }

  .card,
  .cta-banner,
  .hero-card{
    border-radius:18px;
  }

  .btn{
    width:100%;
  }

  .brand{
    gap:.8rem;
  }

  .brand img{
    width:96px;
  }

  .brand-title{
    font-size:1rem;
  }

  .brand-sub{
    font-size:.84rem;
  }
  
 
  
  
  
  
}