.elementor-285 .elementor-element.elementor-element-1970f81{padding:0px 0px 0px 0px;}.elementor-285 .elementor-element.elementor-element-7121f7b{padding:0px 0px 0px 0px;}.elementor-285 .elementor-element.elementor-element-f39cdd2{padding:0px 0px 0px 0px;}.elementor-285 .elementor-element.elementor-element-fe37f40{padding:0px 0px 0px 0px;}.elementor-285 .elementor-element.elementor-element-3b2c979{padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-1970f81 *//* ==========================================================================
   Base Setup & Core Theme Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bg-black: #080808;
    --card-dark: #121212;
    --card-border: rgba(255, 255, 255, 0.1);
    --orange: #ff6a00;
    --orange-hover: #e05d00;
    --cyan: #00d2ff;
    --green: #22c55e;
    --text-muted: #9e9e9e;
}

body {
    background-color: var(--bg-black);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.max-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    background-color: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-call {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-orange {
    background-color: var(--orange);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-orange:hover { background-color: var(--orange-hover); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.12) 0%, rgba(8, 8, 8, 0.95) 70%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--orange);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.highlight-orange { color: var(--orange); }
.highlight-cyan { color: var(--cyan); }

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 36px;
}

.cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-primary-orange {
    background-color: var(--orange);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.35);
    transition: transform 0.2s, background 0.3s;
}

.btn-primary-orange:hover {
    transform: translateY(-2px);
    background-color: var(--orange-hover);
}

.btn-dark-pill {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, border-color 0.3s;
}

.btn-dark-pill:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Stats Card Container */
.stats-card-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 24px 40px;
    width: 100%;
    max-width: 850px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.stat-box { text-align: center; }

.stat-box h2 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.plus { color: var(--orange); }

.star-icon {
    width: 22px;
    height: 22px;
    color: #facc15;
    fill: #facc15;
    margin-left: 4px;
}

.stat-box p {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--card-border);
}

/* ==========================================================================
   Marquee Infinite Ticker
   ========================================================================== */
.marquee-ticker {
    background-color: var(--orange);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-content span {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Curriculum Accordion Section
   ========================================================================== */
.curriculum-section { padding: 90px 0; }

.pill-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.orange-badge { background: rgba(255, 106, 0, 0.1); color: var(--orange); border: 1px solid rgba(255, 106, 0, 0.3); }
.cyan-badge   { background: rgba(0, 210, 255, 0.1); color: var(--cyan); border: 1px solid rgba(0, 210, 255, 0.3); }

.title-heading { font-size: 38px; font-weight: 800; margin: 16px 0; }
.desc-text { color: var(--text-muted); margin-bottom: 40px; }

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.accordion-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mod-num { color: var(--text-muted); font-weight: 800; }
.header-left h4 { font-size: 18px; font-weight: 700; }

.tag { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.tag-cyan   { background: rgba(0, 210, 255, 0.2); color: var(--cyan); }
.tag-orange { background: rgba(255, 106, 0, 0.2); color: var(--orange); }
.tag-green  { background: rgba(34, 197, 94, 0.2); color: var(--green); }

.chevron-icon { transition: transform 0.3s ease; }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
    color: var(--text-muted);
}

.accordion-item.active .chevron-icon { transform: rotate(180deg); }
.accordion-item.active .accordion-content {
    max-height: 150px;
    padding: 0 28px 22px 28px;
}

/* ==========================================================================
   Advisor & Lead Form Section
   ========================================================================== */
.advisor-section { padding: 90px 0; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-list { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #ffffff;
    background: var(--card-dark);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.icon-box { color: var(--orange); }

.contact-card span { display: block; font-size: 12px; color: var(--text-muted); }
.contact-card strong { font-size: 16px; word-break: break-all; }

.form-box {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    padding: 36px;
    border-radius: 20px;
}

.input-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.input-field label { font-size: 14px; font-weight: 600; color: #cbd5e1; }
.input-field input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px 16px;
    border-radius: 10px;
    color: #ffffff;
    outline: none;
}
.input-field input:focus { border-color: var(--orange); }

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--orange), #ff5500);
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #ffffff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
}

/* Animation Effect */
.animate-fade {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Rules */
@media (max-width: 992px) {
    .nav-links { display: none; }
    .grid-2 { grid-template-columns: 1fr; }
    .stats-card-container { flex-direction: column; gap: 20px; }
    .stat-divider { width: 100%; height: 1px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 36px; }
    .cta-group { flex-direction: column; width: 100%; }
    .btn-primary-orange, .btn-dark-pill { width: 100%; justify-content: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7121f7b *//* ==========================================================================
   Base Reset & Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bg-black: #080808;
    --card-dark: #121212;
    --card-hover: #181818;
    --card-border: rgba(255, 255, 255, 0.08);
    --orange: #ff6a00;
    --cyan: #00d2ff;
    --green: #22c55e;
    --text-muted: #a0aec0;
}

body {
    background-color: var(--bg-black);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 650px;
    margin-bottom: 40px;
}

/* ==========================================================================
   Section 1: Programs Grid
   ========================================================================== */
.programs-section {
    padding: 90px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    background: var(--card-hover);
    border-color: rgba(255, 106, 0, 0.4);
    transform: translateY(-4px);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
    border: 1px solid rgba(255, 106, 0, 0.4);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.program-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.program-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    color: var(--text-muted);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.program-card:hover .card-link {
    color: var(--orange);
    transform: translateX(4px);
}

/* ==========================================================================
   Section 2: Transformation System
   ========================================================================== */
.transformation-section {
    padding: 90px 0;
    border-top: 1px solid var(--card-border);
}

.grid-2-transformation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    color: var(--orange);
    background: rgba(255, 106, 0, 0.1);
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

/* Visual Wrapper Right Side */
.transformation-visual {
    position: relative;
}

.visual-wrapper {
    background: radial-gradient(circle at center, rgba(255, 106, 0, 0.15) 0%, rgba(18, 18, 18, 0.95) 70%);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-graphic {
    text-align: center;
    padding: 40px;
}

.visual-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(18, 18, 18, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--card-border);
    padding: 12px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.badge-top-right {
    top: 24px;
    right: 24px;
}

.badge-bottom-left {
    bottom: 24px;
    left: 24px;
}

.badge-icon {
    color: var(--orange);
}

.green-circle-icon {
    width: 32px;
    height: 32px;
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge strong {
    display: block;
    font-size: 15px;
    font-weight: 800;
}

.floating-badge span {
    font-size: 11px;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Rules
   ========================================================================== */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2-transformation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .programs-grid, .features-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 28px;
    }
    .visual-wrapper {
        height: 360px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f39cdd2 *//* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, sans-serif;
}

.transformation-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* Mobile: Single Column */
  gap: 40px;
  align-items: center;
}

/* Subheading & Title */
.subheading {
  color: #ea580c; /* High contrast orange */
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.main-title {
  font-size: 2rem;
  font-weight: 900;
  margin: 10px 0 20px 0;
  line-height: 1.2;
}

.description {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: Stack vertically */
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.icon-box {
  background-color: #ffedd5; /* Light peach container */
  color: #ea580c;            /* Contrast orange icon */
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Visual Card Box (Right Side) */
.card-box {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: 20px;
  background: radial-gradient(circle at center, #3a3836 0%, #111111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.center-brand .brand-text {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Visible Floating Badges */
.badge {
  position: absolute;
  background-color: rgba(26, 26, 26, 0.9); /* Dark background */
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
}

.top-badge {
  top: 20px;
  right: 20px;
}

.bottom-badge {
  bottom: 20px;
  left: 20px;
}

.badge-title {
  color: #ffffff !important; /* Visible White Text */
  font-weight: 700;
  font-size: 1rem;
}

.green-text {
  color: #22c55e !important; /* Visible Green text for percentage */
}

.badge-sub {
  color: #9ca3af !important; /* Light gray text */
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ------------------------------------------------ */
/* Media Queries for Responsive Layout              */
/* ------------------------------------------------ */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr; /* 2 Columns for features */
  }
}

/* Desktop & Laptop (1024px and up) */
@media (min-width: 1024px) {
  .container {
    grid-template-columns: 1.2fr 1fr; /* 2 Columns layout */
    gap: 60px;
  }

  .card-box {
    min-height: 480px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fe37f40 *//* ==========================================================================
   Base Reset & Color Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bg-black: #080808;
    --card-dark: #121212;
    --card-border: rgba(255, 255, 255, 0.08);
    --orange: #ff6a00;
    --orange-hover: #e05d00;
    --text-muted: #a0aec0;
}

body {
    background-color: var(--bg-black);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Pricing Section Styling
   ========================================================================== */
.pricing-section {
    padding: 90px 0;
}

.pricing-header {
    margin-bottom: 50px;
}

.section-tag {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 15px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

/* Regular Card */
.pricing-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.3);
}

.plan-name {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #ffffff;
}

.price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 28px;
}

.price-box .currency {
    font-size: 28px;
    font-weight: 800;
}

.price-box .amount {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin: 0 4px;
}

.price-box .period {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

/* Features List */
.features-list {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.features-list li {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list li svg {
    width: 18px;
    height: 18px;
    color: var(--orange);
    flex-shrink: 0;
}

/* Featured Card Override (Middle Orange Card) */
.featured-card {
    background: var(--orange);
    color: #000000;
    border: none;
    box-shadow: 0 20px 40px rgba(255, 106, 0, 0.3);
}

.featured-card .plan-name { color: #000000; }
.featured-card .price-box .period { color: rgba(0, 0, 0, 0.7); }
.featured-card .features-list li svg { color: #000000; }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
}

/* Buttons */
.btn-card {
    width: 100%;
    padding: 16px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline-orange {
    background: var(--orange);
    color: #ffffff;
}

.btn-outline-orange:hover {
    background: var(--orange-hover);
}

.btn-dark {
    background: #000000;
    color: #ffffff;
}

.btn-dark:hover {
    background: #1a1a1a;
}

/* ==========================================================================
   Responsive Layout Rules
   ========================================================================== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .featured-card {
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .section-title { font-size: 28px; }
    .price-box .amount { font-size: 38px; }
    .pricing-card { padding: 32px 24px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3b2c979 *//* ==========================================================================
   Base Reset & Brand Variables
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bg-black: #080808;
    --card-dark: #121212;
    --card-hover: #181818;
    --card-border: rgba(255, 255, 255, 0.08);
    --orange: #ff6a00;
    --orange-hover: #e05d00;
    --text-muted: #a0aec0;
    --input-bg: #181818;
}

body {
    background-color: var(--bg-black);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 80px 0 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 0, 0.4);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: #ffb703;
    color: #ffb703;
}

.testimonial-text {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-placeholder {
    width: 42px;
    height: 42px;
    background: rgba(255, 106, 0, 0.15);
    color: var(--orange);
    border: 1px solid rgba(255, 106, 0, 0.3);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.user-details h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.user-details p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Section & Form Alignment
   ========================================================================== */
.contact-section {
    padding: 60px 0 90px 0;
    border-top: 1px solid var(--card-border);
}

.grid-2-contact {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-subtext {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    color: var(--orange);
    background: rgba(255, 106, 0, 0.1);
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.info-content p, .info-content a {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.info-content a:hover {
    color: var(--orange);
}

.location-image-box {
    margin-top: 28px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 160px;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.location-image-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Form Styles & Strict Layout Alignment */
.booking-card {
    background: var(--card-dark);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.booking-card h3 {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.booking-card .subtext {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.aligned-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
}

.form-group label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 13px 16px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--orange);
    background-color: #202020;
}

/* Custom Select Dropdown Styling */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
}

.select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.btn-submit-orange {
    width: 100%;
    background: var(--orange);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
}

.btn-submit-orange:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 4px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #050505;
    border-top: 1px solid var(--card-border);
    padding: 50px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.brand-logo-wrap img {
    height: 42px;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints (Desktop, Laptop, Tablet & Mobile)
   ========================================================================== */

/* Laptops & Tablets (Max Width: 1024px) */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Devices (Max Width: 640px) */
@media (max-width: 640px) {
    .section-title {
        font-size: 26px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .booking-card {
        padding: 24px 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */