@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* --- Wave Web Hosting Styling - Consistent with IT Services Page --- */
:root {
    --wave-primary: #004d99;      /* Darker Main Brand Blue */
    --wave-secondary: #008cba;    /* Teal/Cyan Accent */
    --wave-light-bg: #f8f8f8;     /* Light Gray Background */
    --wave-text-dark: #1f2937;    /* Dark Headings */
    --wave-text-body: #4b5563;    /* Body Text */
    --wave-shadow-box: 0 4px 15px rgba(0, 0, 0, 0.08);
    --wave-shadow-hover: 0 8px 25px rgba(0, 119, 182, 0.2);
    --wave-icon-color: var(--wave-primary); 
}

/* This is the mandatory text/layout wrapper from your IT Services style */
div[itemprop="articleBody"] {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--wave-text-body);
    line-height: 1.6;
    margin: 0 auto;
    padding: 0;
    background-color: #fff;
}

/* General Section Wrapper - Sets max width and padding for sections */
.wave-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3em;
    color: var(--wave-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2em;
    color: var(--wave-text-body);
    max-width: 800px;
    margin: 0 auto;
}

/* HERO SECTION - MODIFIED FOR BACKGROUND IMAGE */
.wave-hero {
    margin-top: -5.5vh;
    z-index: 0;
    /* !!! IMPORTANT: REPLACE URL WITH YOUR IMAGE PATH !!! */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('path/to/your/hosting-image.jpg'); 
    background-color: #004d99;
    
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    
    color: white;
    padding: 150px 25px 120px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.hero-content h3 {
    font-size: 1.6em;
    margin-bottom: 40px;
    color: #b3e5fc;
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 40px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.primary-cta {
    background-color: var(--wave-secondary);
    color: white;
    border: 2px solid var(--wave-secondary);
    box-shadow: 0 4px 10px rgba(0, 140, 186, 0.5);
}

.primary-cta:hover {
    background-color: #007799;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 140, 186, 0.7);
}

.secondary-cta {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.secondary-cta:hover {
    background-color: white;
    color: var(--wave-primary);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

/* HOSTING CATEGORY GRID */
.hosting-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hosting-card {
    background-color: var(--wave-light-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--wave-shadow-box);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid var(--wave-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wave-shadow-hover);
    border-left: 5px solid var(--wave-primary);
}

.hosting-card i {
    font-size: 3em;
    color: var(--wave-primary);
    margin-bottom: 20px;
}

.hosting-card h4 {
    font-size: 1.6em;
    color: var(--wave-text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.hosting-card .ideal-for {
    font-size: 1.1em;
    color: var(--wave-secondary);
    font-weight: 600;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.hosting-card .description {
    margin-bottom: 30px;
    font-size: 1em;
    color: var(--wave-text-body);
}

.hosting-card .cta-link {
    background-color: var(--wave-secondary);
    color: white;
    padding: 16px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: background-color 0.3s;
    margin-top: auto; 
}

.hosting-card .cta-link:hover {
    background-color: var(--wave-primary);
}

/* CORE BENEFITS SECTION (Now uses .wave-light-bg for consistency) */
.benefits-section {
    background-color: var(--wave-light-bg);
}

.benefit-item-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.benefit-item {
    padding: 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--wave-shadow-box);
    transition: box-shadow 0.3s;
}

.benefit-item:hover {
    box-shadow: var(--wave-shadow-hover);
}

.benefit-item i {
    font-size: 3em;
    color: var(--wave-icon-color);
    margin-bottom: 15px;
    display: block;
}

.benefit-item h5 {
    font-size: 1.6em;
    color: var(--wave-text-dark);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    margin: 0;
    font-size: 1em;
    color: var(--wave-text-body);
}

/* CONTACT SECTION */
.contact-section {
    background-color: #ffffff;
    text-align: center;
}

.contact-box {
    background-color: var(--wave-light-bg);
    padding: 50px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-top: 8px solid var(--wave-secondary);
}

.contact-box h2 {
    color: var(--wave-primary);
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-cta-final {
    background-color: var(--wave-secondary);
    color: white;
    padding: 20px 50px;
    border-radius: 6px;
    font-size: 1.4em;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    margin-bottom: 30px;
    margin-top: 20px;
}

.contact-cta-final:hover {
    background-color: #007799;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 140, 186, 0.5);
}

/* Style for the final disclaimer and phone number line */
.contact-box .final-details {
    margin-top: 0;
    color: var(--wave-text-body);
    font-size: 1em;
    line-height: 1.5;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .wave-hero { 
        padding: 100px 20px 60px 20px;
        background-size: cover;
    }
    .hero-content h1 { font-size: 3em; }
    .hero-content h3 { font-size: 1.3em; }
    .wave-section { padding: 60px 20px; }
    .section-header h2 { font-size: 2.5em; }
    .hosting-comparison-grid { grid-template-columns: 1fr; }
    .contact-box { padding: 40px 25px; }
    .contact-box h2 { font-size: 2.5em; }
}