/* ========== SHARED STYLES - CCB AGENCY ========== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Fraunces:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  --coral: #FF6B5B;
  --yellow: #FFD166;
  --mint: #06D6A0;
  --navy: #0D1B2A;
  --lavender: #C9B8FF;
  --white: #FAFAF7;
  --card-bg: #ffffff;
  --text: #0D1B2A;
  --soft: #F5F0FF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5%;
  background: rgba(250,250,247,0.95); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--navy);
}
.logo { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 900; color: var(--navy); letter-spacing: -1px; text-decoration: none; }
.logo span { color: var(--coral); }
nav ul { list-style: none; display: flex; gap: 1.5rem; align-items: center; }
nav ul a { text-decoration: none; color: var(--navy); font-weight: 700; font-size: 0.9rem; transition: color 0.2s; }
nav ul a:hover { color: var(--coral); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 2px solid var(--navy); border-radius: 12px;
  padding: 0.5rem; min-width: 220px; box-shadow: 4px 4px 0 var(--navy); z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 0.5rem 0.8rem; border-radius: 8px; font-size: 0.85rem; }
.dropdown-menu a:hover { background: var(--soft); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 0.55rem 1.3rem; border-radius: 50px; border: 2px solid var(--navy); transition: all 0.2s !important; }
.nav-cta:hover { background: var(--coral) !important; border-color: var(--coral) !important; }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: all 0.3s; display: block; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99; padding: 2rem 5%;
  flex-direction: column; gap: 1rem; overflow-y: auto;
  border-top: 2px solid var(--navy);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 700; color: var(--navy); text-decoration: none; padding: 0.8rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.mobile-menu a:hover { color: var(--coral); }

/* FOOTER */
footer { background: var(--navy); padding: 3rem 5% 2rem; border-top: 2px solid rgba(255,255,255,0.1); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand .logo { color: white; margin-bottom: 0.8rem; display: block; }
.footer-brand .logo span { color: var(--coral); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 600; line-height: 1.6; }
.footer-col h4 { color: white; font-weight: 800; margin-bottom: 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; font-weight: 600; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--coral); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; font-weight: 600; margin-bottom: 0.4rem; }
.footer-contact a { color: var(--coral); text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; font-weight: 600; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.8rem; text-decoration: none; margin-left: 1rem; }
.footer-links a:hover { color: var(--coral); }
.social-links { display: flex; gap: 0.8rem; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; font-size: 0.85rem; font-weight: 800; transition: all 0.2s; }
.social-links a:hover { background: var(--coral); border-color: var(--coral); }

/* SHARED COMPONENTS */
.section-tag { display: inline-block; background: var(--soft); color: var(--coral); font-weight: 800; font-size: 0.78rem; padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 0.8rem; letter-spacing: 1px; text-transform: uppercase; border: 1.5px solid var(--lavender); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-family: 'Fraunces', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; color: var(--navy); line-height: 1.2; }
.section-header h2 em { color: var(--coral); font-style: italic; }
.section-header p { color: #666; font-size: 1rem; font-weight: 600; margin-top: 0.8rem; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.btn-primary { background: var(--coral); color: white; padding: 0.85rem 2rem; border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none; border: 2px solid var(--coral); transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-primary:hover { background: transparent; color: var(--coral); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); padding: 0.85rem 2rem; border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none; border: 2px solid var(--navy); transition: all 0.25s; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); color: white;
  padding: 1.2rem 5%; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  border-top: 2px solid var(--coral); transform: translateY(0); transition: transform 0.4s;
}
#cookie-banner.hidden { transform: translateY(100%); }
#cookie-banner p { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.8); flex: 1; line-height: 1.5; }
#cookie-banner a { color: var(--coral); }
.cookie-btns { display: flex; gap: 0.8rem; flex-shrink: 0; }
.btn-accept { background: var(--mint); color: var(--navy); padding: 0.5rem 1.2rem; border-radius: 50px; font-weight: 800; font-size: 0.85rem; border: none; cursor: pointer; }
.btn-refuse { background: transparent; color: rgba(255,255,255,0.6); padding: 0.5rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; }
.btn-accept:hover { opacity: 0.9; }
.btn-refuse:hover { color: white; border-color: white; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 7rem 5% 3.5rem; background: var(--navy); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,91,0.2) 0%, transparent 70%); top: -100px; right: -100px; border-radius: 50%; }
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 { font-family: 'Fraunces', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; color: white; line-height: 1.15; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--yellow); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; font-weight: 600; line-height: 1.7; max-width: 540px; }

/* BREADCRUMB */
.breadcrumb { padding: 0.8rem 5%; background: var(--soft); border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.82rem; font-weight: 700; }
.breadcrumb a { color: var(--coral); text-decoration: none; }
.breadcrumb span { color: #999; margin: 0 0.4rem; }

/* CTA SECTION */
.cta-section { margin: 0 5% 5rem; background: var(--coral); border-radius: 24px; padding: 3.5rem; text-align: center; border: 2px solid var(--navy); position: relative; overflow: hidden; }
.cta-section::before { content: '✦'; position: absolute; font-size: 7rem; color: rgba(255,255,255,0.08); top: -20px; left: 20px; }
.cta-section h2 { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: white; margin-bottom: 0.8rem; position: relative; z-index: 2; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1rem; font-weight: 600; margin-bottom: 1.8rem; position: relative; z-index: 2; }
.btn-white { background: white; color: var(--coral); padding: 0.85rem 2.2rem; border-radius: 50px; font-weight: 800; font-size: 0.95rem; text-decoration: none; border: 2px solid white; transition: all 0.25s; display: inline-block; position: relative; z-index: 2; }
.btn-white:hover { background: var(--navy); border-color: var(--navy); color: white; transform: translateY(-3px); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== TABLET (max 900px) ===== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav ul { display: none; }
  .hamburger { display: flex; }
  .page-hero { padding: 6rem 5% 2.5rem; }
  .page-hero h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
}

/* ===== MOBILE (max 600px) ===== */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-section { padding: 2rem 1.5rem; margin: 0 4% 4rem; }
  .page-hero { padding: 5.5rem 5% 2rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .page-hero p { font-size: 0.9rem; }
  .btn-primary, .btn-outline, .btn-white { padding: 0.75rem 1.4rem; font-size: 0.88rem; }
  .section-header h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  #cookie-banner { flex-direction: column; gap: 1rem; padding: 1rem 4%; }
  #cookie-banner p { font-size: 0.8rem; }
  .cookie-btns { width: 100%; justify-content: center; display: flex; }
}
