/* --- External CSS Imports (Load these via @import) --- */
/* Poppins Font for IT Services Theme */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');
/* Font Awesome Icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');


/* --- Variable Definitions --- */
: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); 
}

/* Base Styling for IT Services Page Consistency */
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 */
.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 --- */
.wave-hero {
    /* !!! IMPORTANT: REPLACE URL WITH YOUR IMAGE PATH !!! */
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)),
        url('../../../images/vps1.png'); 
    background-color: #004d99;
    
    /* --- NEW/REVISED DECLARATIONS START HERE --- */
    background-size: 100% auto; /* Sets width to 100%, height auto */
    margin-top: -5.5vh;         /* Moves up to overlap previous element */
    z-index: 0;                 /* Sets layer beneath a header/menu */
    /* --- NEW/REVISED DECLARATIONS END HERE --- */
    
    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; /* Ensures content is always above the hero background */
}

.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);
}

/* --- VPS PRICING GRID (Single Row Horizontal Scroll) --- */
.pricing-grid {
    display: flex; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    gap: 30px;
    padding-bottom: 20px; 
}

.pricing-card {
    flex: 0 0 320px; 
    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: var(--wave-shadow-box);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wave-shadow-hover);
    border-color: var(--wave-secondary);
}

.pricing-card-header {
    border-bottom: 2px solid var(--wave-light-bg);
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.pricing-card h3 {
    font-size: 2.2em;
    color: var(--wave-primary);
    font-weight: 800;
    margin-bottom: 5px;
}

.price-tag {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--wave-text-dark);
    margin: 10px 0 0 0;
}

.price-tag .currency {
    font-size: 0.7em;
    vertical-align: top;
    font-weight: 600;
    color: var(--wave-primary);
}

.price-tag .period {
    font-size: 0.3em;
    font-weight: 400;
    color: var(--wave-text-body);
    vertical-align: top;
}

.annual-offer {
    color: var(--wave-secondary);
    font-weight: 600;
    margin-top: 5px;
}

.vps-features-list {
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    font-size: 1em;
    flex-grow: 1; 
}

.vps-features-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.vps-features-list li:last-child {
    border-bottom: none;
}

.vps-features-list li i {
    color: var(--wave-secondary);
    margin-right: 10px;
    font-size: 1.1em;
    width: 20px;
}

/* --- ADD-ONS SECTION STYLES --- */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.addon-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.addon-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--wave-secondary);
}

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

.addon-card h4 {
    font-size: 1.5em;
    color: var(--wave-text-dark);
    margin-top: 0;
    font-weight: 700;
}

.addon-card p {
    font-size: 0.95em;
}

/* --- INCLUDED FEATURES SECTION --- */
.value-prop-section {
    background-color: var(--wave-primary);
    color: white;
    padding: 50px 25px;
}

.included-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.included-feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--wave-secondary);
    text-align: center;
}

.included-feature-item i {
    font-size: 2.5em;
    color: white;
    margin-bottom: 10px;
}

.included-feature-item h5 {
    font-size: 1.4em;
    font-weight: 700;
    margin: 0;
}

/* --- ACCORDION FAQ STYLES (CRITICAL: display: none;) --- */
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--wave-light-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--wave-shadow-box);
    overflow: hidden;
}

.accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    background-color: #fff;
    color: var(--wave-text-dark);
    font-weight: 600;
    font-size: 1.15em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: #f2f2f2;
}

.accordion-header i {
    color: var(--wave-secondary);
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
    color: var(--wave-primary);
}

.accordion-content {
    padding: 0 30px;
    color: var(--wave-text-body);
    background-color: var(--wave-light-bg);
    /* THIS IS CRITICAL FOR INITIAL HIDDEN STATE */
    display: none; 
}

.accordion-content-inner {
    padding: 20px 0 30px 0;
}

.accordion-content p {
    margin-top: 0;
}

.accordion-content strong {
    color: var(--wave-text-dark);
}

/* --- 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);
}

.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;
    }
    .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; }
    .contact-box { padding: 40px 25px; }
    .contact-box h2 { font-size: 2.5em; }
}