/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    display: block;
}

.brand-name {
    font-size: 28px;
    font-weight: bold;
    color: #e67e22;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #e67e22;
}

.btn-talk {
    padding: 12px 35px;
    border: 2px solid #e67e22;
    border-radius: 50px;
    color: #e67e22;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-talk:hover {
    background: #e67e22;
    color: #fff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fffe 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    position: relative;
}

.hero-accent {
    position: absolute;
    top: -30px;
    right: 100px;
    opacity: 0.9;
}

.hero-title {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: bold;
    color: #1a1a1a;
}

.hero-title .highlight {
    color: #4db8b8;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-learn {
    color: #e67e22;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    color: #d67019;
    border-bottom-color: #d67019;
}

.coaching-logos {
    margin-top: 20px;
}

.coaching-logos img {
    max-width: 500px;
    height: auto;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}

/* Career Holding Section */
.career-holding {
    background-image: url('../images/background-image-green.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.career-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decorative-blob {
    position: absolute;
    z-index: 1;
}

.orange-blob {
    top: -50px;
    right: -30px;
    width: 350px;
    height: 350px;
}

.orange-blob img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.yellow-blob {
    bottom: -80px;
    left: -50px;
    z-index: 0;
}

.career-image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.career-image {
    width: 100%;
    height: auto;
    display: block;
}

.career-right {
    color: #fff;
}

.career-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: bold;
}

.career-text {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

.btn-career {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 16px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-career:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
    background: #fff;
}

.roadmap-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.roadmap-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
}

.roadmap-intro {
    display: flex;
    align-items: center;
}

.roadmap-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.roadmap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.roadmap-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-blob {
    position: absolute;
    width: 200px;
    height: 250px;
    border-radius: 50%;
    z-index: 0;
}

.pink-blob {
    background: #f4a6a6;
    top: -20px;
    right: -20px;
    border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
}

.orange-card-blob {
    background: #f4a261;
    top: -15px;
    right: -25px;
    border-radius: 45% 55% 55% 45% / 50% 50% 50% 50%;
}

.beige-blob {
    background: #e8d5c4;
    top: -20px;
    right: -15px;
    border-radius: 50% 50% 50% 50% / 45% 55% 45% 55%;
}

.card-image {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.card-text {
    font-size: 19px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
}

.roadmap-cta {
    text-align: center;
}

.btn-roadmap {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-roadmap:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Why Different Section */
.why-different {
    padding: 100px 0;
    background: linear-gradient(to bottom, #d4f1f4 0%, #c8ebe8 100%);
}

.why-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.why-description {
    font-size: 19px;
    line-height: 1.7;
    color: #1a1a1a;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: #fff;
    border: 2px solid #c0c0c0;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-card-title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: bold;
    color: #1a1a1a;
}

.why-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-transform {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-transform:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Success Stories Section */
.success-stories {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f5e6dc 0%, #ead8cb 100%);
    position: relative;
}

.stories-header {
    text-align: center;
    margin-bottom: 60px;
}

.stories-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.stories-description {
    font-size: 19px;
    line-height: 1.7;
    color: #1a1a1a;
    max-width: 700px;
    margin: 0 auto;
}

.stories-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.clients-collage {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients-collage img {
    max-width: 100%;
    height: auto;
}

.testimonial-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 25px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 25px;
    padding: 50px 45px;
    display: none;
}

.testimonial-card.active {
    display: block;
}

.stars {
    text-align: center;
    margin-bottom: 30px;
}

.stars img {
    width: 250px;
    height: auto;
}

.testimonial-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1a1a1a;
    font-style: italic;
    text-align: center;
    margin-bottom: 35px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
}

.slider-arrow {
    background: #fff;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: #1a1a1a;
}

.slider-arrow:hover {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

/* Discover Career Paths Section */
.discover-paths {
    padding: 100px 0;
    background: #f5f0eb;
}

.discover-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.discover-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.discover-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.discover-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
}

.discover-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.discover-features {
    background: #d4f1f4;
    border: 2px solid #a8d5d8;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-check {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    font-size: 18px;
    line-height: 1.6;
    color: #1a1a1a;
}

.feature-text strong {
    font-weight: bold;
}

.discover-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.discover-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.discover-cta {
    text-align: center;
}

.btn-discover {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-discover:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Meet Our Coaches Section */
.meet-coaches {
    padding: 100px 0;
    background: linear-gradient(to bottom, #d4f1f4 0%, #c8ebe8 100%);
    position: relative;
    overflow: hidden;
}

.meet-coaches::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100px;
    width: 300px;
    height: 100%;
    background: #f5e6d3;
    border-radius: 50%;
    opacity: 0.5;
}

.coaches-header {
    text-align: center;
    margin-bottom: 50px;
}

.coaches-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.coaches-description {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    max-width: 900px;
    margin: 0 auto 30px;
}

.coaches-certifications {
    display: flex;
    justify-content: center;
}

.coaches-certifications img {
    max-width: 500px;
    height: auto;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.coach-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    height: 450px;
}

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

.coach-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.coach-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(21, 87, 87, 0.95) 0%, rgba(21, 87, 87, 0.85) 60%, transparent 100%);
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 60%;
}

.coach-content {
    position: relative;
}

.coach-name {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.coach-bio {
    font-size: 17px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 15px;
}

.coach-more {
    position: absolute;
    bottom: 0;
    right: 0;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
}

.coach-more:hover {
    background: #fff;
    color: #155757;
    transform: rotate(90deg);
}

.coaches-cta {
    text-align: center;
}

.btn-coaches {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 18px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-coaches:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Fears and Concerns Section */
.fears-concerns {
    padding: 100px 0;
    background: #fff;
}

.fears-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.fears-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.fears-left {
    display: flex;
    flex-direction: column;
}

.fears-list {
    background: #fdf5ef;
    border: 2px solid #e8d5c4;
    border-radius: 20px;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fear-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.fear-check {
    flex-shrink: 0;
    margin-top: 3px;
}

.fear-content {
    flex: 1;
}

.fear-question {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.fear-answer {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
}

.fears-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fears-image-wrapper {
    position: relative;
    max-width: 100%;
}

.fears-blob {
    position: absolute;
    z-index: 0;
}

.beige-shape {
    width: 400px;
    height: 400px;
    background: #f5e6d3;
    border-radius: 50%;
    top: -50px;
    left: -50px;
    opacity: 0.7;
}

.purple-shape {
    width: 250px;
    height: 250px;
    background: #e8d4f0;
    border-radius: 50%;
    bottom: -40px;
    right: -30px;
    opacity: 0.6;
}

.fears-image {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.fears-cta {
    text-align: center;
}

.btn-fears {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-fears:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Imagine Possibilities Section */
.imagine-possibilities {
    padding: 100px 0;
    background: #f9f9f9;
}

.possibilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.possibilities-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.possibilities-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
}

.possibilities-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #333;
    max-width: 580px;
}

.benefits-box {
    background: #d4f1f4;
    border: 2px solid #a8d5d8;
    border-radius: 20px;
    padding: 40px 35px;
}

.benefits-title {
    font-size: 28px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-check {
    flex-shrink: 0;
}

.benefit-text {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 500;
}

.possibilities-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.possibilities-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Dream Career Section */
.dream-career {
    padding: 100px 0;
    background: linear-gradient(135deg, #1b8585 0%, #2a9d9d 100%);
    position: relative;
}

.dream-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.dream-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dream-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.dream-right {
    color: #fff;
}

.dream-title {
    font-size: 56px;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
}

.dream-text {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
    max-width: 550px;
}

.dream-cta {
    text-align: center;
}

.btn-dream {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 22px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-dream:hover {
    background: #d67019;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.4);
}

/* Contact Form Section */
.contact-form {
    padding: 100px 0;
    background: #f9f9f9;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.form-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

.consultation-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-input,
.form-textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4db8b8;
    box-shadow: 0 0 0 3px rgba(77, 184, 184, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit {
    background: #e67e22;
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-submit:hover {
    background: #d67019;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-icon {
    margin-bottom: 25px;
}

.modal-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.modal-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.btn-modal-close {
    background: #4db8b8;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background: #3a9999;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-right {
        order: -1;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-accent {
        right: 50px;
    }

    .nav-links {
        gap: 25px;
    }

    .career-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .career-title {
        font-size: 42px;
    }

    .career-text {
        font-size: 18px;
    }

    .decorative-blob {
        opacity: 0.7;
    }

    .roadmap-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .roadmap-title {
        font-size: 46px;
    }

    .roadmap-cards {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-title {
        font-size: 46px;
    }

    .why-description {
        font-size: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-card-title {
        font-size: 20px;
    }

    .stories-title {
        font-size: 46px;
    }

    .stories-description {
        font-size: 18px;
    }

    .stories-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-text {
        font-size: 20px;
    }

    .discover-title {
        font-size: 46px;
    }

    .discover-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .coaches-title {
        font-size: 46px;
    }

    .coaches-description {
        font-size: 17px;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .coach-card {
        height: 400px;
    }

    .fears-title {
        font-size: 46px;
    }

    .fears-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .possibilities-title {
        font-size: 46px;
    }

    .possibilities-intro {
        font-size: 18px;
    }

    .possibilities-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .benefits-title {
        font-size: 24px;
    }

    .benefit-text {
        font-size: 18px;
    }

    .dream-title {
        font-size: 46px;
    }

    .dream-text {
        font-size: 20px;
    }

    .dream-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .btn-dream {
        font-size: 20px;
        padding: 20px 50px;
    }

    .form-title {
        font-size: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .consultation-form {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary {
        padding: 18px 35px;
        font-size: 16px;
    }

    .coaching-logos img {
        max-width: 100%;
    }

    .career-holding {
        padding: 60px 0;
    }

    .career-title {
        font-size: 36px;
    }

    .career-text {
        font-size: 17px;
    }

    .orange-blob {
        width: 250px;
        height: 250px;
        right: -20px;
    }

    .yellow-blob svg {
        width: 200px;
        height: 250px;
    }

    .roadmap {
        padding: 60px 0;
    }

    .roadmap-title {
        font-size: 36px;
    }

    .roadmap-intro p {
        font-size: 17px;
    }

    .card-text {
        font-size: 17px;
    }

    .btn-roadmap {
        padding: 18px 40px;
        font-size: 18px;
    }

    .why-different {
        padding: 60px 0;
    }

    .why-title {
        font-size: 36px;
    }

    .why-description {
        font-size: 17px;
    }

    .why-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .why-card-title {
        font-size: 18px;
    }

    .btn-transform {
        padding: 18px 40px;
        font-size: 18px;
    }

    .success-stories {
        padding: 60px 0;
    }

    .stories-title {
        font-size: 36px;
    }

    .stories-description {
        font-size: 17px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .author-name {
        font-size: 20px;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
    }

    .stars img {
        width: 200px;
    }

    .discover-paths {
        padding: 60px 0;
    }

    .discover-title {
        font-size: 36px;
    }

    .discover-intro,
    .discover-sub {
        font-size: 17px;
    }

    .discover-features {
        padding: 30px 25px;
    }

    .feature-text {
        font-size: 17px;
    }

    .btn-discover {
        padding: 18px 40px;
        font-size: 18px;
    }

    .meet-coaches {
        padding: 60px 0;
    }

    .coaches-title {
        font-size: 36px;
    }

    .coaches-description {
        font-size: 16px;
    }

    .coaches-certifications img {
        max-width: 100%;
    }

    .coach-card {
        height: 380px;
    }

    .coach-name {
        font-size: 28px;
    }

    .coach-bio {
        font-size: 16px;
    }

    .btn-coaches {
        padding: 16px 50px;
        font-size: 18px;
    }

    .fears-concerns {
        padding: 60px 0;
    }

    .fears-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .fears-list {
        padding: 30px 25px;
        gap: 25px;
    }

    .fear-question {
        font-size: 18px;
    }

    .fear-answer {
        font-size: 16px;
    }

    .beige-shape {
        width: 300px;
        height: 300px;
    }

    .purple-shape {
        width: 200px;
        height: 200px;
    }

    .btn-fears {
        padding: 18px 40px;
        font-size: 18px;
    }

    .imagine-possibilities {
        padding: 60px 0;
    }

    .possibilities-title {
        font-size: 36px;
    }

    .possibilities-intro {
        font-size: 17px;
    }

    .benefits-box {
        padding: 30px 25px;
    }

    .benefits-title {
        font-size: 22px;
    }

    .benefit-text {
        font-size: 17px;
    }

    .dream-career {
        padding: 60px 0;
    }

    .dream-title {
        font-size: 36px;
    }

    .dream-text {
        font-size: 18px;
    }

    .btn-dream {
        font-size: 18px;
        padding: 18px 40px;
    }

    .contact-form {
        padding: 60px 0;
    }

    .form-title {
        font-size: 32px;
    }

    .form-description {
        font-size: 16px;
    }

    .consultation-form {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 26px;
    }

    .modal-text {
        font-size: 16px;
    }

    .modal-content {
        padding: 40px 30px;
    }
}

/* ============================================
   Footer Section
   ============================================ */
.footer {
    background: linear-gradient(135deg, #155757 0%, #2a7676 100%);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: Georgia, serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #e67e22;
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    fill: #e67e22;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

/* Footer Responsive Styles */
@media (max-width: 968px) {
    .footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-heading {
        font-size: 18px;
    }

    .footer-link {
        font-size: 15px;
    }

    .contact-item {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-column:last-child {
        grid-column: 1;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-contact {
        gap: 14px;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-copyright {
        font-size: 13px;
    }
}
