/* Brand Colors */
:root {
    /* Signature Colors */
    --primary-blue: #69cce3;
    --light-blue-1: #9fdbed;
    --light-blue-2: #cdebf1;
    
    /* Foundation Colors */
    --white: #ffffff;
    --cream: #f5efe4;
    --navy: #0f2044;
    --black: #121212;
    
    /* Accent Colors */
    --green: #497463;
    --orange: #f3a262;
    
    /* Additional Style Variables */
    --box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --gradient-blue: linear-gradient(135deg, var(--primary-blue), #4fade0);
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: var(--navy);
    background-color: #f6f3ee;
    position: relative;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--navy);
}

/* Header */
header {
    padding: 30px 0 20px;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: var(--white);
}

.logo {
    margin-bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Hero Section - Fixed Layout */
.hero {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 140px 30px 160px;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image:
        linear-gradient(135deg, rgba(15, 32, 68, 0.85) 0%, rgba(73, 116, 99, 0.75) 100%),
        url('images/eda-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    max-width: 780px;
    width: 100%;
}

.tagline {
    font-size: 2.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tagline span {
    color: var(--primary-blue);
}

.sub-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Coming Soon Section - Clean & Centered */
.coming-soon-container {
    padding: 0 20px;
    margin-top: -80px; /* Overlap effect */
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.coming-soon {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 800px;
    border: 1px solid rgba(0,0,0,0.05);
}

.coming-soon h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 15px;
    margin-top: 15px;
}

.coming-soon p {
    font-size: 1rem;
    color: var(--navy);
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Main Layout */
.main-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

/* Newsletter Section - Clean Card */
.newsletter {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 80px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-content {
    padding: 60px 40px;
}

.newsletter-header {
    text-align: center;
    margin-bottom: 40px;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.newsletter-desc {
    font-size: 1.1rem;
    color: var(--navy);
    opacity: 0.7;
}

/* Newsletter Form Styling */
.newsletter-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-field .required {
    color: #dc3545;
    margin-left: 4px;
}

.form-field input[type="text"],
.form-field input[type="email"] {
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--navy);
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(105, 204, 227, 0.1);
}

.form-footer {
    text-align: center;
    margin-top: 10px;
}

.form-success {
    display: none;
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 12px;
    background: rgba(105, 204, 227, 0.15);
    color: var(--navy);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-success.visible {
    display: block;
}

.newsletter-frame {
    display: none;
    width: 0;
    height: 0;
    border: none;
}

/* Partnerships - Clean Grid */
.partnerships {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 80px;
}

.partnerships h3 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 42px;
    color: var(--navy);
}

.partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.partner {
    padding: 26px 30px;
    background: #f7fafc;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(15, 32, 68, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.partner:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(105, 204, 227, 0.3);
}

.partner a {
    text-decoration: none;
    color: inherit;
}

.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(105, 204, 227, 0.15);
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(105, 204, 227, 0.25);
    border: none;
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(105, 204, 227, 0.35);
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--navy);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-submit {
    padding: 14px 40px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(105, 204, 227, 0.3);
}

.btn-submit:hover {
    background: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(105, 204, 227, 0.4);
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 60px 20px 40px;
    margin-top: 0;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

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

.social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: var(--white) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon i {
    font-size: 18px;
    color: var(--white) !important;
}

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .tagline { font-size: 2.2rem; }
    .sub-tagline { font-size: 1.1rem; }
    .form-row { grid-template-columns: 1fr; }
    .hero { height: auto; padding: 100px 20px; }
    .footer-content { flex-direction: column; text-align: center; }
    .coming-soon-container { margin-top: -40px; }
}
