/* --- 1. GLOBAL RESETS & BASE STYLES --- */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    /* Prevents unwanted horizontal scrolling from full-width container elements */
    overflow-x: hidden; 
}

/* Utility Class */
.text-normal-case {
    text-transform: none !important;
}


/* --- 2. HERO SECTION --- */
.hero-section {
    background-image: repeating-linear-gradient(
        135deg,
        #415A87,
        #415A87 120px,
        #45659E 120px,
        #45659E 240px
    );
    display: flex;
    justify-content: flex-start; 
    align-items: flex-end; /* Anchors the hero photo flat on the bottom line */
    padding: 100px 10% 0 10%; /* Bottom padding is 0 so image sits flush */
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content {
    align-self: center;          
    margin-bottom: 14px;         
    padding-bottom: 0;           
}

.brand-name {
    color: #FF5858;              
    font-weight: bold;
    font-size: 2rem;
    letter-spacing: 1px;
}

.hero-section h1 {
    font-size: 3rem;
    margin: 5px 0;
    letter-spacing: 0.5px;
}

.subheading {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.hero-image {
    max-height: 570px;             
    display: block;
    padding-left: 80px; /* Pushes photo rightward for compositional balance */
    height: auto;
    object-fit: contain;
    margin-bottom: 0;             
}

/* Hide the mobile hero image clone on desktop layouts by default */
.hero-image-mobile {
    display: none;
}

.cta-button {
    display: inline-block;
    background-color: #FF5858;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px; 
    font-weight: bold;
    font-size: 1rem; 
    border-radius: 4px;
    margin-top: 75px;  /* Clear executive separation from titles */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #ff5252;
    transform: translateY(-2px);
}


/* --- 3. VALUE PROPOSITION (BENEFITS SECTION) --- */
.benefits-section {
    background-color: #ffffff;
    padding: 80px 10%;
}

.bg-off-white {
    background-color: #F8F9FA; /* Premium, clean off-white background option */
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    text-align: left; 
    color: #2b4c7e;
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 1px;
}

/* Grid Architecture */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns side-by-side */
    gap: 40px; 
}

/* Module Cards */
.module-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px; 
    padding: 30px;
    text-align: left;
    display: flex;
    align-items: flex-start; 
    gap: 24px; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-white {
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Added slight depth soft-shadow */
}

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

.module-card-content {
    flex: 1;
}

.module-card h3 {
    color: #2b4c7e;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
}

.module-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Module Icons */
.module-illustration {
    flex-shrink: 0; 
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; 
}

.module-png-icon {
    width: 60px; 
    height: 60px; 
    object-fit: contain;
    display: block;
}


/* --- 4. FULL-WIDTH TRAINING METHODOLOGY BAND --- */
.methodology-fullwidth-wrapper {
    width: 100%;
    background-color: #45659E; /* Medium Slate Blue */
    padding: 80px 10%;         
    box-sizing: border-box;
    margin-bottom: 0;          
}

.methodology-aligned-container {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;   
    text-align: left;
}

.methodology-title {
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff; 
    margin-top: 0;
    margin-bottom: 32px;
}

/* Bullet Lists Structural Engine */
.methodology-points-list {
    list-style: none;          
    padding: 0;
    margin: 0;
    max-width: 750px;          
    width: 100%;
}

.methodology-points-list li {
    position: relative;
    padding-left: 24px;        
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.methodology-points-list li:last-child {
    margin-bottom: 0;          
}

.methodology-points-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #FF5858;            /* Coral Accent Dot */
    font-weight: bold;
    font-size: 1.2rem;
}

.methodology-points-list .point-text {
    display: block;
    color: rgba(255, 255, 255, 0.9); 
}


/* --- 5. CLEAN FULL-WIDTH ABOUT ME BAND --- */
.about-me-fullwidth-wrapper {
    width: 100%;
    background-color: #415A87; /* Slightly darker slate blue */
    padding: 40px 10% 80px 10%; /* Reduced top padding to mesh seamlessly with the band above */
    box-sizing: border-box;
    margin-top: 0;             
    margin-bottom: 0;
}

.about-me-aligned-container {
    width: 100%;
    box-sizing: border-box;    
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Standard Header: All-caps, Bold, Anchored */
.about-title-uppercase {
    font-size: 1.8rem; 
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 24px;
}

.about-text-block {
    max-width: 750px; /* Keeps premium visual line lengths */
    width: 100%;
}

/* Bolded natural-case lead introductory text */
.about-lead-text {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    color: #FFFFFF;
    margin-top: 0;
    margin-bottom: 28px;
}


/* --- 6. FOOTER AREA & CONTACT FORM --- */
.footer-section {
    background-image: repeating-linear-gradient(
        135deg,
        #415A87,
        #415A87 120px,
        #45659E 120px,
        #45659E 240px
    );
    color: #ffffff;
    text-align: left; 
    padding: 80px 10% 0 10%; /* 0 bottom padding so copyright bar fits completely flush */
    position: relative;
}

.footer-form-container {
    max-width: 600px;
    margin-bottom: 60px; 
}

.footer-form-container .form-title {
    color: #FF5858; 
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 12px;
}

.footer-form-container .form-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 40px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.form-group {
    position: relative;
}

.minimal-form input,
.minimal-form textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    font-size: 1rem;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.minimal-form input::placeholder,
.minimal-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.minimal-form input:focus,
.minimal-form textarea:focus {
    outline: none;
    border-bottom: 1px solid #ff6b6b; 
}

.minimal-form textarea {
    resize: none;
}

.form-actions {
    display: flex;
    justify-content: flex-start; 
}

.submit-button-secondary {
    background: none;
    border: none;
    padding: 10px 0;
    color: #FF5858; /* Vibrant interactive brand accent color */
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #FF5858; 
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.submit-button-secondary:hover {
    opacity: 0.85;
    transform: translateX(4px); /* Moves directional arrow subtly to the right */
}


/* --- 7. FULL-WIDTH COPYRIGHT BAND --- */
.copyright-band {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #415A87; 
    padding: 25px 10%;
    box-sizing: border-box;
}

.copyright {
    font-size: 0.9rem;
    margin: 0;
    margin-left: 32px;
    color: rgba(255, 255, 255, 0.6); 
    letter-spacing: 0.5px;
}


/* --- 8. RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr; /* Stack into single column layouts on tablet or phone frames */
        gap: 20px;
    }
    
    .module-card {
        flex-direction: column;
        gap: 15px;
    }
}
