/* Base Styles and Variables */
:root {
    --navy: #1E3A8A;
    --light-blue: #3B82F6;
    --white: #FFFFFF;
    --orange: #F97316;
    --light-gray: #f4f4f4;
    --gray: #808080;
    --dark-gray: #333;
    --coral: #FF7F50;
}

/* Reset & Global Styles */
html {
    height: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: var(--light-gray);
    cursor: none; /* Hide default OS cursor for the body */
    min-height: 100%; /* Use min-height for body to allow content to expand it */
    background-image: url('images/water_background.png');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Homepage specific background */
body.homepage {
    /* background-image, attachment, position, repeat, size REMOVED */
    /* Other homepage-specific styles (like transparent sections, text colors) will be generalized next */
}

/* Make sections transparent to show body background */
.hero,
.benefits,
.services-overview,
.testimonials,
.process-section,
.about-snippet {
    background-color: transparent;
}

/* Global text colors for better contrast with dark background */
.hero-content h1,
.hero-content p,
.hero-content ul li,
.benefits > .container > h2,
.benefits > .container > h2 + p,
.services-overview > .container > h2,
.testimonials > .container > h2,
.process-section > .container > h2,
.process-section .process-step h3,
.process-section .process-step p,
.about-snippet > .container > h2,
.about-snippet > .container > p {
    color: var(--white); /* Ensures these specific texts are bright white */
}

.hero-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

.benefit-item,
.package-item,
.testimonial-item {
    background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent white - 30% transparent */
}

.hero-image img,
.benefit-item img,
.testimonial-item img {
    opacity: 0.65; /* 65% transparent for blending */
}

/* Restore dark text color inside semi-transparent boxes for readability */
.benefit-item p,
.package-item .package-description, /* Assuming descriptive <p> might need a class, or target p directly */
.testimonial-item p {
    color: var(--dark-gray);
}

.package-item p { /* General rule for paragraphs inside package items if no specific class */
    color: var(--dark-gray);
}

.testimonial-item .customer-name {
    color: var(--white);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 4rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--coral);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--orange);
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--orange);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #e05e00; /* Darker orange */
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--coral); /* UPDATED from --navy */
    border: 2px solid var(--coral); /* UPDATED from --navy */
}

.btn-secondary:hover {
    background-color: var(--coral); /* UPDATED from --navy */
    color: var(--white);
    transform: translateY(-2px);
}

/* Header */
header {
    background-color: #0f172a; /* UPDATED: Solid dark navy */
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow might need adjustment or removal */
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--light-gray); /* UPDATED from --navy (for consistency if shown) */
}

/* Logo Styles */
#company-logo {
    max-height: 100px; /* Increased from 50px */
    width: auto;
    display: block;
}

.logo-link {
    display: inline-block; /* Ensures the link wraps the image correctly */
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

header nav ul li a {
    text-decoration: none;
    color: var(--light-gray); /* UPDATED from --dark-gray */
    font-weight: 500;
    position: relative;
}

header nav ul li a:hover {
    color: var(--coral); /* UPDATED from --light-blue */
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--coral); /* UPDATED from --light-blue */
    transition: width 0.3s ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white); /* UPDATED from --coral */
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.hero-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.hero-content ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.hero-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Hero additional styles */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.btn-link {
    color: var(--coral);
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--light-blue);
    transform: translateX(5px);
}

/* Benefits Section */
.benefits {
    /* background-color: #f9fbff; */ /* CONFLICTING - COMMENTED OUT */
    padding: 5rem 0;
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.65; /* 65% transparent for blending */
}

.benefit-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white); /* UPDATED from --navy */
}

/* Services Overview Section */
.services-overview {
    padding: 5rem 0;
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-item {
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white); /* UPDATED from --navy */
}

.package-item .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin: 1.5rem 0;
}

.package-item:nth-child(2) {
    border: 2px solid var(--light-blue);
    transform: scale(1.05);
    z-index: 2;
}

.package-item:nth-child(2)::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--light-blue);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Package item lists */
.package-item ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    text-align: left;
}

.package-item ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--dark-gray); /* Ensure list item text is dark */
}

.package-item ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral); /* UPDATED from --light-blue */
}

/* Testimonials Section */
.testimonials {
    /* background-color: #f9fbff; */ /* CONFLICTING - COMMENTED OUT */
    padding: 5rem 0;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-item {
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-item .rating {
    color: #ffc107; /* Gold star color */
    margin-bottom: 1rem;
}

.testimonial-item .customer-name {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white); /* UPDATED from --navy */
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* About Snippet Section */
.about-snippet {
    padding: 5rem 0;
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
    text-align: center;
}

.about-snippet p {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Contact CTA Section */
.contact-cta {
    background-color: var(--navy);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.contact-cta h2 {
    color: var(--white);
}

.contact-cta p {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #b8c7e0; /* Light blue-gray */
}

.contact-info-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-form-preview {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: #0f172a; /* Dark navy */
    color: #b8c7e0; /* Light blue-gray */
    padding: 4rem 0 2rem;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #b8c7e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--orange);
}

.footer-section .certification-logo {
    max-height: 50px; /* Consistent with inline styles used */
    width: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the image scales nicely */
    margin-top: 10px; /* Spacing from the heading or other content */
    display: block; /* Helps with centering if needed, and ensures it's on its own line */
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Trust indicators */
.trust-indicators {
    text-align: center;
    margin-top: 2rem;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* Spacing between logos */
    justify-content: center; /* Center logos if they don't fill the space */
    align-items: center; /* Align logos vertically */
    margin-top: 2rem;
}

.partner-logos img {
    max-height: 60px; /* Adjust as needed */
    width: auto;     /* Maintain aspect ratio */
    object-fit: contain; /* Ensures the image scales nicely within the bounds */
}

.certification-logos .certification-logo {
    max-height: 60px; /* Consistent with partner logos */
    width: auto;
    object-fit: contain;
    display: block; /* For consistency and if centering is needed */
    margin: 10px auto; /* Basic top/bottom margin and auto for horizontal centering */
}

/* Process section */
.process-section {
    /* background-color: var(--white); */ /* CONFLICTING - COMMENTED OUT */
    padding: 5rem 0;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
}

.process-steps:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--light-blue);
    z-index: 0;
}

.process-step {
    flex: 1;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Social links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
}

/* Newsletter form */
.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 4px 0 0 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background-color: var(--light-blue);
    border: none;
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #2563eb; /* Darker blue */
}

/* Styles for the image following the cursor, as per the new document */
#waterShield {
    position: fixed; /* Stay relative to the viewport */
    pointer-events: none; /* Ignore pointer events (click-through) */
    transform: translateX(-50%); /* Center horizontally under cursor */
    display: none; /* Hide initially until we position it */
    width: 100px; /* Example size (adjust as needed) */
    height: auto; /* Maintain aspect ratio */
    z-index: 9999; /* Ensure it's above most content but potentially below custom modal popups if any */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content ul li {
        text-align: left;
    }
    
    .service-packages {
        grid-template-columns: 1fr;
    }
    
    .package-item:nth-child(2) {
        transform: scale(1);
    }
    
    .testimonials-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-steps:before {
        display: none;
    }
    
    .step-number {
        margin-bottom: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input, 
    .newsletter-form button {
        border-radius: 4px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    header nav {
        display: none; /* For mobile menu toggle */
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Animations for scroll effects */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Restore OS cursor for interactive elements */
a,
button,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="checkbox"],
input[type="radio"],
select,
label, /* Labels associated with form controls are often clickable */
.btn-primary, /* Assuming these are already styled elsewhere */
.btn-secondary,
[role="button"],
[onclick] { /* Elements with an onclick attribute are often interactive */
    cursor: pointer; /* Show pointer hand for these elements */
}

/* Specific cursors for text inputs */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
textarea {
    cursor: text; /* Show text selection cursor for text input fields */
}

/* Styles for responsive square map embeds */
.map-embed,
.service-area-map {
    position: relative;
    height: 0; /* Height is controlled by padding-bottom */
    overflow: hidden;
    margin: 1rem auto; /* Vertical spacing and horizontal centering */
    /* width is controlled by max-width */
}

.map-embed {
    max-width: 350px; /* Max width for the main contact map */
    padding-bottom: 350px; /* Height for square aspect ratio */
}

.service-area-map {
    max-width: 250px; /* Max width for the smaller service area map */
    padding-bottom: 250px; /* Height for square aspect ratio */
}

.map-embed iframe,
.service-area-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ====================================
   Blog Page Styles
   ==================================== */

.blog-listing .container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--white); /* UPDATED from --navy */
}

.blog-listing .container > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    color: var(--text-muted);
}

.blog-list {
    list-style: none;
    padding: 0;
}

.blog-list-item {
    background-color: rgba(255, 255, 255, 0.3); /* UPDATED: 30% transparent white */
    border: 1px solid #eee; /* Border might need adjustment against dark background */
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.blog-list-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-list-item a {
    text-decoration: none;
    color: inherit; /* Inherit text color from parent */
}

.blog-list-item h3 {
    color: var(--white); /* UPDATED from --navy */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.8em;
}

.blog-list-item p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--dark-gray); /* UPDATED for contrast */
}

.post-meta-listing {
    font-size: 0.9em;
    color: var(--gray); /* UPDATED for contrast */
    margin-top: 15px;
}

.read-more {
    color: var(--accent-orange);
    font-weight: bold;
}

/* ====================================
   Individual Blog Post Styles
   ==================================== */

.blog-post .container {
    max-width: 800px; /* Optimal reading width */
}

.blog-post-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.blog-post-header h1 {
    font-size: 2.5em;
    color: var(--white); /* UPDATED from --navy */
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.post-meta {
    font-size: 0.95em;
    color: var(--text-muted);
    margin-bottom: 0;
}

.blog-post-content h2 {
    font-size: 1.8em;
    color: var(--white); /* UPDATED from --navy */
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-post-content h3 {
    font-size: 1.5em;
    color: var(--white); /* UPDATED from --light-blue */
    margin-top: 30px;
    margin-bottom: 10px;
}

.blog-post-content p,
.blog-post-content li {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.blog-post-content ul, .blog-post-content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.blog-post-content strong {
    color: var(--navy);
}

.blog-post-content em {
    color: var(--text-muted);
}

.blog-post-content blockquote {
    border-left: 4px solid var(--light-blue);
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #f4f8ff; /* Very light blue */
    font-style: italic;
}

.blog-post-content .text-link {
    color: var(--accent-orange);
    text-decoration: underline;
}

.blog-post-content .text-link:hover {
    text-decoration: none;
}

.author-bio {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}

.author-bio .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95em;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.comparison-table th {
    background-color: var(--navy);
    color: var(--white);
    font-weight: bold;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table td:first-child {
    font-weight: bold;
    color: var(--light-blue);
}

.comparison-table td {
    color: var(--text-dark);
}

.comparison-table td:not(:first-child) {
    text-align: center; /* Center align star ratings */
}

/* Responsive adjustments for blog */
@media (max-width: 768px) {
    .blog-post-header h1 {
        font-size: 2em;
    }
    .blog-post-content h2 {
        font-size: 1.6em;
    }
    .blog-post-content h3 {
        font-size: 1.3em;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 8px;
        font-size: 0.9em;
    }
}

/* ====================================
   Collapsible Package Details & FAQ Styles
   ==================================== */

/* Package Details Styles */
.package-summary {
    margin-bottom: 1.5rem;
}

.key-features {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.key-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--dark-gray);
}

.key-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-weight: bold;
}

/* Read More Button Styles */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--coral);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-read-more:hover {
    background-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.read-more-icon {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-read-more.active .read-more-icon {
    transform: rotate(180deg);
}

.btn-read-more.active .read-more-text::after {
    content: " Less";
}

.btn-read-more.active .read-more-text {
    position: relative;
}

.btn-read-more.active .read-more-text::before {
    content: "Show";
}

/* Collapsible Content Styles */
.package-details-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    margin-top: 1rem;
}

.package-details-content.active {
    max-height: 2000px; /* Large enough to accommodate all content */
    padding: 1.5rem;
}

.package-details-content h4 {
    color: var(--white); /* UPDATED from --coral */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.package-details-content h4:first-child {
    margin-top: 0;
}

.package-details-content ul {
    color: var(--dark-gray);
}

.package-details-content ul li {
    margin-bottom: 0.5rem;
}

/* FAQ Styles */
.faq-item {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    color: var(--white); /* UPDATED from --navy */
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    border-radius: 8px;
}

.faq-question:hover {
    color: var(--coral);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--coral);
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 8px 8px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Section padding utility */
.section-padding {
    padding: 4rem 0;
}

/* Popular badge styling */
.popular-badge {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

/* Responsive adjustments for collapsible content */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 0 1rem 1rem 1rem;
    }
    
    .package-details-content.active {
        padding: 1rem;
    }
    
    .btn-read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Testimonial Collapsible Styles */
.testimonial-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    margin-top: 1rem;
}

.testimonial-content.active {
    max-height: 300px;
    padding: 1.5rem;
}

.testimonial-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.testimonial-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    margin-top: 1rem;
}

/* Responsive testimonial adjustments */
@media (max-width: 768px) {
    .testimonial-content.active {
        padding: 1rem;
        max-height: 250px;
    }
    
    .testimonial-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Installation Phase Collapsible Styles */
.installation-phase {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.phase-summary {
    margin-bottom: 1rem;
}

.installation-phase-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    margin-top: 1rem;
}

.installation-phase-content.active {
    max-height: 3000px; /* Large enough for installation content */
    padding: 1.5rem;
}

.installation-phase-content h3 {
    color: var(--white); /* UPDATED from --coral */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.installation-phase-content h3:first-child {
    margin-top: 0;
}

.installation-phase-content h4 {
    color: var(--white); /* UPDATED from --navy */
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.installation-phase-content ul {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.installation-phase-content ul li {
    margin-bottom: 0.5rem;
}

/* Installation phase responsive adjustments */
@media (max-width: 768px) {
    .installation-phase {
        padding: 1rem;
    }
    
    .installation-phase-content.active {
        padding: 1rem;
        max-height: 2500px;
    }
}

/* About Page Collapsible Styles */
.about-section {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 2rem;
    padding: 1.5rem;
}

.about-summary {
    margin-bottom: 1rem;
}

.about-section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    margin-top: 1rem;
}

.about-section-content.active {
    max-height: 1000px;
    padding: 1.5rem;
}

.about-section-content p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* About page responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 1rem;
    }
    
    .about-section-content.active {
        padding: 1rem;
        max-height: 800px;
    }
}

/* Force all headers to be white - Override any conflicting styles */
h1, h2, h3, h4, h5, h6,
.hero-content h1,
.benefit-item h4,
.package-item h3,
.testimonial-item .customer-name,
.blog-listing .container h2,
.blog-list-item h3,
.blog-post-header h1,
.blog-post-content h2,
.blog-post-content h3,
.package-details-content h4,
.faq-question,
.installation-phase-content h3,
.installation-phase-content h4,
.about-section h2 {
    color: var(--white) !important;
}

/* Services Page - Package Detail Sections */
.package-detail {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.package-detail h3 {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.package-detail p {
    color: var(--dark-gray) !important;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.package-detail strong {
    color: var(--navy) !important;
}

.package-summary h4 {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.package-summary p {
    color: var(--dark-gray) !important;
} 