/* =========================================
   CITYLIFE-STYLE DESIGN SYSTEM (UPGRADED)
========================================= */

:root {

  /* 🔴 PRIMARY (Brand) */
  --primary: #DB0032;
  --primary-dark: #B80028;
  --primary-light: #FF4D6D;

  /* 🟡 CTA (Conversion) */
  --cta: #FFC152;
  --cta-hover: #FFB703;

  /* 🔵 STRUCTURE */
  --secondary: #1D3557;

  /* 🌿 ACCENT */
  --accent: #2EC4B6;

  /* ⚪ BACKGROUND */
  --bg: #FFFFFF;
  --bg-soft: #F6F7F9;
  --bg-alt: #F1F3F6;

  /* 📝 TEXT */
  --text: #1F2933;
  --text-soft: #6B7280;
  --text-faded: #9CA3AF;

  /* UI */
  --border: #E6E8EC;

  /* 🚨 URGENCY */
  --urgent: #FF2D55;

  /* TYPOGRAPHY */
  --font: "Inter", "Poppins", sans-serif;
  --font-display: "Georgia", serif;

  --h1: 46px;
  --h2: 32px;
  --h3: 22px;
  --text-md: 16px;
  --text-sm: 14px;

  /* SPACING */
  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;

  /* SHADOW */
  --shadow-sm: 0 6px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 12px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  /* BORDER RADIUS */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;

  /* TRANSITION */
  --ease: all 0.25s ease;
}

/* =========================================
   GLOBAL
========================================= */

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-soft);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* =========================================
   CONTAINER
========================================= */

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 var(--s5);
}

/* =========================================
   TYPOGRAPHY
========================================= */

h1 {
  font-size: var(--h1);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

h2 {
  font-size: var(--h2);
  font-weight: 600;
  margin-bottom: var(--s4);
}

h3 {
  font-size: var(--h3);
  font-weight: 600;
}

/* =========================================
   HERO
========================================= */

.ccp-hero-card {
  text-align: center;
  padding: var(--s8) var(--s4);
  max-width: 900px;
  margin: auto;
}

.ccp-hero-sub {
  font-size: 18px;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 700px;
  margin: auto;
}

/* =========================================
   GRID
========================================= */

.ccp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--s6);
  padding: var(--s7) var(--s4);
  max-width: 1200px;
  margin: auto;
}

/* =========================================
   CARD
========================================= */

.ccp-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.ccp-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* IMAGE */
.ccp-image {
  height: 190px;
  overflow: hidden;
  position: relative;
}

.ccp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.ccp-card:hover .ccp-image img {
  transform: scale(1.08);
}

/* BADGE */
.ccp-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--cta), #FF9F1C);
  color: #1D3557;
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
}

/* LOGO */
.ccp-logo {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 1px solid #000; /* ✅ black border */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT */
.ccp-content {
  padding: var(--s7) var(--s4) var(--s5);
  text-align: center;
}

.ccp-title {
  font-size: 18px;
  font-weight: 700;
}

.ccp-offer {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin: var(--s2) 0;
}

.ccp-content p {
  font-size: var(--text-sm);
  color: var(--text-soft);
}

/* URGENCY */
.ccp-urgency {
  font-size: 12px;
  font-weight: 700;
  color: var(--urgent);
}

/* =========================================
   CTA BUTTON
========================================= */
.ccp-card {
  position: relative;
  overflow: visible; /* IMPORTANT: allows button to float outside */
}

.ccp-more-info {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: var(--cta);
  color: #1D3557;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(255,193,82,0.35);
  transition: var(--ease);
}

.ccp-more-info:hover {
  background: var(--cta-hover);
  transform: translateX(-50%) scale(1.05);
}

.ccp-card:hover .ccp-more-info {
  bottom: -22px;
}

/* =========================================
   SECTION TITLES
========================================= */

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.section-sub {
  text-align: center;
  font-size: 16px;
  color: var(--text-soft);
  max-width: 700px;
  margin: auto;
}

/* =========================================
   ALT SECTION BACKGROUND (NEW)
========================================= */

.section-alt {
  background: var(--bg-alt);
  padding: var(--s7) 0;
}

/* =========================================
   SEPARATOR
========================================= */

.ccp-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.15), transparent);
  margin: var(--s7) 0;
}

/* =========================================
   STICKY MENU
========================================= */

.ccp-sticky-menu {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--s2);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: var(--s3) var(--s4);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

.ccp-sticky-menu a {
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}

.ccp-sticky-menu a.active {
  background: var(--primary);
  color: #fff;
}



/* HERO EMPHASIS (NEW) */

.ccp-hero-title
{
  background: var(--primary);
  box-shadow: var(--shadow-md);
  color: var(--cta);
  padding: var(--s5);
  border-radius: var(--radius-md);
  display: block;
}

.ccp-highlight {
  color: #FFFFFF;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.ccp-hero-btn {
  position: relative;
  bottom: auto;
  margin-top: 20px;
  display: inline-block;
}

/* TRUST SECTION (CLEAN DESIGN SYSTEM VERSION) */

.ccp-trust {
    
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));

  max-width: 100%;
  margin: auto;
  padding: var(--s7) var(--s5);
  background: var(--bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  z-index: 2;
}

/* TITLE */
.ccp-trust .ccp-section-title {
  font-size: var(--h2);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: var(--s4);
}

/* TEXT */
.ccp-trust p {
  font-size: 15px;
  line-height: 28px;
  color: var(--text-soft);
  max-width: 800px;
  margin: 0 auto var(--s4);
}

/* MUTED LINE */
.ccp-trust .ccp-muted {
  font-size: 14px;
  color: var(--text-faded);
}

/* EMAIL EMPHASIS */
.ccp-trust strong {
  color: var(--primary);
}

.ccp-lang-floating {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.ccp-lang-btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
}

.ccp-lang-dropdown {
    display: none;
    flex-direction: column;
    margin-top: 8px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ccp-lang-dropdown.open {
    display: flex;
}

.ccp-lang-dropdown a {
    padding: 10px 15px;
    text-decoration: none;
    color: #111;
    transition: 0.2s;
}

.ccp-lang-dropdown a:hover {
    background: #f5f5f5;
}

.ccp-venue {
  font-weight: 600;
  color: #111;
  margin: 4px 0 2px;
}

.ccp-address {
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
}