/* --- VARIABLES --- */
:root {
    --navy: #1B263B;
    --blue: #415A77;
    --grey: #E0E1DD;
    --light-blue: #778DA9;
    --white: #FFFFFF;
}

/* --- RESET & GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--navy); line-height: 1.7; scroll-behavior: smooth; }
.container { width: 90%; max-width: 1100px; margin: auto; }
.text-center { text-align: center; }
.accent { color: var(--light-blue); }

/* --- NAVIGATION --- */
.navbar { background: var(--navy); padding: 1.2rem 0; position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 2rem; }
.nav-links a { color: var(--grey); text-decoration: none; transition: 0.3s; font-size: 0.9rem; }
.nav-links a:hover { color: var(--white); }
.nav-btn { background: var(--blue); padding: 0.5rem 1rem; border-radius: 4px; }

/* --- LOGO --- */
.logo-wrapper { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; cursor: pointer; }
.logo-box { display: flex; align-items: center; font-size: 2rem; font-weight: 700; color: var(--white); }
.tech { color: var(--light-blue); }
.tagline { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--grey); margin-top: 4px; }

/* --- HERO --- */
.hero { height: 85vh; background: linear-gradient(rgba(27, 38, 59, 0.8), rgba(27, 38, 59, 0.8)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1500'); background-size: cover; display: flex; align-items: center; color: var(--white); }
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; }
.hero p { font-size: 1.1rem; max-width: 600px; margin-bottom: 2rem; color: var(--grey); }

/* --- FOUNDERS SECTION --- */
.founders-grid { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-top: 40px; }
.founder-card h3 { font-size: 1.8rem; color: var(--navy); margin-bottom: 5px; }
.founder-role { color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }

/* --- WELCOME SECTION --- */
.welcome-section { padding: 100px 0 60px; background-color: var(--white); }
.welcome-tag { color: var(--blue); text-transform: uppercase; letter-spacing: 3px; font-size: 0.9rem; margin-bottom: 10px; }
.welcome-section h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 25px; }
.welcome-text { max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #555; line-height: 1.8; }
.welcome-divider { width: 60px; height: 4px; background: var(--light-blue); margin: 40px auto 0; border-radius: 2px; }

/* --- BUTTONS --- */
.btn { padding: 0.8rem 1.8rem; text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--blue); color: white; border: 1px solid var(--blue); }
.btn-outline { border: 1px solid var(--grey); color: var(--grey); }

/* --- CORE VALUES --- */
.values-section { padding: 100px 0; background-color: var(--white); }
.section-title { font-size: 2.2rem; margin-bottom: 3rem; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.value-item { padding: 20px; border-left: 3px solid var(--grey); transition: 0.4s; }
.value-item:hover { border-left: 3px solid var(--light-blue); background: rgba(224, 225, 221, 0.2); }
.value-number { font-size: 3rem; font-weight: 800; color: var(--grey); opacity: 0.5; font-family: 'Courier New', monospace; }

/* --- SERVICES --- */
.services { padding: 5rem 0; background: var(--grey); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { background: white; padding: 2.5rem; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card ul { list-style: none; margin-top: 1rem; text-align: left; }
.card li::before { content: "• "; color: var(--blue); font-weight: bold; }
/* --- PRICING SECTION LAYOUT --- */
.pricing-section { padding: 80px 0; background: var(--grey); }

.pricing-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch; /* Keeps all cards in a row the same height */
    gap: 20px;
    flex-wrap: wrap;       /* FIXED: Allows cards to move to the next line on desktop */
    margin-bottom: 20px;
}

.pricing-card {
    flex: 1; 
    min-width: 300px;     /* FIXED: Prevents cards from getting too skinny */
    max-width: 350px;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-radius: 10px;
}

/* --- PRICING SECTION LAYOUT --- */
.pricing-section { padding: 80px 0; background: var(--grey); }

.pricing-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch; /* Keeps all cards in a row the same height */
    gap: 20px;
    flex-wrap: wrap;       /* FIXED: Allows cards to move to the next line on desktop */
    margin-bottom: 20px;
}

.pricing-card {
    flex: 1; 
    min-width: 300px;     /* FIXED: Prevents cards from getting too skinny */
    max-width: 350px;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-radius: 10px;
}

/* Updated Pricing Note for better visibility and placement */
.pricing-note {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto; 
    padding: 20px;
    background: #f8fafc; /* Light background to separate from grey section */
    border-left: 5px solid var(--blue);
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    border-radius: 0 8px 8px 0;
    clear: both;
}

/* Contact Section Fix for Desktop */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;      /* FIXED: Stacks info and form on mobile, side-by-side on desktop */
    gap: 50px;
    margin-top: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 320px;     /* FIXED: Ensures form elements have enough space */
}

/* --- NETWORKING ROW LAYOUT --- */
.networking-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.net-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--blue);
}

.net-label { font-weight: 600; color: var(--navy); }
.net-price { font-weight: 700; color: var(--blue); font-size: 1.1rem; }

/* --- CATEGORY TITLES --- */
.category-title {
    text-align: left;
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid var(--light-blue);
    padding-bottom: 5px;
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-icon { width: 30px; height: 30px; margin-right: 10px; }

/* Mobile Support */
@media (max-width: 900px) {
    .pricing-row, .networking-row {
        flex-direction: column;
    }
    .pricing-card.featured { transform: scale(1); }
}
/* --- CONTACT --- */
.contact {
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 40px;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}


.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--soft-grey);
    margin-bottom: 5px;
}


contact-form input, 
.contact-form textarea {
    width: 100% !important;
    padding: 12px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid var(--grey);
    background-color: var(--white) !important; /* Forces white background */
    color: var(--navy) !important; /* Forces dark text you can actually see */
    font-size: 1rem;
    display: block;
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

/* --- FOOTER --- */
footer { text-align: center; padding: 2rem; background: #0b111a; color: #777; font-size: 0.8rem; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
}
