/* 
   Career Launcher - Main Stylesheet
   Based on blue-gradient and orange accent from banner
*/

:root {
    /* Main banner colors - from original banner */
    --primary-blue: #006cb7;      /* Darker blue from banner */
    --secondary-blue: #00b2b8;    /* Teal blue from banner gradient */
    --gradient-blue-start: #006cb7;
    --gradient-blue-end: #00b2b8;
    --accent-orange: #f15a25;     /* Orange from banner */
    
    /* Text and UI colors */
    --dark-text: #0a1e3f;
    --light-text: #ffffff;
    --error-color: #ff3b30;
    --success-color: #34c759;
    --light-gray: #f5f5f7;
    --medium-gray: #e0e0e0;
    --dark-gray: #777;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    padding: 15px 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 50px;
    object-fit: contain;
}

.contact-header {
    display: flex;
    align-items: center;
}

.contact-header a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.contact-header a:hover {
    color: var(--accent-orange);
}

.contact-header .phone-icon {
    margin-right: 8px;
    font-size: 20px;
}

/* Hero Section Styles */
.hero {
    background: linear-gradient(rgba(7, 27, 47, 0.85), rgba(6, 53, 66, 0.85)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    color: white;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title span {
    color: var(--accent-orange);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-subtitle span {
    color: var(--accent-orange);
}

.steps-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.steps-box h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.steps-list {
    list-style-type: none;
}

.steps-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.steps-list li::before {
    content: "•";
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 24px;
    margin-right: 12px;
}

.sessions-container {
    display: flex;
    gap: 15px;
}

.session-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.session-box p {
    margin-bottom: 10px;
}

.session-box p:last-child {
    margin-bottom: 0;
}

.session-box i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Registration Form Styles */
.registration-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--dark-text);
    font-size: 28px;
    position: relative;
}

.form-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-orange);
    margin: 10px auto 0;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 108, 183, 0.2);
}

.select-container {
    position: relative;
}

.select-container::after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 12px;
    color: #777;
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.submit-btn {
    background: var(--accent-orange);
    color: white;
    border: none;
    padding: 16px 25px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #d94714;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(241, 90, 37, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(241, 90, 37, 0.3);
}

.success-message, .error-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
}

.success-message {
    background-color: rgba(52, 199, 89, 0.1);
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.error-message {
    background-color: rgba(255, 59, 48, 0.1);
    border: 1px solid var(--error-color);
    color: var(--error-color);
}

/* Radio Group Styles for Date/Time Selection */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
    cursor: pointer;
}

.radio-option:hover {
    background-color: var(--medium-gray);
}

.radio-option input[type="radio"] {
    margin-top: 4px;
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

.radio-option label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex: 1;
}

.radio-option input:checked + label {
    font-weight: 600;
    color: var(--primary-blue);
}

.radio-option:has(input:checked) {
    border: 2px solid var(--accent-orange);
    background-color: rgba(241, 90, 37, 0.05);
}

.session-date {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.session-time {
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.session-location {
    color: var(--dark-gray);
    font-size: 14px;
}

/* Features Section Styles */
.features {
    padding: 80px 20px;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    color: var(--dark-text);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.feature-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
    font-size: 48px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.feature-description {
    color: var(--dark-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Contact Section Styles */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    color: white;
}

.contact-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
    position: relative;
}

.contact-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(5px);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.location-region {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-orange);
}

.location-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.location-address {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.location-contact {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.location-contact:last-child {
    margin-bottom: 0;
}

.location-contact i {
    margin-right: 10px;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.location-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.location-contact a:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background: var(--dark-text);
    color: white;
    padding: 50px 20px 25px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 30px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.footer-text {
    max-width: 400px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .features-grid, .contact-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 700px;
    }

    .steps-list li {
        justify-content: center;
    }

    .sessions-container {
        justify-content: center;
    }

    .registration-form {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .sessions-container {
        flex-direction: column;
    }

    .contact-header {
        display: none;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-icon {
        font-size: 42px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
    }
    
    .radio-option label {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
    
    .steps-box {
        padding: 20px 15px;
    }

    .form-title {
        font-size: 24px;
    }
    
    .registration-form {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .features, .contact {
        padding: 60px 15px;
    }
    
    .features-grid, .contact-grid {
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .radio-option {
        padding: 12px;
    }
    
    .session-date {
        font-size: 15px;
    }
    
    .session-time, .session-location {
        font-size: 13px;
    }
}