/* ==================================================================================
   CSS STYLING FOR SSL LANDING PAGE (WHITE/GREY BASE WITH SECTIGO GREEN/BLUE ACCENTS)
   ==================================================================================
*/

/* --- All External Links Imported Here via @import --- */
/* 1. FONT AWESOME ICONS LIBRARY (REQUIRED FOR ICONS) */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');

/* 2. GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;600&display=swap');


/* --- Variable Definitions (Updated to Sectigo Colors) --- */
:root {
    /* Sectigo Primary Colors */
    --sectigo-green: #00B373; 	 	 /* Primary Green (Jade) */
    --sectigo-dark-blue: #1D53A5; 	 /* Deep Blue */
    --sectigo-accent-gold: #F0B542; 	 /* Gold/Yellow Accent */

    /* Neutral Colors */
    --sectigo-light-bg: #F9F9F9; 	 	 /* Very light grey background */
    --sectigo-dark-text: #2c3e50; 	 /* Dark text */
    --sectigo-body-text: #34495e; 	 /* Body text */
    --sectigo-white: #ffffff;
}

/* Base Styling */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--sectigo-body-text);
    line-height: 1.7;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--sectigo-dark-text);
    line-height: 1.2;
}
.wave-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 25px;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-header h2 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--sectigo-green); /* PRIMARY SECTIGO GREEN */
    margin: 20px auto 0;
    border-radius: 2px;
}
.section-header p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* --- HERO SECTION (GRADIENT BANNER: BLUE to GREEN) --- */
.ssl-hero {
    position: relative;
    /* GRADIENT BACKGROUND: Deep Blue to Sectigo Green */
    background-image:
        linear-gradient(to right, rgba(29, 83, 165, 0.9), rgba(0, 179, 115, 0.85)),
        url('../../../images/ssl.jpg'); /* Placeholder image URL - CHANGE THIS */
    background-size: 100% auto;
    margin-top: -5.5vh; 
    z-index: 0;
    background-position: center;
    color: var(--sectigo-white);
    padding: 180px 25px 120px;
    text-align: center;
    overflow: hidden;
    border-bottom-left-radius: 50% 20px;
    border-bottom-right-radius: 50% 20px;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}
.hero-content h1 {
    font-size: 4.2em;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--sectigo-white);
}
.hero-content p {
    font-size: 1.6em;
    font-weight: 400;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* --- CTA Buttons (Global Style) --- */
.cta-buttons-container { margin-bottom: 15px; }
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    margin: 10px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
/* Primary CTA (Sectigo Green) */
.primary-cta {
    background-color: var(--sectigo-green); /* PRIMARY SECTIGO GREEN */
    color: var(--sectigo-white);
    border: 2px solid var(--sectigo-green);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.primary-cta:hover {
    background-color: var(--sectigo-dark-blue); /* Hover to Deep Blue */
    border-color: var(--sectigo-dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
/* Secondary CTA (White/Transparent on Gradient) */
.secondary-cta {
    background-color: transparent;
    color: var(--sectigo-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--sectigo-white);
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
/* Small CTA for inside packages (LEAD GENERATION STYLES) */
.package-cta {
    display: block;
    width: 90%;
    margin: 20px auto 0;
    padding: 12px 20px;
    font-size: 1em;
    text-transform: none;
    border-radius: 6px;
    background-color: var(--sectigo-green);
    color: var(--sectigo-white);
    border: 1px solid var(--sectigo-green);
}
.package-cta:hover {
    background-color: var(--sectigo-dark-blue);
    border-color: var(--sectigo-dark-blue);
    transform: translateY(-2px);
}
/* EV Package CTA Styling */
.package-cta.quote-cta {
    background-color: var(--sectigo-green); 
    border-color: var(--sectigo-green);     
}
.package-cta.quote-cta:hover {
    background-color: var(--sectigo-dark-blue);
    border-color: var(--sectigo-dark-blue);
}


/* --- CORE BENEFITS SECTION --- */
.benefits-section {
    background-color: var(--sectigo-white);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: center;
}
.benefit-item {
    background-color: var(--sectigo-light-bg); /* Use light grey background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid var(--sectigo-accent-gold); /* GOLD ACCENT */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.benefit-item i {
    font-size: 3.5em;
    color: var(--sectigo-dark-blue); /* DEEP BLUE ACCENT */
    margin-bottom: 20px;
}
.benefit-item h3 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
}
.trust-callout {
    margin-top: 60px;
    padding: 20px;
    background-color: #E8EDF4; /* A slightly lighter blue-grey for contrast (based on #1D53A5) */
    border-left: 5px solid var(--sectigo-dark-blue);
    border-radius: 5px;
    text-align: center;
}
.trust-callout p {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--sectigo-dark-text);
}

/* --- CERTIFICATE TYPES SECTION (4 Packages) --- */
.types-section {
    background-color: var(--sectigo-light-bg); /* Use light grey background */
}
.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}
.type-item {
    position: relative; 
    background-color: var(--sectigo-white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid var(--sectigo-green); /* Default SECTIGO GREEN */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* EV Package Highlight: Change border to Gold Accent */
.type-item:last-child {
    border-bottom: 5px solid var(--sectigo-accent-gold);
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.type-item:last-child:hover {
     transform: translateY(-5px) scale(1.02);
}

.type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.type-item i {
    font-size: 3em;
    color: var(--sectigo-accent-gold); /* GOLD ACCENT */
    margin-bottom: 15px;
}
.type-item h3 {
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
}
.package-details {
    text-align: left; 
    padding-left: 0;
    margin-top: 15px;
    list-style: none; 
    flex-grow: 1; 
    margin-bottom: 10px; 
}
.package-details li {
    position: relative;
    padding-left: 20px; 
    margin-bottom: 8px;
    font-size: 0.95em;
}
.package-details li::before {
    content: "\f00c"; /* Font Awesome checkmark icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--sectigo-green); /* Green checkmark */
    font-size: 0.9em;
}

/* EV Package "Recommended" Badge */
.type-item:last-child::before {
    content: 'MAXIMUM TRUST';
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--sectigo-dark-blue);
    color: var(--sectigo-white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.7em;
    padding: 5px 10px;
    border-bottom-left-radius: 8px;
    letter-spacing: 0.5px;
}


/* --- FAQ / ACCORDION STYLES --- */
.faq-section { background-color: var(--sectigo-white); }
.accordion-container { max-width: 800px; margin: 0 auto; }
.accordion-item {
    background-color: var(--sectigo-light-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    background-color: var(--sectigo-white);
    color: var(--sectigo-dark-text);
    font-weight: 600;
    font-size: 1.1em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}
.accordion-header:hover { background-color: #f0f0f0; }
.accordion-header i {
    color: var(--sectigo-green); /* PRIMARY SECTIGO GREEN */
    transition: transform 0.3s;
}
.accordion-header.active i { transform: rotate(180deg); }
.accordion-content {
    padding: 0 30px;
    color: var(--sectigo-body-text);
    background-color: var(--sectigo-light-bg);
    display: none;
}
.accordion-content-inner { padding: 20px 0 30px 0; border-top: 1px dashed #eee; }
.accordion-content-inner ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
    line-height: 1.6;
}
.accordion-content-inner strong { color: var(--sectigo-dark-text); }


/* --- FINAL CTA SECTION --- */
.contact-cta-section {
    background-color: var(--sectigo-dark-blue); /* DEEP BLUE */
    color: var(--sectigo-white);
    padding: 80px 25px;
    text-align: center;
    border-top: 5px solid var(--sectigo-accent-gold); /* GOLD ACCENT */
}
.contact-cta-section h2 {
    color: var(--sectigo-white);
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 20px;
}
.contact-cta-section p {
    font-size: 1.3em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}
.contact-cta-section .cta-button.primary-cta {
    background-color: var(--sectigo-white);
    color: var(--sectigo-dark-blue);
    border-color: var(--sectigo-white);
}
.contact-cta-section .cta-button.primary-cta:hover {
    background-color: var(--sectigo-green); /* Hover to Sectigo Green */
    color: var(--sectigo-white);
    border-color: var(--sectigo-green);
}
.contact-cta-section .cta-button.secondary-cta {
    color: var(--sectigo-white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}
.contact-cta-section .cta-button.secondary-cta:hover {
    background-color: rgba(255, 255, 255, 0.15);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3.5em; }
    .hero-content p { font-size: 1.3em; }
    .wave-section { padding: 60px 20px; }
    .section-header h2 { font-size: 2.5em; }
    .benefits-grid { grid-template-columns: 1fr; }
    .types-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); } /* 2x2 grid */
    .benefit-item, .type-item { max-width: 500px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .ssl-hero { padding: 120px 20px 80px; }
    .hero-content h1 { font-size: 2.8em; }
    .hero-content p { font-size: 1.1em; }
    .section-header h2 { font-size: 2em; }
    .section-header p { font-size: 1em; }
    .cta-button { padding: 15px 30px; font-size: 1em; }
    .accordion-header { font-size: 1em; padding: 15px 20px; }
    .contact-cta-section h2 { font-size: 2.2em; }
    .types-grid { grid-template-columns: 1fr; } /* Stack packages */
}