/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-gold: #aee61f;
    --primary-gold-dark: #87cd31;
    --dark-bg: #111827;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --section-bg-light: #f9fafb;
    --border-radius: 12px;
    --container-width: 1200px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-primary { background-color: var(--primary-gold); color: var(--dark-bg); }
.btn-primary:hover { background-color: var(--primary-gold-dark); color: white; }

.btn-dark { background-color: var(--dark-bg); color: var(--white); }
.btn-dark:hover { background-color: #374151; }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text { color: var(--primary-gold-dark); }

/* Alert Messages */
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ========== Top Header Bar ========== */
.top-header {
    background:var(--primary-gold-dark);
    color: #000;
    padding: 10px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-header-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-header-left i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 16px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* --- HEADER --- */
header {
    padding: 15px 0;
    background: #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--primary-gold); font-size: 2rem; }

.nav-links { 
    display: flex; 
    gap: 25px; 
    padding-right: 40px;
}

.nav-links a { 
    font-weight: 600; 
    font-size: 1.0rem; 
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { 
    color: var(--primary-gold); 
}

/* --- HERO SECTION --- */
.hero {
    padding: 60px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content { flex: 1; }
.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tag-pill {
    background-color: #fef08a;
    color: #26ad2d;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

/* The yellow blob background effect */
.hero-blob {
    position: absolute;
    width: 450px;
    height: 450px;
    background-color: var(--primary-gold);
    opacity: 0.2;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-img-element {
    border-radius: 0 0 200px 200px;
    max-height: 500px;
    object-fit: cover;
}

/* Framework Redesign CSS */
.framework-steps {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.step-card {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    border-top: 5px solid var(--primary-gold);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.step-card:hover { 
    transform: translateY(-10px); 
    background: var(--primary-gold); 
}

.step-card:hover .step-icon, 
.step-card:hover h4, 
.step-card:hover p { 
    color: black; 
}

.step-number {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: 800;
    opacity: 0.1;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.step-card h4 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { font-size: 0.9rem; color: #666; }

/* --- WHY WE ARE BEST --- */
.features { padding: 80px 0; background-color: #f8f9fa; }

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover { transform: translateY(-5px); }

.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

/* Specific colors for icons */
.icon-purple { background: #e0e7ff; color: #4338ca; }
.icon-green { background: #dcfce7; color: #166534; }
.icon-blue { background: #dbeafe; color: #1e40af; }
.icon-pink { background: #fce7f3; color: #be185d; }
.icon-orange { background: #ffedd5; color: #c2410c; }
.icon-yellow { background: #fef9c3; color: #a16207; }

.feature-card h4 { margin-bottom: 15px; font-weight: 700; }
.feature-card p { font-size: 0.9rem; color: var(--text-light); }

/* --- COACHING COURSES --- */
.coaching {
    padding: 80px 0;
    background: linear-gradient(to bottom, #2c2c2c, #4a4a4a);
    color: white;
    position: relative;
}

.coaching::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(234, 179, 8, 0.1) 0%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

.coaching h2, .coaching p { position: relative; z-index: 2; }

.coaching-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 130px;
    margin-top: 40px;
    justify-content: center;
}

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    color: var(--text-dark);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s;
}

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

.course-img { height: 180px; width: 100%; object-fit: cover; }
.course-content { padding: 20px; }
.course-btn { 
    background: var(--primary-gold); 
    border: none; 
    padding: 8px 20px; 
    border-radius: 5px; 
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.course-btn:hover {
    background: var(--primary-gold-dark);
    color: white;
}

/* --- ABOUT / REPUTATION --- */
.about-section { padding: 80px 0; }
.about-wrapper { display: flex; gap: 50px; align-items: center; }
.about-text { flex: 1; }
.about-text h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
.about-text .gold-text { color: var(--primary-gold-dark); }

.about-images { 
    flex: 1; 
    display: grid; 
    grid-template-columns: 2fr 1.5fr; 
    gap: 15px; 
}

.about-img-main { 
    grid-column: 1 / -1; 
    border-radius: 10px; 
    height: 250px; 
    object-fit: cover; 
    width: 100%; 
}

.about-img-sub { 
    border-radius: 10px; 
    height: 150px; 
    object-fit: cover; 
    width: 100%; 
}

/* --- WALL OF FAME --- */
.results-section {
    padding: 60px 0;
    background-color: #1f2937;
    background-image: radial-gradient(#4b5563 1px, transparent 1px);
    background-size: 20px 20px;
    overflow: hidden;
    color: white;
}

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

.results-header h2 { 
    font-size: 2.5rem; 
    color: var(--primary-gold); 
    margin-bottom: 10px; 
}

.results-header p { color: #d1d5db; }

/* The Marquee Container */
.marquee-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* The Track that moves */
.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
}

/* Pause animation on hover */
.marquee-track:hover {
    animation-play-state: paused;
}

/* Keyframes for moving Right to Left */
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 2)); }
}

/* --- SCORE CARD DESIGN --- */
.score-card {
    background: white;
    width: 380px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #333;
    flex-shrink: 0;
    border: 1px solid #e5e7eb;
}

.score-card img {
    width: 100%;
    border-radius: 10px;
}

/* Leadership Section */
.leadership-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

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

.leader-card {
    flex: 1;
    max-width: 440px;
    min-width: 320px;
    padding: 40px 30px;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

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

/* Dark Card */
.dark-card {
    background-color: #333;
    color: white;
}

/* Light Card */
.light-card {
    background-color: #fef08aad;
    color: var(--dark-bg);
}

/* Image Container */
.img-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary-gold-dark);
}

/* Badge */
.badge {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-gold-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Role Pill */
.role-pill {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-gold-dark);
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.leader-card p {
    margin-top: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* --- FOOTER --- */
footer {
    background: black;
    color: white;
    padding-top: 50px;
    padding-bottom: 20px;
    position: relative;
}

.city-skyline {
    height: 100px;
    width: 100%;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/Seattle_skyline_silhouette.svg/2560px-Seattle_skyline_silhouette.svg.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.3;
    margin-bottom: -50px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid #333;
    padding-top: 40px;
    padding-bottom: 40px;
}

.footer-col h5 { 
    font-size: 1.1rem; 
    margin-bottom: 20px; 
    color: var(--primary-gold); 
}

.footer-col li { 
    margin-bottom: 10px; 
    font-size: 0.9rem; 
    color: #ccc; 
}

.footer-col a:hover {
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-wrapper, 
    .about-wrapper, 
    .contact-grid-v2, 
    .leadership-wrapper {
        flex-direction: column;
    }
    
    .features-grid, 
    .coaching-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .framework-steps {
        flex-wrap: wrap;
    }
    
    .step-card {
        flex: 1 1 calc(50% - 10px);
        min-width: 250px;
    }
    
    .hero-blob { 
        width: 300px; 
        height: 300px; 
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .framework-steps, .contact-grid-v2, .gallery-grid {
        grid-template-columns: 1fr !important;
        flex-direction: column;
    }
}

  
@media (max-width: 600px) {
    .features-grid, 
    .coaching-grid, 
    .framework-steps, 
    .footer-links,
    .contact-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .step-card {
        flex: 1 1 100%;
    }
    
    h1, 
    .hero-content h1 { 
        font-size: 2.5rem; 
    }
    
    .nav-links { 
        display: none; 
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Services Section Styles */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--primary-gold-dark));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
   
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.featured-service {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, #fff 0%, #fffef0 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(174, 230, 31, 0.3);
}

.service-badge {
    display: inline-block;
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.service-subtitle {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.service-features {
    margin: 18px 0;
}

.service-features h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 2px;
}

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

.features-list li {
    padding: 6px 0;
    color: var(--text-dark);
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid #f0f0f0;
    line-height: 1.4;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--primary-gold-dark);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.features-list li strong {
    color: var(--primary-gold-dark);
}

.language-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.lang-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-tag i {
    font-size: 1rem;
}

.service-btn {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--dark-bg);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(174, 230, 31, 0.4);
    background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold));
    color: white;
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* Services Highlight Box */
.services-highlight {
    margin-top: 50px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1f2937 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.highlight-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-bg);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(174, 230, 31, 0.3);
}

.highlight-content h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-content p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: 1.05rem;
}

.highlight-content p strong {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 22px 16px;
    }
    
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    .service-subtitle {
        font-size: 0.78rem;
    }
    
    .features-list li {
        font-size: 0.75rem;
        padding: 5px 0;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
    }
    
    .service-subtitle {
        font-size: 0.9rem;
    }
    
    .service-features h4 {
        font-size: 1rem;
    }
    
    .features-list li {
        font-size: 0.85rem;
    }
    
    .services-highlight {
        padding: 30px 20px;
    }
    
    .highlight-content h3 {
        font-size: 1.5rem;
    }
    
    .language-tags {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .popular-badge {
        top: -12px;
        right: 20px;
        padding: 6px 15px;
        font-size: 0.75rem;
    }
}
