/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
  --primary-blue:#0057B8;
  --secondary-cyan:#22B8F0;
  --accent-pink:#FF1493;
  --dark:#0a1931;
  --light:#f7f9fc;
  --white:#ffffff;
  --text:#333333;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
  --radius:18px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  color:var(--text);
  overflow-x:hidden;
}

.container{
  width:90%;
  max-width:1300px;
  margin:auto;
}

/* ===== HEADER ===== */

header{
  position:fixed;
  width:100%;
  top:0;
  left:0;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(10px);
  z-index:999;
  box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
}

.logo img{
  height:60px;
}

.nav-links{
  display:flex;
  gap:30px;
  list-style:none;
}

.nav-links a{
  text-decoration:none;
  color:var(--dark);
  font-weight:500;
  transition:.3s;
}

.nav-links a:hover{
  color:var(--accent-pink);
}

.cta-btn{
  background:linear-gradient(
    135deg,
    var(--accent-pink),
    #ff4ab5
  );
  color:white;
  padding:14px 24px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.cta-btn:hover{
  transform:translateY(-3px);
}

/* ===== HERO ===== */

.hero{
  padding-top:130px;
  min-height:100vh;
  background:linear-gradient(
      rgba(0,87,184,.90),
      rgba(34,184,240,.85)
    ),
    url('../images/hero-banner.jpg');
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
}

.hero-content{
  color:white;
  max-width:650px;
}

.hero h1{
  font-size:58px;
  line-height:1.1;
  margin-bottom:20px;
}

.hero p{
  font-size:20px;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.secondary-btn{
  border:2px solid white;
  color:white;
  padding:14px 24px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
}

.trust-bar{
  background:white;
  padding:30px 0;
  box-shadow:var(--shadow);
}

.trust-items{
  display:flex;
  justify-content:space-between;
  text-align:center;
}

.trust-item h3{
  color:var(--primary-blue);
}

/* ===== SECTION ===== */

section{
  padding:100px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title h2{
  font-size:42px;
  color:var(--dark);
}

.section-title p{
  color:#666;
  margin-top:10px;
}

/* ===== PLAN CARDS ===== */

.plan-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.plan-card{
  background:white;
  border-radius:var(--radius);
  padding:35px;
  box-shadow:var(--shadow);
  transition:.3s;
  border-top:5px solid var(--secondary-cyan);
}

.plan-card:hover{
  transform:translateY(-10px);
}

.plan-card.popular{
  border-top:5px solid var(--accent-pink);
}

.plan-card h3{
  color:var(--primary-blue);
  margin-bottom:15px;
}

.price{
  font-size:40px;
  font-weight:700;
  color:var(--accent-pink);
  margin-bottom:20px;
}

.plan-card ul{
  list-style:none;
  margin-bottom:25px;
}

.plan-card ul li{
  margin-bottom:12px;
}

/* ===== GALLERY ===== */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-grid img{
  width:100%;
  border-radius:18px;
  transition:.3s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* ===== FOOTER ===== */

footer{
  background:var(--dark);
  color:white;
  padding:80px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
}

.footer-grid h3{
  margin-bottom:20px;
}

.footer-grid a{
  display:block;
  color:#ddd;
  text-decoration:none;
  margin-bottom:10px;
}

.footer-bottom{
  text-align:center;
  margin-top:50px;
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:25px;
}