:root {
    --primary-color: #8c7b60;
    /* Luxury Gold-Brown */
    --secondary-color: #0b1a20;
    /* Slightly darker midnight blue for more premium feel */
    --text-color: #4a4238;
    /* Warm Charcoal */
    --bg-light: #f7f6f2;
    /* Luxury Beige */
    --white: #ffffff;
    --accent-gold: #c5a059;
    --luxury-gold: #8c7b60;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s var(--transition);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
.logo h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    /* Regular weight for more elegance */
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.section-padding {
    padding: 120px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.mb-5 {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    /* Using the gold color for better visibility */
    opacity: 1;
    /* Removed opacity for maximum brightness */
    text-transform: uppercase;
    font-weight: 600;
}

.mt-4 {
    margin-top: 30px;
}

.ml-3 {
    margin-left: 20px;
}

.white {
    color: var(--white);
}

.opacity-8 {
    opacity: 0.8;
}

/* Grid Systems */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-2.align-center {
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Device Availability Styles */
/* Device Availability Styles */
.device-section-bg {
    background: radial-gradient(circle at 80% 20%, #1a3c4a, #0b1a20 60%);
    position: relative;
    overflow: hidden;
}

.device-section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.device-section-bg .container {
    position: relative;
    z-index: 2;
}

.white-btn {
    color: var(--white);
    border-color: var(--white);
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 700;
}

.white-btn:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.white-gold {
    color: var(--accent-gold);
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
}

.device-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
}

.device-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.device-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.device-desc {
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.8;
    color: var(--white);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Header - Keeping Wellington Style */
.main-header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: 0.5s ease;
}

.main-header.scrolled {
    background: var(--white);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.top-bar {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.main-header.scrolled .top-bar {
    padding: 10px 0;
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: left;
}

.top-logo-image {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.top-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    letter-spacing: 5px;
    margin-bottom: -3px;
}

.logo span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.nav-bar {
    padding: 20px 0;
    color: var(--white);
}

.main-header.scrolled .nav-bar {
    color: var(--secondary-color);
    padding: 15px 0;
}

.nav-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav li a {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav li a:hover {
    color: var(--luxury-gold);
}

.btn-book {
    position: absolute;
    right: 0;
    background: var(--luxury-gold);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--luxury-gold);
}

/* Hero Carousel Section */
.hero-carousel-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #0b1a20;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: clamp(92px, 11vh, 145px) 20px 0;
    color: var(--white);
    /* Improved text alignment and visibility */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    margin-top: 56px;
    font-size: 1.1rem;
    letter-spacing: 6px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(11, 26, 32, 0.3);
    padding: 8px 16px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-brand {
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto 25px auto;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 1;
    /* Full opacity for readability */
}

.hero-tagline {
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: var(--accent-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -6px;
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    bottom: 22px;
    transform: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(11, 26, 32, 0.35);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-arrow-left {
    left: 18px;
}

.hero-arrow-right {
    right: 18px;
}

.hero-arrow:hover {
    background: rgba(140, 123, 96, 0.85);
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.04);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 18px 45px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 16px 45px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.btn-primary:hover,
.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Section Elements */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--primary-color);
    font-style: italic;
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.max-width-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Before vs After */
.before-after-section {
    background:
        radial-gradient(circle at 15% 15%, rgba(197, 160, 89, 0.08), transparent 35%),
        radial-gradient(circle at 85% 85%, rgba(11, 26, 32, 0.06), transparent 45%),
        var(--white);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 30px;
    align-items: stretch;
}

.journey-panel {
    border-radius: 16px;
    padding: 38px 32px;
    border: 1px solid #e9e3d7;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.journey-before {
    background: #fcf9f3;
}

.journey-after {
    background: #f4f8f9;
    border-color: #d9e7eb;
}

.journey-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    background: rgba(11, 26, 32, 0.08);
}

.journey-panel h4 {
    font-size: 1.55rem;
    line-height: 1.25;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.journey-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    line-height: 1.55;
}

.journey-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 9px;
    background: var(--primary-color);
}

.journey-divider {
    display: flex;
    justify-content: center;
    align-items: center;
}

.journey-divider i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 10px 28px rgba(11, 26, 32, 0.28);
}

/* Moments Section */
.moment-item {
    text-align: center;
    padding: 0;
    border: 1px solid #eee;
    transition: var(--transition-slow);
    overflow: hidden;
    background: var(--white);
}

.moment-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 30px;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.moment-item:hover .moment-image img {
    transform: scale(1.1);
}

.moment-item:hover {
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.moment-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
    opacity: 0.3;
}

.moment-item h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding: 0 30px;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

.moment-item p {
    padding: 0 30px 40px;
}

/* Mini Features in Carousel */
.mini-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mini-feature strong {
    display: block;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.mini-feature p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Cards & Components */
.card-item {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    transition: var(--transition-slow);
}

.card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.card-image-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 3px solid var(--bg-light);
}

.card-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 25px;
}

.card-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card-item h5 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.mini-card {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.mini-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.mini-card a {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

/* Features Grid (Visual) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 600px;
}

.feature-item {
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.feature-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.category-tag {
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--primary-color);
    padding: 4px 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(11, 26, 32, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: var(--white);
    transition: 0.5s;
    border-bottom: 3px solid var(--luxury-gold);
}

.feature-overlay h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.feature-overlay p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.4;
    max-width: 90%;
}

.btn-outline {
    border: 1px solid var(--white);
    padding: 10px 25px;
    font-size: 0.8rem;
    font-weight: 700;
}

.feature-item:hover img {
    transform: scale(1.05);
}

.feature-item:hover .feature-overlay {
    background: linear-gradient(rgba(0, 134, 163, 0.4), rgba(11, 26, 32, 0.9));
}

/* Infrastructure blocks */
.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

/* Security Banner */
.security-banner {
    background: linear-gradient(rgba(11, 26, 32, 0.95), rgba(11, 26, 32, 0.95)), url('images/scalable.jpeg') center/cover;
    position: relative;
}

.tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 2px;
}

/* Partner Form */
.steps-vertical {
    margin-top: 40px;
}

.step {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
}

.step span {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.form-container {
    background: var(--white);
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
}

.form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #eee;
    background: #fcfcfc;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: var(--primary-color);
    background: var(--white);
}

textarea {
    height: 120px;
    resize: none;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--primary-color);
}

/* Carousel Section */
.mithra-carousel {
    position: relative;
    min-height: 500px;
}

.carousel-slide {
    width: 100%;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide:not(.active) {
    opacity: 0;
}

/* Luxury Experiences Section (Inspired by Wellington) */
.luxury-section {
    background-color: #f7f6f2;
    /* Subtle beige background */
    color: #4a4238;
    /* Warm brown-gray text */
}

.luxury-header {
    margin-bottom: 80px;
}

.luxury-subtitle {
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 500;
    opacity: 0.6;
    display: block;
    margin-bottom: 15px;
}

.luxury-title {
    font-size: 3rem;
    color: #8c7b60;
    /* Elegant gold-brown */
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-weight: 400;
}

.luxury-script {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #8c7b60;
    margin-top: -15px;
    display: block;
}

.luxury-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.luxury-content {
    text-align: left;
}

.luxury-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.drop-cap {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    margin-top: 10px;
    margin-right: 15px;
    font-family: 'Great Vibes', cursive;
    color: #8c7b60;
}

.btn-discover {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #8c7b60;
    color: #8c7b60;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.4s;
    background: transparent;
}

.btn-discover:hover {
    background: #8c7b60;
    color: var(--white);
}

.luxury-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.luxury-img-item {
    text-align: center;
}

.img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    /* Slightly vertical squares */
    overflow: hidden;
    margin-bottom: 20px;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.luxury-img-item:hover img {
    transform: scale(1.08);
}

.img-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 500;
    opacity: 0.6;
}

/* Luxury Footer Styling */
.luxury-footer {
    background-color: var(--white);
    border-top: 1px solid #eee;
}

/* Newsletter Bar */
.footer-newsletter {
    padding: 80px 0;
    background-color: #f7f6f2;
    border-bottom: 1px solid #e5e2d9;
}

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.newsletter-title .luxury-script {
    font-size: 3rem;
    margin-bottom: 0;
    line-height: 1;
}

.newsletter-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: #4a4238;
    margin-top: 5px;
    font-weight: 500;
}

.newsletter-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    flex: 1;
    border: none;
    border-bottom: 1px solid #aaa;
    background: transparent;
    padding: 10px 0;
    font-size: 0.9rem;
    outline: none;
    color: #4a4238;
}

.newsletter-form button {
    background-color: #7d6b52;
    color: var(--white);
    border: none;
    padding: 12px 40px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #635440;
}

.form-legal {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.7rem;
    line-height: 1.5;
    color: #888;
}

.form-legal input {
    margin-top: 3px;
}

/* Main Footer Content */
.footer-main {
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.footer-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.2rem;
    color: #4a4238;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-nav-links a {
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #4a4238;
}

.footer-col-center {
    text-align: center;
}

.footer-main-logo {
    height: 80px;
    margin-bottom: 15px;
}

.logo-text h3 {
    font-size: 1.5rem;
    letter-spacing: 5px;
    color: #7d6b52;
}

.logo-text span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    opacity: 0.6;
}

.footer-col-right {
    text-align: right;
}

.contact-info p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #666;
}

.contact-info a {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: #7d6b52;
}

/* Brands Section */
.footer-brands {
    padding: 80px 0;
    background-color: #fcfcfc;
    border-bottom: 1px solid #eee;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    text-align: center;
}

.brand-item {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: #c5bba8;
    /* Elegant muted gold */
    transition: var(--transition);
    cursor: default;
    padding: 15px;
    border: 1px solid transparent;
}

.brand-item:hover {
    color: var(--luxury-gold);
}

/* Bottom Legal Bar */
.footer-bottom-bar {
    background-color: #0b1a20;
    color: rgba(255, 255, 255, 0.4);
    padding: 20px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
}

.legal-links {
    display: flex;
    gap: 25px;
}

.legal-links a:hover {
    color: var(--white);
}

/* Vision Section */
#vision {
    background: linear-gradient(rgba(11, 26, 32, 0.8), rgba(11, 26, 32, 0.8)), url('images/story_daily_companion.png') center/cover no-repeat fixed;
    padding: 150px 0;
    color: var(--white);
}

#vision .section-title {
    color: var(--white);
    margin-bottom: 30px;
}

#vision p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .journey-divider i {
        transform: rotate(90deg);
        margin: 4px auto;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .feature-item {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        margin-top: 36px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
    }

    .hero-arrow-left {
        left: 10px;
    }

    .hero-arrow-right {
        right: 10px;
    }

    .hero-arrow {
        bottom: 12px;
    }

    .hero-content {
        padding: 82px 20px 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .journey-panel {
        padding: 30px 24px;
    }

    .journey-panel h4 {
        font-size: 1.35rem;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .main-nav {
        display: none;
    }
}

/* Image-based Timeline & Network Nodes */
.img-circle-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover .img-circle-wrapper {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.img-circle-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Network Node Images */
.center-img-wrapper {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.sat-node {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.node-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.sat-node:hover .node-img {
    opacity: 0.3;
    /* Darken image on hover to show text better if needed, or keep it bright */
}

/* Ensure text is visible over images */
.sat-node span {
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 800;
}

/* Day in the Life Section */
.timeline-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
    max-width: 350px;
}

.timeline-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.time-badge {
    display: inline-block;
    background: var(--luxury-gold);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(140, 123, 96, 0.3);
}

.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.step-card h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #f8f6f2;
    /* Light luxury beige */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    border: 1px solid #e1e8eb;
    transition: 0.3s;
}

.step-card:hover .icon-circle {
    background: var(--primary-color);
    color: var(--white);
}

/* Network Canvas Section */
.network-bg {
    background: #0f1d24;
    /* Darker than secondary */
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.network-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at center, rgba(140, 123, 96, 0.08) 0%, transparent 70%);
    animation: pulse-bg 10s infinite alternate;
}

@keyframes pulse-bg {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.network-visual-container {
    height: 500px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.network-visual {
    width: 500px;
    height: 500px;
    position: relative;
    border-radius: 50%;
}

.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.5s ease;
}

.center-node {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(197, 160, 89, 0.25);
    z-index: 10;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.center-node .node-icon {
    font-size: 3rem;
    color: var(--luxury-gold);
    margin-bottom: 5px;
}

.center-node span {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
}

/* Satellite Nodes style */
.sat-node {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sat-node:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.15) !important;
    z-index: 15;
}

.sat-node .node-icon {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.sat-node span {
    font-size: 0.7rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Satellite Positioning - Radial */
.node-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

/* 12 o clock */
.node-2 {
    top: 25%;
    right: 0;
    transform: translate(0, 0);
}

/* 2 o clock approx */
.node-3 {
    bottom: 25%;
    right: 0;
    transform: translate(0, 0);
}

/* 4 o clock approx */
.node-4 {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

/* 6 o clock */
.node-5 {
    bottom: 25%;
    left: 0;
    transform: translate(0, 0);
}

/* 8 o clock approx */
.node-6 {
    top: 25%;
    left: 0;
    transform: translate(0, 0);
}

/* 10 o clock approx */

/* Connection Lines */
.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.6), transparent);
    transform-origin: 0 50%;
    /* Rotate from start point */
    z-index: 1;
    width: 250px;
    /* Radius */
    opacity: 0.4;
}

/* Rotations for lines to match nodes approx */
.line-1 {
    transform: rotate(-90deg);
}

.line-2 {
    transform: rotate(-30deg);
}

.line-3 {
    transform: rotate(30deg);
}

.line-4 {
    transform: rotate(90deg);
}

.line-5 {
    transform: rotate(150deg);
}

.line-6 {
    transform: rotate(210deg);
}

@media (max-width: 768px) {
    .timeline-container {
        flex-direction: column;
        align-items: center;
    }

    .timeline-connector {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .network-visual {
        transform: scale(0.6);
        /* Scale down on mobile */
    }
}


/* Day in the Life - Infinite Carousel */
.timeline-track-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Break out of container */
}

.timeline-track {
    display: flex;
    gap: 40px;
    padding: 0 40px;
    /* Create an infinite loop effect with duplicate content via JS or enough items */
    animation: scroll-carousel 60s linear infinite;
    width: fit-content;
}

.timeline-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half way (assuming content is duplicated) */
    }
}

.timeline-step {
    flex: 0 0 400px;
    /* Fixed width for consistent cards */
    margin: 0;
}

.timeline-connector {
    display: none;
    /* Hide connectors for carousel mode */
}

/* Step Card Enhancements */
.step-card {
    background: var(--white);
    padding: 0;
    /* Remove padding to let image fill top */
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Very subtle border */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    height: 100%;
    overflow: hidden;
    /* For image */
    text-align: left;
    /* Align text left for card style */
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(11, 26, 32, 0.15);
}

.step-content {
    padding: 30px;
}

.time-badge {
    display: inline-block;
    background: rgba(140, 123, 96, 0.1);
    /* Light gold bg */
    color: var(--luxury-gold);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Step Image Styles */
.step-image-container {
    width: 100%;
    height: 300px;
    /* BIG images */
    margin: 0;
    border-radius: 0;
    /* Full bleed */
    overflow: hidden;
    position: relative;
}

.step-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent);
}

.step-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.step-card:hover .step-image-container img {
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 500;
}

.step-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Network Visual Image */
.network-visual-image {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.glowing-network-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
    animation: float-network 6s ease-in-out infinite;
}

@keyframes float-network {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 30px rgba(197, 160, 89, 0.4));
    }

    50% {
        transform: translateY(-20px);
        filter: drop-shadow(0 0 50px rgba(197, 160, 89, 0.6));
    }
}

/* Fix for white section titles on dark backgrounds */
h2.section-title.white {
    color: var(--white) !important;
}

/* Features Grid Section Styles */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin-bottom: 0;
}

.feature-item {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.feature-item .image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.feature-item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.feature-item:hover .image-container img {
    transform: scale(1.1);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.feature-item:hover .feature-overlay {
    transform: translateY(0);
}

.category-tag {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--luxury-gold);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.feature-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 500;
}

.feature-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: 0.4s ease 0.1s;
}

.feature-item:hover .feature-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* Secondary Services - Mini Cards */
.mini-card {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--luxury-gold);
}

.mini-card h5 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.mini-card p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.mini-card a {
    font-size: 0.8rem;
    color: var(--luxury-gold);
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Specialty Pills Styling */
.specialty-pill {
    display: inline-block;
    padding: 12px 28px;
    background: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.specialty-pill:hover {
    background: var(--luxury-gold);
    color: var(--white);
    border-color: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
}

/* Enhanced Mini Card with Icon */
.mini-card i {
    transition: transform 0.3s ease;
}

.mini-card:hover i {
    transform: scale(1.2);
}

/* Enrollment Banner Styles */
.enrollment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.enroll-banner {
    position: relative;
    isolation: isolate;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s ease;
    border: 1px solid rgba(255, 255, 255, 0.45);
    min-height: 320px;
}

.enroll-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(80% 70% at 15% 15%, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0)),
        radial-gradient(60% 50% at 85% 85%, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.enroll-banner::after {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.36);
    filter: blur(16px);
    z-index: 0;
    pointer-events: none;
}

.enroll-banner:hover {
    transform: translateY(-8px) scale(1.004);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

.enroll-content {
    padding: 50px;
    flex-grow: 1;
}

.enroll-body {
    position: relative;
    z-index: 2;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(7px);
}

.enroll-tag {
    display: inline-block;
    width: fit-content;
    padding: 7px 15px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--white);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.dental-tag {
    background: #2f80ed;
}

.eye-tag {
    background: #27ae60;
}

.gym-tag {
    background: #e67e22;
}

.salon-tag {
    background: #d63031;
}

.enroll-banner h3 {
    font-size: clamp(1.6rem, 2vw, 2.1rem);
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.18;
}

.enroll-banner p {
    font-size: 1.03rem;
    color: #474f58;
    margin-bottom: 30px;
    line-height: 1.65;
    max-width: 60ch;
}

.btn-enroll {
    display: inline-block;
    width: fit-content;
    padding: 14px 28px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.dental-btn {
    background: #2f80ed;
}

.eye-btn {
    background: #27ae60;
}

.gym-btn {
    background: #e67e22;
}

.salon-btn {
    background: #d63031;
}

.btn-enroll:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
    color: var(--white);
}

.enroll-media {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 320px;
}

.enroll-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.08) contrast(1.03);
    transition: transform 0.9s ease, filter 0.9s ease;
}

.enroll-banner:hover .enroll-media img {
    transform: scale(1.06);
    filter: saturate(1.14) contrast(1.06);
}

.layout-media-right .enroll-body {
    order: 1;
}

.layout-media-right .enroll-media {
    order: 2;
}

.layout-media-left .enroll-media {
    order: 1;
}

.layout-media-left .enroll-body {
    order: 2;
}

/* Specific Banner Gradients */
.enroll-banner.dental {
    background: linear-gradient(125deg, #e8f1ff 0%, #f4f8ff 50%, #ffffff 100%);
}

.enroll-banner.eye {
    background: linear-gradient(125deg, #e9fff4 0%, #effff8 48%, #ffffff 100%);
}

.enroll-banner.gym {
    background: linear-gradient(125deg, #fff6e7 0%, #fffbf1 48%, #ffffff 100%);
}

.enroll-banner.salon {
    background: linear-gradient(125deg, #ffedf5 0%, #fff5f9 48%, #ffffff 100%);
}

@media (max-width: 991px) {
    .enrollment-grid {
        grid-template-columns: 1fr;
    }

    .enroll-banner {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .enroll-body {
        padding: 35px;
        backdrop-filter: none;
    }

    .enroll-media {
        min-height: 260px;
    }

    .layout-media-right .enroll-body,
    .layout-media-right .enroll-media,
    .layout-media-left .enroll-media,
    .layout-media-left .enroll-body {
        order: initial;
    }
}

@media (max-width: 576px) {
    .enroll-content {
        padding: 30px;
    }

    .enroll-body {
        padding: 30px;
    }

    .enroll-banner h3 {
        font-size: 1.6rem;
    }
}

.mymithra-features-section {
    background: var(--white);
    padding-top: 100px;
    padding-bottom: 100px;
}

.features-intro-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
}

.features-intro-copy .section-title {
    margin-bottom: 10px;
}

.features-intro-copy .section-subtitle {
    margin-bottom: 14px;
}

.features-intro-copy p {
    color: #41505d;
    max-width: 62ch;
    margin-bottom: 20px;
    line-height: 1.72;
}

.features-cta {
    padding: 14px 28px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    box-shadow: 0 12px 24px rgba(12, 24, 35, 0.2);
}

.features-intro-media {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(12, 24, 35, 0.08);
    box-shadow: 0 24px 55px rgba(12, 24, 35, 0.16);
    height: clamp(320px, 34vw, 430px);
}

.features-intro-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-subhead {
    margin-bottom: 24px !important;
}

.people-experience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    grid-auto-rows: 1fr;
    margin-bottom: 26px;
}

.people-experience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(12, 24, 35, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(12, 24, 35, 0.08);
}

.people-experience-card img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    display: block;
}

.people-experience-card div {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.people-experience-card h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #0d202a;
}

.people-experience-card p {
    margin: 0;
    font-size: 0.84rem;
    color: #51606d;
    line-height: 1.45;
}

.features-kicker {
    display: inline-block;
    padding: 8px 15px;
    margin-bottom: 15px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0a6077;
    background: rgba(0, 134, 163, 0.14);
    border: 1px solid rgba(0, 134, 163, 0.2);
}

.features-command-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: stretch;
}

.features-visual-panel {
    position: relative;
    border-radius: 30px;
    padding: 34px;
    border: 1px solid rgba(11, 26, 32, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 60px rgba(11, 26, 32, 0.12);
    overflow: hidden;
}

.features-visual-panel::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -110px;
    right: -90px;
    border-radius: 50%;
    background: rgba(0, 134, 163, 0.2);
    filter: blur(12px);
}

.command-phone {
    position: relative;
    z-index: 1;
    padding: 30px;
    border-radius: 26px;
    border: 1px solid rgba(12, 24, 35, 0.08);
    background: linear-gradient(160deg, #0f2430 0%, #122f3e 52%, #0b1a20 100%);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 20px 44px rgba(11, 26, 32, 0.35);
}

.command-badge {
    display: inline-block;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    color: #fff;
    background: linear-gradient(90deg, #0086a3 0%, #31afc9 100%);
}

.command-phone h4 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.command-phone p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    max-width: 45ch;
}

.feature-pill-row {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #eaf5f8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-pill i {
    color: #95e4f4;
}

.features-command-list {
    display: grid;
    gap: 14px;
    grid-auto-rows: 1fr;
}

.command-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(12, 24, 35, 0.08);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 10px 26px rgba(12, 24, 35, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.command-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 32px rgba(12, 24, 35, 0.14);
}

.command-index {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: #0a6077;
}

.command-card h4 {
    font-size: 1.25rem;
    margin-bottom: 7px;
    color: #10212c;
}

.command-card p {
    margin: 0;
    color: #4c5a66;
    font-size: 0.93rem;
    line-height: 1.55;
}

.features-impact-strip {
    margin-top: 22px;
    display: grid;
    gap: 16px;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
}

.impact-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(12, 24, 35, 0.08);
}

.impact-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: #10212c;
    letter-spacing: 0.4px;
}

.impact-item p {
    margin: 0;
    color: #596673;
    font-size: 0.88rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .mymithra-features-section {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .features-intro-shell {
        grid-template-columns: 1fr;
    }

    .features-intro-media {
        height: 320px;
    }

    .people-experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-command-shell {
        grid-template-columns: 1fr;
    }

    .features-impact-strip {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .mymithra-features-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .people-experience-grid {
        grid-template-columns: 1fr;
    }

    .people-experience-card img {
        height: 170px;
    }

    .features-visual-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .command-phone {
        padding: 22px;
    }

    .feature-pill-row {
        grid-template-columns: 1fr;
    }

    .features-impact-strip {
        grid-template-columns: 1fr;
    }
}

.app-offer-section {
    position: relative;
    background:
        radial-gradient(1000px 420px at 5% 0%, rgba(0, 163, 203, 0.1), rgba(0, 163, 203, 0)),
        radial-gradient(850px 420px at 95% 100%, rgba(140, 123, 96, 0.14), rgba(140, 123, 96, 0)),
        linear-gradient(180deg, #f7fbff 0%, #fdfcfa 100%);
}

.offer-popup {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: min(360px, calc(100vw - 24px));
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(12, 24, 35, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(12, 24, 35, 0.25);
    padding: 18px 18px 16px;
    z-index: 1400;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.offer-popup.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.offer-popup-pill {
    display: inline-block;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #0b6f8a 0%, #0086a3 100%);
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
}

.offer-popup h3 {
    font-size: 1.25rem;
    line-height: 1.22;
    margin-bottom: 8px;
    color: #10212c;
}

.offer-popup p {
    margin: 0 0 10px;
    color: #4b5661;
    font-size: 0.9rem;
    line-height: 1.5;
}

.offer-popup .offer-timer-label {
    margin-bottom: 6px;
    font-size: 0.72rem;
    letter-spacing: 1.4px;
}

.offer-popup .offer-timer {
    font-size: 1.55rem;
    gap: 4px;
    margin-bottom: 4px;
}

.offer-popup .offer-progress-track {
    height: 6px;
}

.offer-popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(13, 27, 36, 0.16);
    background: #fff;
    color: #3d4c58;
    cursor: pointer;
}

.offer-popup-btn {
    display: inline-block;
    margin-top: 6px;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

@media (max-width: 700px) {
    .offer-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        max-width: none;
        border-radius: 14px;
        padding: 14px 14px 12px;
        box-shadow: 0 14px 32px rgba(12, 24, 35, 0.22);
    }

    .offer-popup h3 {
        font-size: 1.08rem;
        line-height: 1.25;
    }

    .offer-popup p {
        font-size: 0.86rem;
        margin-bottom: 8px;
    }

    .offer-popup .offer-timer {
        font-size: 1.35rem;
    }

    .offer-popup-btn {
        padding: 11px 14px;
        font-size: 0.76rem;
    }
}

@media (max-width: 420px) {
    .offer-popup {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 12px 12px 10px;
        max-height: calc(100vh - 16px);
        overflow-y: auto;
    }

    .offer-popup-pill {
        font-size: 0.62rem;
        padding: 5px 8px;
    }

    .offer-popup h3 {
        font-size: 1rem;
    }

    .offer-popup .offer-timer {
        font-size: 1.2rem;
    }
}

.app-offer-shell {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 36px;
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 28px 70px rgba(12, 24, 35, 0.12);
    overflow: hidden;
}

.app-offer-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.app-offer-copy>p {
    color: #4b5661;
    max-width: 60ch;
    margin-bottom: 24px;
}

.app-offer-pill {
    display: inline-block;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0b6f8a 0%, #0086a3 100%);
    color: #fff;
    letter-spacing: 1px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 20px rgba(0, 134, 163, 0.35);
}

.offer-timer-wrap {
    margin-bottom: 22px;
}

.offer-timer-label {
    font-size: 0.8rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #6f7682;
    margin-bottom: 8px;
}

.offer-timer {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    color: #0d1b24;
    text-shadow: 0 10px 26px rgba(12, 24, 35, 0.18);
}

.offer-separator {
    opacity: 0.8;
}

.offer-progress-track {
    margin-top: 10px;
    width: min(420px, 100%);
    height: 8px;
    border-radius: 999px;
    background: rgba(9, 30, 43, 0.12);
    overflow: hidden;
}

.offer-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0086a3 0%, #30a5bf 55%, #9ae2f0 100%);
    box-shadow: 0 8px 18px rgba(0, 134, 163, 0.45);
}

.offer-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 24px;
}

.offer-benefit-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(13, 27, 36, 0.08);
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 8px 20px rgba(13, 27, 36, 0.08);
}

.offer-benefit-card i {
    font-size: 1.15rem;
    margin-top: 3px;
    color: #0086a3;
}

.offer-benefit-card h4 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.offer-benefit-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #5d6672;
    line-height: 1.45;
}

.app-offer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-offer-visual {
    position: relative;
    min-height: 430px;
}

.app-shot {
    position: absolute;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(7, 22, 31, 0.24);
}

.app-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-shot.primary {
    top: 6px;
    right: 0;
    width: 72%;
    height: 88%;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.app-shot.secondary {
    bottom: 0;
    left: 0;
    width: 52%;
    height: 52%;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

@media (max-width: 1100px) {
    .app-offer-shell {
        grid-template-columns: 1fr;
    }

    .app-offer-visual {
        min-height: 340px;
    }

    .app-shot.primary {
        width: 68%;
        height: 94%;
    }

    .app-shot.secondary {
        width: 46%;
        height: 54%;
    }
}

@media (max-width: 700px) {
    .app-offer-shell {
        padding: 28px;
        border-radius: 22px;
    }

    .offer-benefits {
        grid-template-columns: 1fr;
    }

    .app-offer-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .app-offer-visual {
        min-height: 300px;
    }
}