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

:root {
  --primary: #1f6f8b;
  --primary-dark: #144e63;
  --accent: #c9a227;
  --green-tag: #3fbf7f;
  --light-bg: #f5f7f6;
  --card-bg: #ffffff;
  --text-dark: #1a1a1a;
  --text-medium: #555;
  --text-light: #888;
  --btn-primary: #c9a227;
  --btn-hover: #a8841f;
  --border: #e6e6e6;
  --shadow: rgba(0,0,0,0.08);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--btn-primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(201,162,39,0.35);
}
.btn-primary:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(201,162,39,0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(31,111,139,0.3);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* ── SECTION HEADING ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,111,139,0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.badge-green { background: rgba(63,191,127,0.12); color: var(--green-tag); }
.badge-blue  { background: rgba(31,111,139,0.12); color: var(--primary); }
.badge-gold  { background: rgba(201,162,39,0.12);  color: var(--accent); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 60px 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #2a8fab 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a { opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: 0.5; }

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

@media(max-width:1024px){ .grid-4{grid-template-columns:repeat(2,1fr);} }
@media(max-width:768px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
  .section-sub{margin-bottom:32px;}
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  background: var(--primary-dark);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: #fff;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item p { font-size: 0.88rem; opacity: 0.8; }
@media(max-width:768px){ .stats-row{grid-template-columns:repeat(2,1fr);} }

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(201,162,39,0.4);
  z-index: 999;
  transition: var(--transition);
}
#scrollTop:hover { background: var(--btn-hover); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* ── SECTION PADDING ── */
.section { padding: 90px 0; }
.section-alt { padding: 90px 0; background: var(--light-bg); }

/* ── TWO COLUMN CONTENT + IMAGE ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

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

  /* Image moves to TOP, content goes BELOW on mobile */
  .two-col-img {
    order: -1;
  }
}
