/* =============================================
   COURSE PAGE CSS — NAMESPACED UNDER .course-page
   All generic classes renamed to avoid conflict
   with header.css / footer.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

:root {
  --primary-dark: #061a4a;
  --primary-blue: #0d6efd;
  --primary-light: #eaf2ff;
  --gold: #f4a100;
  --gold-light: #ffcf66;
  --heading: #071739;
  --text: #5f6b7a;
  --white: #ffffff;
  --section-bg: #f5f8fc;
  --border: #dfe7f3;
  --green: #16a34a;
  --green-bg: #dcfce7;
}

/* =============================================
   WRAPPER — everything scoped inside .course-page
   Add class="course-page" to your main page wrapper
   ============================================= */

/* ==============================================
   HERO BANNER — .cp-banner (was .data-science)
============================================== */
.cp-banner {
  width: 100%;
  height: 700px;
  position: relative;
  background-image: url('image\\AWS.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.cp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(6,26,74,0.95),
    rgba(7,23,57,0.92),
    rgba(6,26,74,0.55)
  );
}

/* CONTAINER — was .container (CONFLICT with header) */
.cp-container {
  width: 90%;
  max-width: 1400px;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  color: white;
}

/* BREADCRUMB */
.cp-breadcrumb {
  font-size: 14px;
  color: #d8d8d8;
  margin-bottom: 20px;
}

.cp-container h1 {
  width: 60%;
  font-size: 50px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}

.cp-container h2 {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 20px;
}

/* PARAGRAPH — was .main-para */
.cp-main-para {
  width: 55%;
  font-size: 13px;
  line-height: 1.8;
  color: #e5e5e5;
}

/* RATING BOX */
.cp-rating-box {
  width: fit-content;
  background: var(--white);
  color: var(--heading);
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  padding: 16px 22px;
  border-radius: 16px;
  margin-top: 30px;
}

/* LEARNERS — was .learners (safe but renamed for clarity) */
.cp-learners {
  display: flex;
  align-items: center;
}

.cp-learners img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  margin-left: -10px;
}

.cp-learners span {
  margin-left: 12px;
  font-size: 18px;
}

/* RATING — was .rating (CONFLICT with header) */
.cp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
}

/* FEATURES — was .features (CONFLICT with header) */
.cp-features {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  margin-top: 35px;
}

/* FEATURE — was .feature (CONFLICT with header) */
.cp-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cp-feature i {
  color: var(--gold);
  font-size: 18px;
  margin-top: 5px;
}

.cp-feature p {
  font-size: 16px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* RESPONSIVE — banner */
@media(max-width:992px) {
  .cp-banner { height: auto; padding: 70px 0; }
  .cp-container h1 { width: 100%; font-size: 42px; }
  .cp-container h2 { font-size: 24px; }
  .cp-main-para { width: 100%; }
  .cp-features { width: 100%; grid-template-columns: 1fr; }
}

@media(max-width:576px) {
  .cp-container { width: 92%; }
  .cp-container h1 { font-size: 30px; }
  .cp-container h2 { font-size: 18px; }
  .cp-main-para { font-size: 15px; line-height: 1.7; }
  .cp-rating-box { gap: 15px; padding: 14px; }
  .cp-learners span { font-size: 15px; }
  .cp-rating { font-size: 15px; }
  .cp-feature p { font-size: 14px; }
}

/* ==============================================
   TAB NAVIGATION
============================================== */
.cp-course-content {
  position: relative;
  top: 30px;
  width: 100%;
  background: var(--section-bg);
  padding: 0 0 20px;
}

/* TAB CONTAINER — was .container-data-science-heading */
.cp-tab-heading {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  background: var(--primary-light);
  border-radius: 0 0 18px 18px;
  padding: 18px 25px;
  position: relative;
  top: -25px;
  z-index: 10;
}

/* TAB LIST — was .course-content-tabs */
.cp-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.cp-tabs::-webkit-scrollbar { display: none; }

.cp-tabs li { white-space: nowrap; }

.cp-tabs li a {
  text-decoration: none;
  color: var(--heading);
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
  padding-bottom: 6px;
}

.cp-tabs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--primary-blue);
  transition: 0.3s ease;
}

.cp-tabs li a:hover { color: var(--primary-blue); }
.cp-tabs li a:hover::after { width: 100%; }

.cp-tabs li:first-child a { color: var(--primary-blue); font-weight: 600; }
.cp-tabs li:first-child a::after { width: 100%; }

@media(max-width:992px) {
  .cp-tab-heading { width: 95%; padding: 15px 18px; }
  .cp-tabs { gap: 20px; }
  .cp-tabs li a { font-size: 16px; }
}

@media(max-width:576px) {
  .cp-tab-heading { border-radius: 14px; top: -15px; }
  .cp-tabs { gap: 16px; }
  .cp-tabs li a { font-size: 14px; }
}

/* ==============================================
   MAIN TWO-COLUMN LAYOUT
============================================== */
.cp-main-section {
  width: 90%;
  max-width: 1400px;
  margin: 60px auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  position: relative;
}

/* LEFT — was .left-scollable-side */
.cp-left-col {
  width: 68%;
}

/* CARD GRID — was .new-card */
.cp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD BOX — was .left-box */
.cp-left-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px;
  transition: 0.3s ease;
}

.cp-left-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(6,26,74,0.08);
}

.cp-left-box h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--heading);
}

.cp-left-box p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* RIGHT STICKY — was .right-side-fixed */
.cp-right-sticky {
  width: 32%;
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(6,26,74,0.08);
}

/* PRICE CARD TOP BUTTONS — was .price-card-top */
.cp-price-top {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

/* PRICE BTN — was .price-btn */
.cp-price-btn {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.cp-price-btn.active { background: var(--primary-blue); color: var(--white); }
.cp-price-btn.normal { background: var(--section-bg); color: var(--heading); }

.cp-right-sticky h4 {
  font-size: 13px;
  color: var(--text);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* PRICE — was .price */
.cp-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin: 10px 0 15px;
}

.cp-right-sticky h3 {
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 20px;
}

/* COURSE FEATURE — was .course-feature (safe, but renamed for consistency) */
.cp-course-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* GREEN DOT */
.cp-green-dot {
  min-width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

.cp-green-dot::before { content: "✓"; }

.cp-course-feature p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ENROLL BUTTON — was .enroll-btn */
.cp-enroll-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 12px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cp-enroll-btn:hover { background: var(--primary-dark); }

@media(max-width:992px) {
  .cp-main-section { flex-direction: column; }
  .cp-left-col, .cp-right-sticky { width: 100%; }
  .cp-right-sticky { position: relative; top: 0; }
}

@media(max-width:768px) { .cp-card-grid { grid-template-columns: 1fr; } }

@media(max-width:576px) {
  .cp-main-section { width: 94%; }
  .cp-left-box { padding: 25px; }
  .cp-price { font-size: 38px; }
}

/* ==============================================
   CORPORATE TRAINING
============================================== */
.cp-corporate {
  width: 100%;
  margin-top: 60px;
}

.cp-corporate-heading { margin-bottom: 25px; }

.cp-corporate-heading h2 {
  font-size: 42px;
  color: var(--heading);
  margin-bottom: 10px;
}

.cp-corporate-heading p {
  font-size: 17px;
  color: var(--text);
}

.cp-corporate-box {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cp-corporate-left {
  width: 58%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}

.cp-corporate-right { width: 42%; }

.cp-corporate-right img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

/* FEATURE ITEM — was .feature-item */
.cp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* FEATURE ICON — was .feature-icon */
.cp-feature-icon {
  min-width: 24px;
  height: 24px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  margin-top: 3px;
}

.cp-feature-item h3 {
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 8px;
}

.cp-feature-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

/* CTA STRIP — was .ready-to-transform-your */
.cp-cta-strip {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  padding: 28px 30px;
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cp-cta-strip-left h2 {
  font-size: 34px;
  color: var(--white);
  margin-bottom: 10px;
}

.cp-cta-strip-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* CONTACT BTN — was .contact-us-btn */
.cp-contact-btn {
  height: 52px;
  padding: 0 28px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.cp-contact-btn:hover { background: var(--gold); color: var(--heading); }

@media(max-width:992px) {
  .cp-corporate-box { flex-direction: column; }
  .cp-corporate-left, .cp-corporate-right { width: 100%; }
  .cp-cta-strip { flex-direction: column; text-align: center; }
}

@media(max-width:768px) {
  .cp-corporate-left { grid-template-columns: 1fr; }
  .cp-corporate-heading h2 { font-size: 32px; }
  .cp-cta-strip-left h2 { font-size: 26px; }
}

@media(max-width:576px) {
  .cp-corporate-box { padding: 22px; }
  .cp-feature-item h3 { font-size: 16px; }
  .cp-feature-item p { font-size: 14px; }
  .cp-corporate-right img { height: 250px; }
  .cp-contact-btn { width: 100%; }
}

/* ==============================================
   SKILLS SECTION
============================================== */
.cp-skills-section {
  width: 100%;
  margin-top: 60px;
}

.cp-skills-heading { margin-bottom: 24px; }

.cp-skills-heading h2 {
  font-size: 34px;
  line-height: 1.4;
  color: var(--heading);
  margin-bottom: 8px;
}

.cp-skills-heading p {
  font-size: 16px;
  color: var(--text);
}

/* SKILLS GRID — was .skills-grid */
.cp-skills-grid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px 32px;
}

/* SKILL BOX — was .skill-box */
.cp-skill-box {
  border-left: 4px solid var(--primary-blue);
  padding-left: 16px;
}

.cp-skill-box h3 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--heading);
  margin-bottom: 12px;
}

.cp-skill-box p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

@media(max-width:992px) {
  .cp-skills-grid { grid-template-columns: 1fr; }
  .cp-skills-heading h2 { font-size: 30px; }
}

@media(max-width:576px) {
  .cp-skills-grid { padding: 22px; }
  .cp-skills-heading h2 { font-size: 24px; }
  .cp-skills-heading p { font-size: 14px; }
  .cp-skill-box h3 { font-size: 18px; }
  .cp-skill-box p { font-size: 14px; }
}

/* ==============================================
   PROGRAM FOR SECTION
============================================== */
.cp-program-section {
  width: 100%;
  margin-top: 60px;
}

.cp-program-heading { margin-bottom: 24px; }

.cp-program-heading h2 {
  font-size: 34px;
  color: var(--heading);
  margin-bottom: 8px;
}

.cp-program-heading p {
  font-size: 16px;
  color: var(--text);
}

/* PROGRAM GRID — was .program-for-grid */
.cp-program-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 28px;
}

/* PROGRAM BOX — was .program-for-box */
.cp-program-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: 0.3s ease;
}

.cp-program-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(6,26,74,0.05);
}

/* PROGRAM CHECK — was .program-check */
.cp-program-check {
  width: 20px;
  height: 20px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 14px;
}

.cp-program-box h3 {
  font-size: 18px;
  line-height: 1.5;
  color: var(--heading);
}

.cp-program-bottom p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}

@media(max-width:992px) {
  .cp-program-grid { grid-template-columns: repeat(2,1fr); }
  .cp-program-heading h2 { font-size: 30px; }
}

@media(max-width:768px) { .cp-program-grid { grid-template-columns: 1fr; } }

@media(max-width:576px) {
  .cp-program-heading h2 { font-size: 24px; }
  .cp-program-heading p { font-size: 14px; }
  .cp-program-box { padding: 18px; }
  .cp-program-box h3 { font-size: 16px; }
  .cp-program-bottom p { font-size: 14px; }
}

/* ==============================================
   ROADMAP SECTION
============================================== */
.cp-roadmap-section {
  width: 100%;
  margin-top: 70px;
}

.cp-roadmap-heading { margin-bottom: 25px; }

.cp-roadmap-heading h2 {
  font-size: 34px;
  line-height: 1.4;
  color: var(--heading);
  margin-bottom: 8px;
}

.cp-roadmap-heading p {
  font-size: 16px;
  color: var(--text);
}

.cp-roadmap-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 35px;
}

.cp-roadmap-image {
  width: 100%;
  margin-bottom: 35px;
}

.cp-roadmap-image img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.cp-roadmap-content h3 {
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 14px;
}

.cp-roadmap-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
}

.cp-roadmap-progress {
  width: 100%;
  height: 8px;
  background: var(--border);
  border-radius: 50px;
  margin-top: 28px;
  overflow: hidden;
}

.cp-roadmap-progress-fill {
  width: 10%;
  height: 100%;
  background: var(--gold);
  border-radius: 50px;
}

@media(max-width:992px) { .cp-roadmap-heading h2 { font-size: 30px; } }

@media(max-width:576px) {
  .cp-roadmap-box { padding: 22px; }
  .cp-roadmap-heading h2 { font-size: 24px; }
  .cp-roadmap-heading p { font-size: 14px; }
  .cp-roadmap-content h3 { font-size: 20px; }
  .cp-roadmap-content p { font-size: 14px; }
}

/* ==============================================
   ELIGIBILITY SECTION
============================================== */
.cp-eligibility-section {
  width: 100%;
  margin-top: 60px;
}

.cp-eligibility-heading { margin-bottom: 20px; }

.cp-eligibility-heading h2 {
  font-size: 30px;
  line-height: 1.4;
  color: var(--heading);
  margin-bottom: 6px;
}

.cp-eligibility-heading p {
  font-size: 15px;
  color: var(--text);
}

.cp-eligibility-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px;
}

.cp-eligibility-top-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--heading);
  margin-bottom: 22px;
}

.cp-eligibility-inner {
  background: var(--primary-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}

.cp-eligibility-inner h3 {
  font-size: 18px;
  color: var(--heading);
  margin-bottom: 22px;
}

.cp-eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.cp-eligibility-item:last-child { margin-bottom: 0; }

.cp-eligibility-check {
  min-width: 22px;
  height: 22px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  margin-top: 2px;
}

.cp-eligibility-item h4 {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 6px;
}

.cp-eligibility-item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

@media(max-width:768px) {
  .cp-eligibility-heading h2 { font-size: 24px; }
  .cp-eligibility-box { padding: 20px; }
  .cp-eligibility-inner { padding: 18px; }
}

@media(max-width:576px) {
  .cp-eligibility-heading h2 { font-size: 22px; }
  .cp-eligibility-heading p { font-size: 13px; }
  .cp-eligibility-top-text { font-size: 14px; }
  .cp-eligibility-inner h3 { font-size: 16px; }
  .cp-eligibility-item h4 { font-size: 15px; }
  .cp-eligibility-item p { font-size: 13px; }
}

/* ==============================================
   MODULES / ACCORDION
============================================== */
.cp-modules-section {
  width: 100%;
  margin-top: 60px;
}

.cp-modules-heading { margin-bottom: 24px; }

.cp-modules-heading h2 {
  font-size: 28px;
  color: var(--heading);
  margin-bottom: 6px;
}

.cp-modules-heading p {
  font-size: 14px;
  color: var(--text);
}

.cp-accordion {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.cp-module-item {
  border-bottom: 1px solid var(--border);
}

.cp-module-item:last-child { border-bottom: none; }

.cp-module-header {
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.3s ease;
}

.cp-module-header:hover { background: var(--section-bg); }

.cp-module-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cp-module-badge {
  background: var(--primary-light);
  color: var(--primary-blue);
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
}

.cp-module-header h3 {
  font-size: 17px;
  color: var(--heading);
  font-weight: 600;
}

.cp-module-arrow {
  font-size: 13px;
  color: var(--text);
  transition: transform 0.3s ease;
}

.cp-module-item.active .cp-module-arrow { transform: rotate(180deg); }

.cp-module-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.cp-module-item.active .cp-module-content {
  max-height: 1000px;
  padding: 0 22px 22px 22px;
}

.cp-lesson {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cp-lesson:last-child { border-bottom: none; }

.cp-lesson h4 {
  font-size: 16px;
  color: var(--heading);
  margin-bottom: 8px;
}

.cp-lesson p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text);
}

@media(max-width:768px) {
  .cp-module-header { padding: 18px; }
  .cp-module-left { gap: 10px; }
  .cp-module-header h3 { font-size: 15px; }
}

@media(max-width:576px) {
  .cp-modules-heading h2 { font-size: 24px; }
  .cp-module-left { flex-direction: column; align-items: flex-start; }
  .cp-module-badge { font-size: 12px; }
  .cp-lesson h4 { font-size: 15px; }
  .cp-lesson p { font-size: 13px; }
}

/* ==============================================
   FINAL CTA SECTION
============================================== */
.cp-final-cta {
  width: 100%;
  margin-top: 70px;
  padding: 70px 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
}

.cp-final-cta-inner {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.cp-final-cta-inner h2 {
  font-size: 42px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 18px;
}

.cp-final-cta-inner p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  max-width: 850px;
  margin: auto;
}

/* CTA BUTTONS — was .cta-buttons (CONFLICT with header) */
.cp-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.cp-cta-buttons button {
  height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

/* PRIMARY BTN — was .cta-primary */
.cp-btn-primary {
  background: var(--gold);
  color: var(--heading);
}

/* SECONDARY BTN — was .cta-secondary */
.cp-btn-secondary {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: var(--white);
  backdrop-filter: blur(8px);
}

.cp-cta-buttons button:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}

.cp-final-cta-inner p:last-child {
  margin-top: 30px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

@media(max-width:768px) {
  .cp-final-cta-inner h2 { font-size: 32px; }
  .cp-final-cta-inner p { font-size: 15px; }
  .cp-cta-buttons { flex-direction: column; }
  .cp-cta-buttons button { width: 100%; }
}

@media(max-width:576px) {
  .cp-final-cta { padding: 55px 18px; }
  .cp-final-cta-inner h2 { font-size: 26px; }
  .cp-final-cta-inner p { font-size: 14px; }
  .cp-cta-buttons button { font-size: 14px; height: 52px; }
}

/* ==============================================
   GLOBAL SAFETY
============================================== */
.cp-container img,
.cp-main-section img,
.cp-final-cta img {
  max-width: 100%;
  height: auto;
}