/* ==========================================================================
   Velwinz Consultancy — Main Stylesheet
   ========================================================================== */

/* ── CUSTOM PROPERTIES ── */
:root {
	--primary:  #4B0082;
	--accent:   #4B0082;
	--sky:      #804AA6;
	--purple-light : #CDADFF;
	--light-bg: #f0e6ff;
	--dark-nav: #4B0082;
	--text:     #1a1a2e;
	--muted:    #5a6a7e;
	--border:   #dbdbdb;
	--white:    #ffffff;
	--ease:     cubic-bezier(0.22, 1, 0.36, 1);
	  --purple-dark: #4B0082;
      --purple-mid: #4B0082;
      --purple-light: #CDADFF;
      --purple-pale: #e8d5f5;
      --bg: #f0eaff;
      --ring1: rgba(106,13,173,0.18);
      --ring2: rgba(106,13,173,0.09);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Cormorant Garamond', sans-serif !important;
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
}

/* ── TOP BAR ── */
.top-bar {
	background: var(--dark-nav);
	color: #fff;
	font-size: .78rem;
	padding: 7px 0;
}

.top-bar a {
	color: #fff;
	text-decoration: none;
	transition: color .2s;
}

.top-bar a:hover {
	color: #fff;
}

.top-bar .divider {
	margin: 0 12px;
	opacity: .35;
}

.top-bar .right-links a {
	margin-left: 18px;
	font-weight: 600;
}

/* ── NAVBAR ── */
.main-nav {
	background: var(--white);
	box-shadow: 0 2px 20px rgba(26, 60, 110, .09);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow .3s;
}

.main-nav.scrolled {
	box-shadow: 0 4px 30px rgba(26, 60, 110, .16);
}

.navbar-brand img {
	width: 200px;
}

/* Desktop nav */
.navbar-nav .nav-item {
	position: relative;
}

.navbar-nav .nav-link {
	font-size: .875rem;
	font-weight: 600;
	color: var(--text);
	padding: 10px 12px;
	transition: color .22s;
	white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
	color: var(--sky);
}

/* .navbar-nav .nav-link.contact-link {
	color: var(--accent);
} */

/* Animated desktop dropdown */
.nav-item .dropdown-menu {
	border: none;
	border-radius: 12px;
	box-shadow: 0 14px 40px rgba(26, 60, 110, .14);
	padding: 10px 0;
	min-width: 175px;
	display: block;
	opacity: 0;
	transform: translateY(10px) scale(.97);
	pointer-events: none;
	transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.nav-item:hover .dropdown-menu,
.nav-item .dropdown-menu.show {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: all;
}

.dropdown-menu .dropdown-item {
	font-size: .85rem;
	font-weight: 500;
	padding: 8px 20px;
	color: var(--text);
	transition: background .18s, color .18s, padding-left .2s;
}

.dropdown-menu .dropdown-item:hover {
	background: var(--light-bg);
	color: var(--sky);
	padding-left: 26px;
}

/* Icon buttons */
.icon-btn {
	width: 36px;
	height: 36px;
	border: none;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--text);
	font-size: 1.1rem;
	position: relative;
	transition: background .2s, transform .18s;
}

.icon-btn:hover {
	background: var(--light-bg);
	transform: scale(1.12);
}

.badge-dot {
	position: absolute;
	top: 2px;
	right: 2px;
	background: var(--accent);
	font-size: .58rem;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.25); }
}

.btn-explore {
	background: var(--accent);
	color: white;
	border: none;
	border-radius: 7px;
	padding: 9px 20px;
	font-weight: 700;
	font-size: .88rem;
	white-space: nowrap;
	box-shadow: 0 3px 12px rgb(75 2 129 / 41%);
	transition: background .22s, transform .18s, box-shadow .22s;
}

.btn-explore:hover {
	background: #6e42a1;
	transform: translateY(-2px);
	box-shadow: 0 3px 12px rgb(75 2 129 / 41%);
}

/* ── SEARCH OVERLAY ── */
.search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 20, 40, .72);
	backdrop-filter: blur(7px);
	z-index: 1100;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 90px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s var(--ease);
}

.search-overlay.open {
	opacity: 1;
	pointer-events: all;
}

.search-box {
	width: min(640px, 90vw);
	transform: translateY(-24px) scale(.96);
	transition: transform .38s var(--ease);
}

.search-overlay.open .search-box {
	transform: translateY(0) scale(1);
}

.search-inner {
	background: white;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.search-input-row {
	display: flex;
	align-items: center;
	padding: 18px 20px;
	border-bottom: 1.5px solid var(--border);
}

.search-input-row .s-icon {
	font-size: 1.3rem;
	color: var(--sky);
	margin-right: 12px;
	flex-shrink: 0;
}

.search-input-row input {
	flex: 1;
	border: none;
	outline: none;
	font-family: 'Cormorant Garamond', sans-serif !important;
	font-size: 1.05rem;
	color: var(--text);
}

.search-input-row input::placeholder {
	color: #aab8cc;
}

.search-close {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--muted);
	font-size: 1.5rem;
	padding: 0 4px;
	flex-shrink: 0;
	transition: color .2s, transform .25s var(--ease);
}

.search-close:hover {
	color: var(--accent);
	transform: rotate(90deg);
}

.search-suggestions {
	padding: 14px 20px 18px;
}

.search-suggestions p {
	font-size: .75rem;
	color: var(--muted);
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: .7px;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.chip {
	background: var(--light-bg);
	border-radius: 20px;
	padding: 5px 14px;
	font-size: .82rem;
	font-weight: 600;
	color: var(--primary);
	cursor: pointer;
	border: 1.5px solid var(--border);
	transition: background .2s, border-color .2s, color .2s, transform .18s, opacity .2s;
}

.chip:hover {
	background: var(--sky);
	color: white;
	border-color: var(--sky);
	transform: translateY(-2px);
}

.chip.dim {
	opacity: .3;
	transform: scale(.95);
}

/* ── MOBILE OFFCANVAS ── */
#mobileMenu {
	width: min(320px, 88vw);
}

.offcanvas-header {
	padding: 18px 20px;
}

.mob-search-wrap {
	padding: 12px 16px 6px;
	display: flex;
	align-items: center;
	gap: 9px;
	background: var(--light-bg);
	border-radius: 10px;
	margin: 12px 16px 4px;
}

.mob-search-wrap i {
	color: var(--sky);
}

.mob-search-wrap input {
	border: none;
	background: transparent;
	outline: none;
	font-family: Cormorant Garamond, sans-serif;
	font-size: .9rem;
	flex: 1;
	color: var(--text);
}

.mob-nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mob-nav > li {
	border-bottom: 1px solid #eef2f8;
}

.mob-nav > li:last-child {
	border-bottom: none;
}

.mob-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 6px;
	font-size: .95rem;
	font-weight: 600;
	color: var(--text);
	text-decoration: none;
	cursor: pointer;
	transition: color .2s;
}

.mob-link:hover,
.mob-link.active-mob {
	color: var(--sky);
}

.mob-link.contact-link {
	color: var(--accent);
}

.chevron-icon {
	font-size: .8rem;
	color: var(--muted);
	transition: transform .3s var(--ease);
	flex-shrink: 0;
}

.mob-link.is-open .chevron-icon {
	transform: rotate(180deg);
}

.mob-submenu {
	list-style: none;
	padding: 0;
	margin: 0;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .38s var(--ease), opacity .3s ease;
}

.mob-submenu.expanded {
	max-height: 400px;
	opacity: 1;
}

.mob-submenu li a {
	display: block;
	padding: 9px 12px 9px 20px;
	font-size: .87rem;
	font-weight: 500;
	color: var(--muted);
	text-decoration: none;
	border-left: 2px solid var(--border);
	margin-left: 8px;
	transition: color .2s, border-color .2s, padding-left .22s;
}

.mob-submenu li a:hover {
	color: var(--sky);
	border-color: var(--sky);
	padding-left: 26px;
}



    /* ════════════════════════
       PAGE HERO BREADCRUMB
    ════════════════════════ */
    .page-hero {
      position: relative;
      width: 100%;
      height: 240px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* Background */
    .page-hero__bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.05);
      transition: transform 8s ease;
      z-index: 0;
    }
    .page-hero:hover .page-hero__bg { transform: scale(1.0); }

    /* Dark overlay */
    .page-hero__overlay {
      position: absolute;
      inset: 0;
      background: rgba(12, 0, 26, 0.62);
      z-index: 1;
    }
    /* Purple bottom accent */
    .page-hero__overlay::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--purple-light), var(--primary));
    }

    /* Content */
    .page-hero__content {
      position: relative;
      z-index: 3;
      text-align: center;
      animation: riseIn .55s ease both;
    }
    @keyframes riseIn {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Page title — pulls from <title> tag / JS */
    .hero-page-title {
      font-size: clamp(30px, 5vw, 50px);
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
      line-height: 1.1;
    }

   .divider-line {
      width: 54px;
      height: 2.5px;
      background: linear-gradient(to right, var(--primary), var(--purple-light));
      border-radius: 2px;
      margin-bottom: 28px;
    }
	 .divider-line-center {
      width: 54px;
      height: 2.5px;
      background: linear-gradient(to right, var(--primary), var(--purple-light));
      border-radius: 2px;
	  margin: auto;
	  margin-bottom: 28px;
    }

    /* Breadcrumb */
    .hero-breadcrumb {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 4px 8px;
      list-style: none;
      padding: 0; margin: 0;
      font-size: 13.5px;
      animation: riseIn .6s .1s ease both;
    }
	ol.hero-breadcrumb span {
     color: rgba(255,255,255,.82);
}
    .hero-breadcrumb li { display: flex; align-items: center; gap: 8px; }
    .hero-breadcrumb a {
      color: rgba(255,255,255,.82);
      text-decoration: none;
      transition: color .2s;
    }
    .hero-breadcrumb a:hover { color: var(--purple-light); }
    .hero-breadcrumb .sep     { color: rgba(255,255,255,.35); font-size: 12px; }
    .hero-breadcrumb .current { color: #e05252; font-weight: 500; }

    @media (max-width: 480px) {
      .plane     { display: none; }
      .page-hero { height: 180px; }
    }

/* ── HERO SECTION ── */
.hero-section {
	min-height: calc(100vh - 110px);
	background: #fff;
	padding: 70px 0 60px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -140px;
	left: -140px;
	width: 480px;
	height: 480px;
	background: radial-gradient(circle, rgb(75 2 129 / 19%) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: blobDrift 9s ease-in-out infinite alternate;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: 80px;
	right: 36%;
	width: 310px;
	height: 310px;
	background: radial-gradient(circle, rgb(75 2 129 / 19%) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	animation: blobDrift 11s ease-in-out infinite alternate-reverse;
	z-index: 1;
}

@keyframes blobDrift {
	from { transform: translate(0, 0) scale(1); }
	to   { transform: translate(22px, 16px) scale(1.07); }
}

.hero-title {
	font-family: 'Cormorant Garamond', serif !important;
	font-size: clamp(1.95rem, 4.5vw, 2.8rem);
	font-weight: 600;
	line-height: 1.18;
	color: var(--text);
	margin-bottom: 20px;
	width: auto;
}

.hero-title .highlight {
	font-weight: 600;
	position: relative;
	display: inline-block;
	color: #4B0082;
}

.hero-subtitle {
	color: var(--muted);
	font-size: 1rem;
	line-height: 1.7;
	max-width: 560px;
	margin-bottom: 36px;
}

.btn-consult {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 8px;
	padding: 13px 28px;
	font-weight: 700;
	font-size: .95rem;
	box-shadow: 0 4px 18px rgba(26, 60, 110, .22);
	position: relative;
	overflow: hidden;
	transition: background .22s, transform .18s, box-shadow .22s;
}

.btn-consult::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, .12);
	transform: translateX(-100%);
	transition: transform .38s var(--ease);
}

.btn-consult:hover::after {
	transform: translateX(0);
}

.btn-consult:hover {
	background: #000;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(26, 60, 110, .30);
	color: white;
}

.btn-whatsapp {
	border: 2px solid var(--border);
	background: white;
	color: var(--text);
	border-radius: 8px;
	padding: 12px 22px;
	font-weight: 700;
	font-size: .95rem;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	transition: border-color .22s, color .22s, transform .18s, box-shadow .22s;
}

.wa-icon {
	width: 24px;
	height: 24px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform .4s var(--ease);
}

.btn-whatsapp:hover {
	border-color: #25d366;
	color: #25d366;
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(37, 211, 102, .18);
}

.btn-whatsapp:hover .wa-icon {
	transform: rotate(360deg);
}

.wa-icon i {
	color: white;
	font-size: .82rem;
}

/* ── FORM CARD ── */
.form-card {
	background: white;
	border-radius: 18px;
	box-shadow: 0 8px 48px rgba(26, 60, 110, .13);
	padding: 36px 32px 32px;
	border: 1px solid #e4edf8;
	position: relative;
	z-index: 1;
	transition: box-shadow .3s, transform .3s;
}

.form-card:hover {
	box-shadow: 0 16px 56px rgba(26, 60, 110, .18);
	transform: translateY(-3px);
}

.form-card-title {
	font-family: 'Cormorant Garamond'!important;
	font-size: 1.6rem;
	font-weight: 600;
	color: #000;
	text-align: center;
	margin-bottom: 24px;
	line-height: 1.35;
}

.form-floating label {
	font-size: .83rem;
	color: var(--muted);
}

.form-control {
	border-radius: 9px;
	border: 1.5px solid var(--border);
	font-size: .92rem;
	color: var(--text);
	transition: border-color .22s, box-shadow .22s, transform .18s;
}

.form-control:focus {
	border-color: var(--sky);
	box-shadow: 0 0 0 3px rgba(58, 143, 212, .13);
	transform: translateY(-1px);
}

.form-control::placeholder {
	color: #aab8cc;
}

.phone-group {
	display: flex;
	gap: 8px;
}

.flag-select {
	flex-shrink: 0;
	min-width: 92px;
	border-radius: 9px;
	border: 1.5px solid var(--border);
	background: white;
	padding: 0 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	transition: border-color .22s;
}

.flag-select:focus-within {
	border-color: var(--sky);
}

.flag-select select {
	border: none;
	background: transparent;
	font-size: .85rem;
	cursor: pointer;
	outline: none;
}

.phone-input-wrap {
	flex: 1;
	position: relative;
}

.phone-code {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: .88rem;
	color: var(--muted);
	font-weight: 600;
	pointer-events: none;
}

.phone-input-wrap .form-control {
	padding-left: 44px;
	height: 100%;
}

.input-label {
	font-size: .76rem;
	color: var(--muted);
	font-weight: 500;
	margin-bottom: 5px;
}

.form-check-input:checked {
	background-color: var(--sky);
	border-color: var(--sky);
}

.form-check-label {
	font-size: .8rem;
	color: var(--muted);
}

.form-check-label a {
	color: var(--sky);
	font-weight: 600;
}

.btn-book {
	width: 100%;
	background: linear-gradient(90deg, var(--sky), #4B0082);
	color: white;
	border: none;
	border-radius: 9px;
	padding: 13px;
	font-weight: 700;
	font-size: .95rem;
	letter-spacing: .3px;
	box-shadow: 0 4px 18px rgba(58, 143, 212, .28);
	position: relative;
	overflow: hidden;
	transition: opacity .22s, transform .18s, box-shadow .22s, background .3s;
}

.btn-book::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
	transform: translateX(-100%);
	transition: transform .6s ease;
}

.btn-book:hover::after {
	transform: translateX(100%);
}

.btn-book:hover {
	opacity: .93;
	transform: translateY(-2px);
	box-shadow: 0 8px 26px rgba(58, 143, 212, .38);
	color: white;
}

.btn-book.success {
	background: linear-gradient(90deg, #25d366, #1aab52);
	box-shadow: 0 4px 18px rgba(37, 211, 102, .3);
}

/* Validation shake */
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	20% { transform: translateX(-7px); }
	40% { transform: translateX(7px); }
	60% { transform: translateX(-4px); }
	80% { transform: translateX(4px); }
}

.shake {
	animation: shake .42s ease;
}

.shake.form-control {
	border-color: var(--accent) !important;
}

/* ── COUNTRY SECTION ── */
.country-section {
	min-height: calc(100vh - 110px);
	background: var(--light-bg);
	padding: 70px 0 60px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}


.section-heading {
	font-family: 'Cormorant Garamond', serif !important;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 600;
	color: var(--text);
	margin-bottom: 16px;
}

.badge-label {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--sky);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.badge-label .star {
	color: #f0c040;
}

.title-underline {
	width: 56px;
	height: 4px;
	background: var(--primary);
	border-radius: 2px;
	margin: 0 auto 40px;
}

.country-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 6px 28px rgba(13, 33, 86, .09);
	padding: 28px 16px 20px;
	text-align: center;
	cursor: pointer;
	transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), box-shadow .28s ease;
	border: 1.5px solid rgba(13, 33, 86, .06);
	position: relative;
	overflow: hidden;
}

.country-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sky), #4B0082);
	transform: scaleX(0);
	transition: transform .3s ease;
	transform-origin: left;
}

.country-card:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 18px 48px rgba(13, 33, 86, .16);
}

.country-card:hover::after {
	transform: scaleX(1);
}

.flag-img-wrap {
	width: 100%;
	height: 130px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.flag-img-wrap img {
	max-width: 100%;
	max-height: 130px;
	object-fit: contain;
	filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .18));
	transition: transform .3s ease, filter .3s ease;
}

.country-card:hover .flag-img-wrap img {
	transform: scale(1.06);
	filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .28));
}

.country-name {
	font-size: .95rem;
	font-weight: 600;
	color: #0d2156;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.explore-hint {
	font-size: .75rem;
	color: #4a7bd4;
	font-weight: 500;
	margin-top: 6px;
	opacity: 0;
	transform: translateY(5px);
	transition: opacity .25s ease, transform .25s ease;
}

.country-card:hover .explore-hint {
	opacity: 1;
	transform: translateY(0);
}

.col-card {
	animation: fadeUp .5s ease both;
}

.col-card:nth-child(1) { animation-delay: .05s; }
.col-card:nth-child(2) { animation-delay: .10s; }
.col-card:nth-child(3) { animation-delay: .15s; }
.col-card:nth-child(4) { animation-delay: .20s; }
.col-card:nth-child(5) { animation-delay: .25s; }
.col-card:nth-child(6) { animation-delay: .30s; }
.col-card:nth-child(7) { animation-delay: .35s; }
.col-card:nth-child(8) { animation-delay: .40s; }

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

/* ── REVEAL ANIMATIONS ── */
.reveal {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.d1 { transition-delay: .06s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .26s; }
.d4 { transition-delay: .36s; }
.df { transition-delay: .10s; }

/* ── SKY BAND ── */
.sky-band {
	background: #4c0082;
	height: 90px;
	position: relative;
	overflow: hidden;
}

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
	background: var(--primary);
	position: relative;
	overflow: hidden;
	padding: 0;
}

.newsletter-inner {
	border: 1.5px solid rgba(255, 255, 255, .18);
	border-radius: 14px;
	padding: 28px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	position: relative;
	z-index: 2;
}

.nl-label {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #f0c040;
	text-transform: uppercase;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.nl-title {
	font-family: 'Cormorant Garamond', sans-serif !important;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	color: white;
	margin: 0;
}

.nl-form {
	display: flex;
	gap: 0;
	flex: 1;
	max-width: 480px;
	min-width: 260px;
}

.nl-form input {
	flex: 1;
	border: none;
	outline: none;
	border-radius: 8px 0 0 8px;
	padding: 14px 18px;
	font-family: 'Cormorant Garamond', sans-serif !important;
	font-size: .92rem;
	color: #1a1a2e;
}

.nl-form input::placeholder {
	color: #aab8cc;
}

.nl-btn {
	background: #4B0082;
	border: none;
	border-radius: 0 8px 8px 0;
	padding: 0 22px;
	cursor: pointer;
	color: white;
	font-size: 1.1rem;
	transition: background .2s, transform .18s;
}

.nl-btn:hover {
	background: #c82020;
	transform: scale(1.06);
}

.nl-success {
	display: none;
	align-items: center;
	gap: 8px;
	color: #6effc0;
	font-weight: 600;
	font-size: .95rem;
}

.nl-success i {
	font-size: 1.3rem;
}

/* ── MAIN FOOTER ── */
.main-footer {
	background: var(--primary);
	position: relative;
	overflow: hidden;
	padding: 60px 0 0;
}

/* Stars background */
/* .main-footer::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(255, 255, 255, .55) 1px, transparent 1px),
		radial-gradient(circle, rgba(255, 255, 255, .35) 1px, transparent 1px),
		radial-gradient(circle, rgba(255, 255, 255, .20) 1px, transparent 1px);
	background-size: 120px 120px, 80px 80px, 50px 50px;
	background-position: 10px 10px, 40px 40px, 20px 60px;
	pointer-events: none;
	animation: starsTwinkle 6s ease-in-out infinite alternate;
} */

@keyframes starsTwinkle {
	from { opacity: .4; }
	to   { opacity: 1; }
}

/* Cloud SVG shapes */
.footer-cloud {
	position: absolute;
	opacity: .06;
	pointer-events: none;
	animation: cloudFloat 18s ease-in-out infinite alternate;
}

.footer-cloud.c1 { top: 30px; left: -60px; width: 300px; animation-duration: 20s; }
.footer-cloud.c2 { top: 10px; right: -40px; width: 220px; animation-direction: alternate-reverse; }
.footer-cloud.c3 { bottom: 80px; left: 30%; width: 180px; animation-duration: 25s; }

@keyframes cloudFloat {
	from { transform: translateX(0); }
	to   { transform: translateX(30px); }
}

/* ── FLYING PLANES ── */
/* .plane-wrap {
	position: absolute;
	pointer-events: none;
	z-index: 3;
}

.plane-big {
	top: 18px;
	animation: flyAcross 18s linear infinite;
}

@keyframes flyAcross {
	0%   { left: -120px; transform: translateY(0px) rotate(5deg); }
	25%  { transform: translateY(-18px) rotate(-2deg); }
	50%  { transform: translateY(6px) rotate(4deg); }
	75%  { transform: translateY(-10px) rotate(-1deg); }
	100% { left: 110%; transform: translateY(0px) rotate(3deg); }
}

.plane-small {
	top: 65%;
	animation: flySmall 28s linear infinite;
	opacity: .5;
}

@keyframes flySmall {
	0%   { left: 110%; transform: scaleX(-1) translateY(0) rotate(2deg); }
	30%  { transform: scaleX(-1) translateY(-14px) rotate(-3deg); }
	70%  { transform: scaleX(-1) translateY(10px) rotate(2deg); }
	100% { left: -120px; transform: scaleX(-1) translateY(0) rotate(-2deg); }
} */

	.trail-dot {
		width: 5px;
		height: 5px;
		background: rgba(255, 255, 255, .6);
		border-radius: 50%;
		animation: trailFade 1.6s ease-out infinite;
	}

.trail-dot:nth-child(2) { animation-delay: .15s; width: 4px; height: 4px; opacity: .5; }
.trail-dot:nth-child(3) { animation-delay: .30s; width: 3px; height: 3px; opacity: .35; }
.trail-dot:nth-child(4) { animation-delay: .45s; width: 2px; height: 2px; opacity: .20; }

@keyframes trailFade {
	0%, 100% { opacity: .7; transform: scale(1); }
	50%      { opacity: .2; transform: scale(.6); }
}

/* ── FOOTER BRAND ── */
.footer-brand {
	display: flex;
	align-items: center;
	gap: 9px;
	font-family: 'Cormorant Garamond', sans-serif !important;
	font-weight: 900;
	font-size: 1.5rem;
	color: white;
	text-decoration: none;
	margin-bottom: 18px;
}

.footer-brand-icon {
	width: 38px;
	height: 38px;
	background: #4B0082;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
}

.footer-brand-icon::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 3px;
	background: #4B0082;
	bottom: 7px;
	left: 50%;
	transform: translateX(-50%) rotate(-25deg);
	border-radius: 2px;
}

.footer-brand-icon svg {
	width: 20px;
	height: 20px;
	fill: white;
}

.footer-desc {
	color: rgba(255, 255, 255, .62);
	font-size: .88rem;
	line-height: 1.72;
	margin-bottom: 22px;
	margin-top: 10px;
}

/* Social icons */
.follow-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.follow-label {
	color: rgba(255, 255, 255, .55);
	font-size: .83rem;
	font-weight: 600;
}

.social-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, .25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, .75);
	font-size: .95rem;
	text-decoration: none;
	transition: background .22s, border-color .22s, color .22s, transform .2s;
}

.social-btn:hover {
	background: rgba(255, 255, 255, .15);
	border-color: white;
	color: white;
	transform: translateY(-3px);
}

/* Footer column headings */
.footer-col-title {
	font-family: 'Nunito', sans-sans-serif;
	font-size: 1.05rem;
	font-weight: 600;
	color: white;
	margin-bottom: 18px;
	position: relative;
	padding-bottom: 12px;
}

.footer-col-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 36px;
	height: 3px;
	background: #4B0082;
	border-radius: 2px;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 11px;
}

.footer-links a {
	color: rgba(255, 255, 255, .62);
	font-size: .9rem;
	text-decoration: none;
	transition: color .2s, padding-left .22s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.footer-links a::before {
	content: '›';
	font-size: 1rem;
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity .2s, transform .22s;
}

.footer-links a:hover {
	color: white;
	padding-left: 8px;
}

.footer-links a:hover::before {
	opacity: 1;
	transform: translateX(0);
}

/* Contact items */
.contact-item {
	display: flex;
	gap: 14px;
	margin-bottom: 20px;
	align-items: flex-start;
}

.contact-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 1rem;
	transition: background .2s, color .2s;
}

.contact-item:hover .contact-icon {
	background: #4B0082;
	color: white;
}

.contact-text strong {
	display: block;
	color: white;
	font-size: .9rem;
	font-weight: 600;
	margin-bottom: 2px;
}

.contact-text span {
	color: rgba(255, 255, 255, .6);
	font-size: .85rem;
}

/* ── FOOTER BOTTOM BAR ── */
.footer-bottom {
	background: rgba(0, 0, 0, .22);
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 18px 0;
	margin-top: 50px;
}

.footer-bottom-text {
	color: rgba(255, 255, 255, .5);
	font-size: .82rem;
}

.footer-bottom-text a {
	color: #3a8fd4;
	text-decoration: none;
	font-weight: 600;
}

.footer-bottom-text a:hover {
	color: white;
}


  /* BOTTOM BANNER */
  .about-banner {
    margin-top: 80px;
    background: var(--primary);
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
  }

  .about-banner::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(205, 173, 255, 0.12);
  }

  .about-banner::after {
    content: '';
    position: absolute;
    bottom: -80px; left: 30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(205, 173, 255, 0.07);
  }

  .banner-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .banner-text p {
    font-size: 14.5px;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    line-height: 1.6;
  }

  .banner-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--white);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s;
    position: relative;
    z-index: 1;
  }

  .banner-cta:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
  }

/* Scroll to top */
.scroll-top {
	width: 42px;
	height: 42px;
	background: #ebd1ff;
	border: none;
	border-radius: 50%;
	color: #000;
	font-size: 1.1rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s, transform .22s, box-shadow .22s;
	/*box-shadow: 0 4px 14px rgba(232, 48, 42, .4);*/
}

.scroll-top:hover {
	background: #ebd1ff;
	transform: translateY(-4px);
	/*box-shadow: 0 8px 20px rgba(232, 48, 42, .5);*/
}

.scroll-top i {
	animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

/* Footer reveal */
.footer-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.footer-reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.fr1 { transition-delay: .05s; }
.fr2 { transition-delay: .13s; }
.fr3 { transition-delay: .21s; }
.fr4 { transition-delay: .29s; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
	.top-bar .right-links { display: none; }
	.hero-section { padding: 50px 0; min-height: auto; }
	.country-section { padding: 50px 0; min-height: auto; }
	.form-card { margin-top: 36px; }
	.hero-subtitle { max-width: 460px; }
}

@media (max-width: 767px) {
	.hero-title { font-size: 2rem; }
	.form-card { padding: 26px 20px 24px; }
	.form-card-title { font-size: 1.1rem; }
	.top-bar { display: none; }
	.hero-subtitle { max-width: 460px; }
}

@media (max-width: 480px) {
	.btn-consult,
	.btn-whatsapp { width: 100%; justify-content: center; }
	.hero-btns { flex-direction: column; }
}


/* steps section */


    .steps-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0;
      row-gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Each step column */
    .step-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 150px;
      position: relative;
    }

    /* Connector line between steps */
    .step-col:not(:last-child)::after {
      content: '';
      position: absolute;
      top: 58px;
      right: -22px;
      width: 44px;
      height: 2px;
      background: repeating-linear-gradient(
        90deg,
        var(--purple-light) 0,
        var(--purple-light) 6px,
        transparent 6px,
        transparent 12px
      );
      z-index: 1;
    }

    /* Odd steps: label on top, circle below */
    .step-col.top .step-label { order: 1; margin-bottom: 8px; margin-top: 0; }
    .step-col.top .step-circle { order: 2; }

    /* Even steps: circle on top, label below */
    .step-col.bottom .step-circle { order: 1; }
    .step-col.bottom .step-label { order: 2; margin-top: 8px; }

    /* Circle with rings */
    .step-circle {
      position: relative;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .step-circle::before,
    .step-circle::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      border: 1.5px solid var(--ring1);
    }
    .step-circle::before {
      width: 78px; height: 78px;
    }
    .step-circle::after {
      width: 90px; height: 90px;
      border-color: var(--ring2);
    }

    .circle-ring-outer {
      position: absolute;
      width: 100px; height: 100px;
      border-radius: 50%;
      border: 1.5px solid rgba(106,13,173,0.06);
      top: -5px; left: -5px;
      pointer-events: none;
    }

    .circle-inner {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--purple-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 6px 20px rgba(61,0,102,0.35);
    }

    .step-col:hover .circle-inner {
      transform: scale(1.08);
      box-shadow: 0 10px 28px rgba(61,0,102,0.5);
    }

    .circle-inner img {
      width: 32px;
      height: 32px;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    /* SVG icon fallback */
    .circle-inner svg {
      width: 30px;
      height: 30px;
      fill: none;
      stroke: #fff;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Step label */
    .step-label {
      text-align: center;
    }

    .step-number {
      font-size: 1rem;
      font-weight: 600;
      color: var(--purple-dark);
      line-height: 1.2;
    }

    .step-name {
      font-size: 1rem;
      font-weight: 600;
      color: #555;
      line-height: 1.3;
      margin-top: 2px;
    }

    /* ========= RESPONSIVE ========= */

    /* Tablet: 4 per row */
    @media (max-width: 900px) {
      .step-col {
        width: calc(25% - 24px);
        min-width: 100px;
      }
      .step-col:nth-child(4n)::after { display: none; }
      /* reset alternating for tablet */
      .step-col.bottom .step-label { order: 1; margin-bottom: 6px; margin-top: 0; }
      .step-col.bottom .step-circle { order: 2; margin-top: 0; }
    }

    /* Mobile: 2 per row */
    @media (max-width: 576px) {
      .section-title { font-size: 1.2rem; margin-bottom: 24px; }

      .steps-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 12px;
        justify-items: center;
      }

      .step-col {
        width: 100%;
        max-width: 150px;
      }

      /* Hide connectors on mobile */
      .step-col::after { display: none !important; }

      /* All steps: label top, circle bottom on mobile */
      .step-col .step-label { order: 1; margin-bottom: 8px; margin-top: 0; }
      .step-col .step-circle { order: 2; }
      .step-col.bottom .step-label { order: 1; margin-bottom: 8px; margin-top: 0; }
      .step-col.bottom .step-circle { order: 2; }

      .circle-inner { width: 58px; height: 58px; }
      .circle-inner svg { width: 26px; height: 26px; }
      .step-circle { width: 80px; height: 80px; }
      .step-circle::before { width: 68px; height: 68px; }
      .step-circle::after { width: 80px; height: 80px; }
      .circle-ring-outer { width: 90px; height: 90px; top: -5px; left: -5px; }
    }

	/* top course */

	.coaching-section {
    background-color: var(--dark-bg);
    font-family: 'Poppins', sans-serif;
}

.sub-title {
    color: #ff4d4d; /* Red star color */
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
}

.training-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    transition: transform 0.3s ease;
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    padding: 15px 25px;
    border-radius: 15px;
}

.card-label h5 {
    color: #333;
}

.arrow-btn {
    background-color: var(--dark-bg);
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.arrow-btn:hover {
    background-color: var(--primary);
    color: var(--purple-light);
}

/* Pagination Styling */
.dot {
    width: 10px;
    height: 10px;
    border: 1px solid white;
    border-radius: 50%;
}
.dot.active {
    background-color: #ff4d4d;
    border-color: #ff4d4d;
}

section.steps-section {
	padding: 70px 0 60px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}


.form-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 36px;
    }
    @media(max-width:575.98px) { .form-card { padding:28px 20px; } }

    .form-card .form-label {
      font-size:12.5px; font-weight:500; color:var(--text);
      letter-spacing:.3px; margin-bottom:6px;
    }
    .form-card .form-control,
    .form-card .form-select {
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 11px 14px;
      font-size:14px; color:var(--text);
      transition: border-color .2s, box-shadow .2s;
      background: #fdfdfd;
    }
    .form-card .form-control:focus,
    .form-card .form-select:focus {
      border-color: var(--sky);
      box-shadow: 0 0 0 3px rgba(128,74,166,.12);
      outline:none;
    }
    .form-card textarea.form-control { resize:vertical; min-height:130px; }

    .btn-submit {
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 8px;
      padding: 13px 36px;
      font-size:14.5px; font-weight:500;
      letter-spacing:.3px;
      cursor:pointer;
      transition: background .2s, transform .2s, box-shadow .2s;
      width:100%;
    }
    .btn-submit:hover {
      background: var(--sky);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(75,0,130,.25);
    }
    .btn-submit:active { transform:translateY(0); }

    /* Success message */
    .form-success {
      display:none;
      background: #edfaf3;
      border: 1px solid #a3d9b8;
      border-radius:10px;
      padding:18px 22px;
      font-size:14.5px; color:#1a6b3a;
      margin-top:16px;
    }
    .form-success.show { display:flex; align-items:center; gap:10px; }
    
    a.navbar-brand {
    display: none;
}
.made-with {
    font-size: 14px;
}

.artby {
    font-weight: 600;
    text-decoration: none;
}

.artby:hover {
    text-decoration: underline;
}