/* ===== ROOT VARIABLES ===== */
:root {
  --ocean: #0077b6;
  --ocean-light: #00b4d8;
  --ocean-deep: #023e8a;
  --sand: #f4e4c1;
  --sand-dark: #e8c87a;
  --palm: #2d6a4f;
  --palm-light: #52b788;
  --sunset: #f77f00;
  --sunset-red: #d62828;
  --white: #ffffff;
  --off-white: #fafaf8;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --card-bg: #ffffff;
  --shadow-soft: 0 4px 24px rgba(0,119,182,0.10);
  --shadow-hover: 0 12px 40px rgba(0,119,182,0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text-dark);
  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; }
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.25; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sunset);
  background: rgba(247,127,0,0.10);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-title span { color: var(--ocean); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}
.text-center { text-align: center; }

/* ===== LAYOUT ===== */
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
.section { padding: 80px 0; }
.section-alt { background: var(--sand); }

/* ===== HEADER / NAV ===== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.2rem 0;
}
#header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.7rem 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
#header.scrolled .logo { color: var(--ocean-deep); }
.logo-icon { font-size: 1.8rem; }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}
#header.scrolled .nav-links a { color: var(--text-dark); }
.nav-links a:hover { background: rgba(255,255,255,0.18); color: var(--white); }
#header.scrolled .nav-links a:hover { background: var(--ocean); color: var(--white); }
.nav-cta {
  background: var(--sunset) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--sunset-red) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 0.4rem;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--text-dark); }
.mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 0.75rem 1rem;
  font-weight: 500; color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--ocean); color: var(--white); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #023e8a 0%, #0077b6 40%, #00b4d8 70%, #2d6a4f 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(247,127,0,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0,180,216,0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(2,62,138,0.5) 0%, transparent 70%);
}
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0; overflow: hidden; line-height: 0;
}
.hero-waves svg { display: block; width: 100%; height: 80px; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  padding: 2rem 1rem;
  animation: heroFadeIn 1s ease-out;
}
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: heroFadeIn 1s ease-out 0.2s both;
}
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 900; line-height: 1.05;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
  margin-bottom: 1.25rem;
  animation: heroFadeIn 1s ease-out 0.4s both;
}
.hero h1 .highlight {
  background: linear-gradient(90deg, var(--sand-dark), var(--sunset));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.15rem; opacity: 0.9; max-width: 540px; margin: 0 auto 2.5rem;
  animation: heroFadeIn 1s ease-out 0.6s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: heroFadeIn 1s ease-out 0.8s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); cursor: pointer; border: none;
}
.btn-primary {
  background: var(--sunset); color: var(--white);
  box-shadow: 0 4px 20px rgba(247,127,0,0.4);
}
.btn-primary:hover { background: var(--sunset-red); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(247,127,0,0.5); }
.btn-outline {
  background: rgba(255,255,255,0.15); color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-outline:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 2.5rem; justify-content: center; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  animation: heroFadeIn 1s ease-out 1s both;
}
.hero-stat .num { font-size: 2rem; font-weight: 900; font-family: var(--font-display); }
.hero-stat .label { font-size: 0.8rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== CARDS ===== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ocean); background: rgba(0,119,182,0.1);
  padding: 0.2rem 0.7rem; border-radius: 50px; margin-bottom: 0.6rem;
}
.card-title { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.card-desc { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 1rem; }
.card-link {
  font-size: 0.88rem; font-weight: 600; color: var(--ocean);
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: var(--transition);
}
.card-link:hover { color: var(--ocean-deep); gap: 0.6rem; }

/* ===== GRID ===== */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }

/* ===== DESTINATION HERO CARDS ===== */
.dest-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 340px; cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-card:hover img { transform: scale(1.05); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(2,62,138,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem;
  color: var(--white);
}
.dest-overlay h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.dest-overlay p { font-size: 0.88rem; opacity: 0.85; }
.dest-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: var(--sunset); color: var(--white);
  font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.8rem;
  border-radius: 50px;
}

/* ===== ACTIVITIES ===== */
.activity-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid transparent;
}
.activity-card:hover { border-color: var(--ocean-light); transform: translateY(-4px); }
.activity-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.activity-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.activity-card p { font-size: 0.88rem; color: var(--text-mid); }

/* ===== BLOG ===== */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-img { height: 200px; }
.blog-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.5rem;
}
.blog-meta span { display: flex; align-items: center; gap: 0.25rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem; line-height: 1; color: var(--ocean-light);
  opacity: 0.3; position: absolute; top: 0.5rem; left: 1rem;
  font-family: var(--font-display);
}
.stars { color: var(--sand-dark); font-size: 0.9rem; margin-bottom: 0.75rem; }
.testimonial-text { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--palm-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-place { font-size: 0.8rem; color: var(--text-light); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
  color: var(--white); text-align: center; padding: 70px 0;
}
.newsletter-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-section p { opacity: 0.85; margin-bottom: 2rem; }
.newsletter-form {
  display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1; min-width: 220px; padding: 0.85rem 1.25rem;
  border: none; border-radius: 50px;
  font-size: 0.95rem; outline: none;
  font-family: var(--font-body);
}
.newsletter-form button {
  padding: 0.85rem 1.75rem; border-radius: 50px;
  background: var(--sunset); color: var(--white);
  border: none; font-weight: 700; font-size: 0.95rem;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-body);
}
.newsletter-form button:hover { background: var(--sunset-red); transform: translateY(-2px); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 3rem; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--ocean), var(--ocean-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-item-text h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-item-text p { font-size: 0.9rem; color: var(--text-mid); }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.45rem; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid #e0e0f0; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-family: var(--font-body);
  outline: none; transition: border-color var(--transition);
  background: var(--off-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--ocean); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.btn-ocean { background: var(--ocean); color: var(--white); box-shadow: 0 4px 20px rgba(0,119,182,0.3); }
.btn-ocean:hover { background: var(--ocean-deep); transform: translateY(-2px); }

/* ===== INFO PAGES (Privacy, Terms, etc) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
  color: var(--white); padding: 120px 0 60px; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.85; max-width: 500px; margin: 0 auto; }
.content-prose { max-width: 820px; margin: 0 auto; padding: 60px 0; }
.content-prose h2 { font-size: 1.55rem; margin: 2.5rem 0 0.75rem; color: var(--text-dark); }
.content-prose h3 { font-size: 1.15rem; margin: 1.75rem 0 0.5rem; color: var(--text-dark); }
.content-prose p { color: var(--text-mid); margin-bottom: 1rem; }
.content-prose ul { padding-left: 1.5rem; list-style: disc; color: var(--text-mid); margin-bottom: 1rem; }
.content-prose ul li { margin-bottom: 0.4rem; }
.last-updated {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,119,182,0.08); color: var(--ocean);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 50px; margin-bottom: 2rem;
}

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img-wrap { position: relative; border-radius: var(--radius); overflow: hidden; }
.about-img-wrap img { width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius); }
.about-badge-float {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.about-badge-float .big { font-size: 1.8rem; font-weight: 900; color: var(--ocean); font-family: var(--font-display); }
.about-badge-float .small { font-size: 0.78rem; color: var(--text-mid); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.about-feature { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-feature-icon { font-size: 1.5rem; flex-shrink: 0; }
.about-feature h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.83rem; color: var(--text-mid); }

/* ===== THINGS TO DO ===== */
.todo-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; justify-content: center; }
.tab-btn {
  padding: 0.6rem 1.3rem; border-radius: 50px;
  border: 2px solid #e0e0f0; background: var(--white);
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  color: var(--text-mid); transition: var(--transition);
  font-family: var(--font-body);
}
.tab-btn.active, .tab-btn:hover { background: var(--ocean); border-color: var(--ocean); color: var(--white); }
.tab-content { display: none; }
.tab-content.active { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }

/* ===== BLOG LIST ===== */
.blog-list-hero {
  background: linear-gradient(135deg, var(--palm), var(--palm-light));
  color: var(--white); padding: 120px 0 60px; text-align: center;
}
.blog-list-hero h1 { color: var(--white); }
.blog-search {
  display: flex; gap: 0.75rem; max-width: 500px; margin: 2rem auto 0; flex-wrap: wrap; justify-content: center;
}
.blog-search input {
  flex: 1; min-width: 240px; padding: 0.8rem 1.25rem;
  border: none; border-radius: 50px; font-size: 0.95rem;
  outline: none; font-family: var(--font-body);
}
.blog-search button {
  padding: 0.8rem 1.5rem; border-radius: 50px;
  background: var(--sunset); color: var(--white);
  border: none; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: var(--transition);
}
.blog-search button:hover { background: var(--sunset-red); }
.blog-categories { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.cat-tag {
  padding: 0.4rem 1rem; border-radius: 50px;
  background: var(--white); border: 1.5px solid #e0e0f0;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  color: var(--text-mid); transition: var(--transition);
}
.cat-tag:hover, .cat-tag.active { background: var(--ocean); border-color: var(--ocean); color: var(--white); }
.blog-featured { display: grid; grid-template-columns: 1.5fr 1fr; gap: 1.75rem; margin-bottom: 2.5rem; }
.blog-featured-main .card-img { height: 320px; }
.blog-side-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.blog-side-cards .card-img { height: 140px; }
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 3rem; align-items: center; }
.page-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid #e0e0f0; background: var(--white);
  font-weight: 600; cursor: pointer; font-family: var(--font-body);
  color: var(--text-mid); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.page-btn.active, .page-btn:hover { background: var(--ocean); border-color: var(--ocean); color: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; margin-bottom: 1.25rem; line-height: 1.8; }
.social-links { display: flex; gap: 0.6rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.social-link:hover { background: var(--ocean); transform: translateY(-2px); }
.footer-col h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; opacity: 0.7; transition: var(--transition); }
.footer-col ul a:hover { opacity: 1; color: var(--ocean-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0; display: flex;
  align-items: center; justify-content: space-between;
  font-size: 0.85rem; opacity: 0.6; flex-wrap: wrap; gap: 0.5rem;
}

/* ===== ADSENSE PLACEHOLDER ===== */
.ad-slot {
  background: #f0f0f0; border: 1px dashed #ccc;
  border-radius: var(--radius-sm); text-align: center;
  padding: 1.5rem; color: #999; font-size: 0.85rem;
  margin: 2rem 0;
}
.ad-slot-banner { min-height: 90px; display: flex; align-items: center; justify-content: center; }
.ad-slot-square { min-height: 250px; display: flex; align-items: center; justify-content: center; }

/* ===== SCROLL TO TOP ===== */
#scrollTop {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ocean); color: var(--white);
  border: none; cursor: pointer; font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,119,182,0.4);
  transition: var(--transition);
  display: none; align-items: center; justify-content: center;
  z-index: 999;
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { background: var(--ocean-deep); transform: translateY(-3px); }

/* ===== UTILITY ===== */
.badge-success { background: rgba(82,183,136,0.15); color: var(--palm); padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, #e0e0f0, transparent); margin: 3rem 0; }
.alert { padding: 1rem 1.25rem; border-radius: var(--radius-sm); margin-bottom: 1rem; font-size: 0.9rem; }
.alert-success { background: rgba(82,183,136,0.12); color: var(--palm); border: 1px solid rgba(82,183,136,0.3); }
.alert-error { background: rgba(214,40,40,0.1); color: var(--sunset-red); border: 1px solid rgba(214,40,40,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img-wrap img { height: 320px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-side-cards { flex-direction: row; }
  .blog-side-cards .card-img { height: 180px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 55px 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-side-cards { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) { grid-column: span 1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
