:root {
    --primary-orange: #ff6b00;
    --text-black: #000000;
    --text-gray: #333333;
    --bg-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    background-color: var(--bg-white);
    position: relative;
    z-index: 100;
}

/* Top Bar Styles */
.top-bar {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container img.main-logo {
    height: 50px;
    width: auto;
}

.top-right-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cambridge-logo {
    height: 40px;
    width: auto;
}

.top-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    color: var(--text-black);
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: var(--primary-orange);
}

/* Ticker Styles */
.header-ticker {
    flex-grow: 1;
    overflow: hidden;
    margin: 0 40px;
    background-color: #fff8f0;
    padding: 8px 0;
    border-radius: 4px;
    border: 1px solid #ffe0b2;
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 15s linear infinite;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Bottom Nav Styles */
.bottom-nav {
    padding: 15px 0;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.home-btn {
    background-color: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.home-btn:hover {
    background-color: #e65c00;
}

.nav-links a:not(.home-btn) {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:not(.home-btn):hover {
    color: var(--primary-orange);
}

.nav-right {
    position: absolute;
    right: 20px;
}

.nav-menu-icon {
    font-size: 24px;
    color: var(--text-black);
    text-decoration: none;
}

/* Hero Section Styles */
.hero-section {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 140px);
    background-color: black;
    flex-wrap: wrap;
}

.hero-image-container {
    flex: 1.2;
    position: relative;
    min-width: 300px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.whatsapp-float {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease;
    z-index: 10;
}

.whatsapp-float:hover {
    transform: transform 0.3s ease;
    transform: scale(1.1);
}

.hero-content {
    flex: 0.8;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    min-width: 300px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e65c00;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: white;
    color: black;
}

/* Highlights Section */
.highlights-section {
    padding: 40px 0;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
}

.highlights-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex: 1;
    min-width: 120px;
}

.highlight-icon {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 5px;
}

.highlight-item span {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-black);
}

/* Different Section */
.different-section {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: transparent;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 30px 20px 30px;
}

.card-icon-img {
    width: 30px;
    height: auto;
    filter: brightness(0) invert(1);
    /* Make it white to match design */
}

.pink-bg {
    background-color: #ff4081;
}

.teal-bg {
    background-color: #009688;
}

.orange-bg {
    background-color: #ff9800;
}

.blue-bg {
    background-color: #2196f3;
}

.feature-card h3 {
    padding: 0 30px;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.4;
}

.feature-card p {
    padding: 0 30px;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-image-container {
    width: 100%;
    height: 220px;
    padding: 0 15px 15px 15px;
    /* Padding for floating effect */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* Rounded corners */
}


/* Shine Section */
.shine-section {
    padding: 80px 0;
    background-color: white;
}

.shine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.shine-card {
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 15px;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.shine-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 3px 10px rgba(255, 107, 0, 0.3);
    z-index: 2;
}

.shine-img-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.shine-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shine-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.shine-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    padding: 0 10px 10px 10px;
}

.shine-quote-banner {
    background-color: var(--primary-orange);
    border-radius: 15px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    margin: 60px 0 40px 0;
    position: relative;
}

.quote-icon {
    font-size: 60px;
    opacity: 0.8;
}

.quote-content {
    text-align: center;
    max-width: 800px;
}

.quote-content p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-author {
    font-size: 1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-slider-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px 0;
}

.testimonial-wrapper {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Will scroll */
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    flex: 0 0 calc((100% - 60px) / 3);
}

@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 700px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.testi-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.testi-info span {
    font-size: 12px;
    color: #888;
}

.testi-stars {
    color: var(--primary-orange);
    margin-bottom: 20px;
    font-size: 14px;
}

.testi-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

.testi-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.testi-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary-orange);
    background: white;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.testi-btn:hover {
    background: var(--primary-orange);
    color: white;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.t-dot {
    width: 8px;
    height: 8px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

.t-dot.active {
    background-color: var(--primary-orange);
}


/* Next Generation Section */
.next-gen-section {
    padding: 80px 0;
    background-color: white;
}

.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-outline-orange {
    display: inline-block;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-outline-orange:hover {
    background-color: var(--primary-orange);
    color: white;
}

.opening-subtitle {
    display: block;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.next-gen-content {
    display: flex;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

/* Slider Styles */
.slider-container {
    flex: 1;
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--primary-orange);
    transition: transform 0.2s;
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: white;
}

/* Features List Styles */
.features-list-container {
    flex: 1;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--primary-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: #444;
    font-size: 16px;
    line-height: 1.4;
}

.btn-full-orange {
    display: block;
    width: 100%;
    background-color: var(--primary-orange);
    color: white;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-full-orange:hover {
    background-color: #e65c00;
}

/* Path Section */
.path-section {
    padding: 80px 0;
    background-color: white;
}

.path-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.path-tab {
    padding: 12px 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-weight: 700;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    outline: none;
}

.path-tab:hover {
    border-color: #ff4081;
    color: #ff4081;
}

/* Specific Active Colors based on design */
.path-tab[data-target="kplay"].active {
    background-color: #ff4081;
    border-color: #ff4081;
    color: white;
}

.path-tab[data-target="kdiscover"] {
    border-color: #ff9800;
    /* Outline orange as per image */
    color: #333;
}

.path-tab[data-target="kdiscover"].active {
    background-color: #ff9800;
    color: white;
}

.path-tab[data-target="klead"] {
    border-color: #ff9800;
    color: #333;
}

.path-tab[data-target="klead"].active {
    background-color: #ff9800;
    color: white;
}


.path-content-wrapper {
    position: relative;
    min-height: 400px;
}

.path-content {
    display: none;
    /* JS toggles flex */
    align-items: center;
    gap: 80px;
    animation: fadeIn 0.5s ease;
}

.path-content.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.path-image-box {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
}

.path-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.path-text-box {
    flex: 1;
}

.ages-badge {
    display: inline-block;
    border: 2px solid #ff4081;
    color: #ff4081;
    padding: 6px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Orange border variation if needed */
.path-content-wrapper .path-content:nth-child(2) .ages-badge,
.path-content-wrapper .path-content:nth-child(3) .ages-badge {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.path-text-box h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.path-text-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.path-list {
    list-style: none;
    margin-bottom: 40px;
}

.path-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-weight: 500;
    color: #333;
}

.path-list li i {
    color: #25D366;
    /* Green check */
    background: #e8f5e9;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.btn-pink {
    background-color: #ff4081;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
    border: none;
    font-size: 16px;
}

.btn-pink:hover {
    background-color: #ec407a;
}

.btn-blue {
    background-color: #2196f3;
    color: white;
    padding: 15px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: background 0.3s;
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: white;
}

.white-text {
    color: white !important;
}

.section-subtitle {
    color: #bbb;
    margin-bottom: 50px;
}

.experience-features {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.exp-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.exp-icon {
    font-size: 30px;
    color: var(--primary-orange);
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    align-items: end;
}

.exp-feature-item span {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
}

.booking-form-container {
    display: flex;
    justify-content: center;
}

.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 550px;
    color: #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.submit-btn {
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-trust-signal {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-trust-signal i {
    color: #25D366;
    /* Green check */
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.faq-image-container {
    flex: 1;
}

.faq-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-container {
    flex: 1.2;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
}

.faq-question h4 {
    font-weight: 500;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    color: #666;
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-top: 0;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-top: 15px;
    font-size: 0.95rem;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    /* Turns plus to x or similar if using plus icon */
}

.faq-item.active .faq-answer {
    max-height: 500px;
}


/* Footer Styles */
.main-footer {
    padding-top: 80px;
    background-color: white;
    color: #333;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.footer-logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #333;
}

.footer-logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #666;
}

.copyright-text {
    font-size: 13px;
    color: #888;
    margin-top: 20px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.info-group i {
    color: #666;
    font-size: 18px;
    margin-top: 3px;
}

.text-link {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
}

.orange-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

.footer-links-col {
    flex: 0.5;
    min-width: 140px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    background-color: #f9f9f9;
    padding: 25px 0;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-copyright {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-orange);
}


/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-image-container,
    .hero-content {
        flex: auto;
        width: 100%;
        min-height: auto;
    }

    .hero-image {
        height: 60vh;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .ticker-content {
        font-size: 12px;
    }

    /* Highlights responsive */
    .highlights-grid {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .shine-grid {
        grid-template-columns: 1fr;
    }

    .shine-quote-banner {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .quote-icon {
        font-size: 30px;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .next-gen-content {
        flex-direction: column;
        gap: 40px;
    }

    .slider-container {
        width: 100%;
        height: 300px;
    }

    /* Path Section Responsive */
    .path-tabs {
        gap: 10px;
    }

    .path-tab {
        padding: 10px 20px;
        font-size: 14px;
        flex: 1;
        /* Equal width tabs on mobile */
        text-align: center;
    }

    .path-content,
    .path-content.active {
        flex-direction: column;
        gap: 40px;
    }

    .path-image-box {
        width: 100%;
        height: 250px;
        /* Smaller height for mobile */
    }

    .path-text-box h3 {
        font-size: 1.8rem;
    }

    /* FAQ Responsive */
    .faq-layout {
        flex-direction: column;
        gap: 40px;
    }

    .faq-image-container,
    .faq-container {
        width: 100%;
    }

    .faq-img {
        max-height: 300px;
        object-fit: cover;
    }

    /* Experience Responsive */
    .experience-features {
        gap: 30px;
    }

    .booking-form {
        padding: 30px 20px;
    }

    /* Footer Responsive */
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .contact-details {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .path-tabs {
        flex-wrap: wrap;
    }

    .path-tab {
        flex: auto;
        /* Allow wrapping */
        width: 100%;
    }
}