/* GLOBAL */
body {
    margin: 0;
    background: #1a1f2e;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    color: #e8eaf0;
}

/* HEADER */
.corporate-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 10px 30px;
    position: sticky;
    top: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    height: 60px;
}

/* Header groups: left (logo + title) */
.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* LOGO */
.corporate-logo {
    width: 50px;
    height: auto;
}

/* TITLE */
.header-title {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* HORIZONTAL NAV */
.header-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.header-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.2s;
    padding: 5px 10px;
    border-radius: 4px;
}

.header-nav a:hover {
    color: #5dade2;
    background: rgba(93, 173, 226, 0.1);
}

@media (max-width: 768px) {
    .corporate-header {
        flex-direction: column;
        height: auto;
        padding: 15px;
        gap: 10px;
    }
    
    .header-nav {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .header-nav a {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .deals, .packages, .hosting {
        padding: 60px 20px;
        background-size: auto 60% !important;
    }
    
    .deals h2, .packages h2, .hosting h2 {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .deals-header {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .deals-grid, .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .corporate-logo {
        width: 40px;
    }
    
    .header-title {
        font-size: 1rem;
    }
}

/* HERO */
.hero {
    background:
        linear-gradient(rgba(26, 31, 46, 0.75), rgba(26, 31, 46, 0.85)),
        url("rustic_city_logo.jpg"),
        url("wood-beams-in-water-by-city.jpg");
    background-size: cover, 420px, cover;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: center, center, center;
    padding: 150px 20px;
    text-align: center;
    border-bottom: 3px solid #4a6278;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #5dade2;
    font-weight: 700;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    color: #d6dce5;
}

/* SECTION GENERAL */
.deals {
    padding: 110px 40px 90px;
    background: 
        linear-gradient(115deg, 
            transparent 0%, 
            transparent calc(35% - 1.5px), 
            #2980b9 calc(35% - 1.5px),
            #5dade2 calc(35% + 1.5px),
            #ffffff calc(35% + 1.5px), 
            #ffffff 100%),
        url("networking_two.jpg") left center / auto 60% no-repeat,
        #3498db;
    text-align: center;
    border-bottom: 3px solid #4a6278;
    position: relative;
}

.deals-header {
    margin-left: auto;
    margin-right: 0;
    width: 63%;
    text-align: center;
    margin-bottom: 40px;
}

.packages {
    padding: 110px 40px 90px;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.5)),
        url("receiving-shipping-box.jpg") center center / cover no-repeat;
    text-align: center;
    border-bottom: 3px solid #e0e0e0;
}

.hosting {
    padding: 80px 40px;
    background: 
        linear-gradient(115deg, 
            #ffffff 0%, 
            #ffffff calc(65% - 1.5px), 
            #5dade2 calc(65% - 1.5px),
            #2980b9 calc(65% + 1.5px),
            transparent calc(65% + 1.5px), 
            transparent 100%),
        url("man_with_laptop.jpg") right center / auto 60% no-repeat,
        #3498db;
    text-align: center;
    position: relative;
}

.deals h2, .hosting h2 {
    font-size: 2.4rem;
    color: #5dade2;
    margin-bottom: 25px;
    font-weight: 700;
}

.packages h2 {
    font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

/* GRID */
.deals-grid, .package-grid, .hosting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 40px auto;
}

/* CARDS */
.deal-card, .hosting-card {
    background: linear-gradient(145deg, #2a3547 0%, #1e2633 100%);
    border: 2px solid #4a6278;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: 0.3s ease-in-out;
}

.package {
    background: #ffffff;
    border: 2px solid #3498db;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(52, 152, 219, 0.2);
    transition: 0.3s ease-in-out;
}

.deal-card:hover, .hosting-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 25px rgba(93, 173, 226, 0.4),
        0 0 40px rgba(93, 173, 226, 0.25);
    border-color: #5dade2;
}

.package:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 30px rgba(52, 152, 219, 0.4);
    border-color: #2980b9;
}

.deal-card h3, .hosting-card h3 {
    color: #5dade2;
    margin-bottom: 10px;
    font-weight: 600;
}

.package h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.deal-card ul, .hosting-card ul {
    list-style: none;
    padding: 0;
    color: #d6dce5;
    font-size: 1rem;
}

.package ul {
    list-style: none;
    padding: 0;
    color: #34495e;
    font-size: 1rem;
}

.deal-card li, .hosting-card li {
    margin: 6px 0;
}

.package li {
    margin: 6px 0;
    color: #2c3e50;
}

.package p {
    color: #2c3e50;
}

/* BUTTONS */
.select-btn, .submit-btn {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.3s;
    font-weight: 600;
}

.select-btn:hover, .submit-btn:hover {
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(93, 173, 226, 0.3);
}

/* SECTION INTRO TEXT */
.section-intro {
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 400;
}

.deals .section-intro {
    color: #2c3e50;
    font-weight: 500;
}

.packages .section-intro {
    color: #2c3e50;
    font-weight: 500;
}

.hosting .section-intro {
    color: #2c3e50;
    font-weight: 500;
}

/* CONTACT MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 3000;
}

.modal-content {
    background: linear-gradient(145deg, #2a3547 0%, #1e2633 100%);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    border: 2px solid #4a6278;
}

.modal-content #closeModal {
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #5dade2;
    cursor: pointer;
}

.modal-content h2 {
    color: #5dade2;
    margin-bottom: 20px;
}

.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 6px;
    border: 1px solid #4a6278;
    background: #1a1f2e;
    color: #e8eaf0;
    font-size: 16px;
}

.modal-content label {
    display: block;
    margin-bottom: 5px;
    color: #d6dce5;
    font-weight: 500;
}

/* Honeypot: visually hidden but present in DOM for bot detection */
.hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .holiday-icon {
        display: none;
    }
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 40px;
    background: #2c3e50;
    margin-top: 60px;
    border-top: 3px solid #4a6278;
}

.footer p {
    margin: 0;
    color: #d6dce5;
}
