/* ==========================================================================
   Variables & Base Styles
   ========================================================================== */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #4a4a4a;
    --accent-color: #e67e22;
    --background-color: #ffffff;
    --text-color: #333333;
    --border-color: #e1e1e1;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

strong {
    color: #333333;
}

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

/* ==========================================================================
   Accessibility
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-color);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: var(--transition);
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    background: var(--background-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.header__logo {
    height: auto;
    max-width: 200px;
}

/* Navigation */
.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem;
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--accent-color);
}

/* Navigation Toggle Button - Add here */
.nav__toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.nav__toggle-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__toggle-icon::before {
    top: -6px;
}

.nav__toggle-icon::after {
    bottom: -6px;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon {
    background-color: transparent;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.nav__menu-header {
    display: none; /* Hide by default on desktop */
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #2c2c2c; /* Fallback color */
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}

.hero__image--placeholder {
    filter: blur(20px);
    transform: scale(1.1); /* Prevents blur from showing edges */
    transition: opacity 0.3s ease-in-out;
}

.hero__image--main {
    z-index: 1;
}


/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    padding: 4rem 0;
    background-color: var(--background-color);
}

.services h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #000000;
    text-align: center;
}

.services__intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #333333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    margin-bottom: 3rem; /* Add space before pricing section */
}

/* Service Card Styles */
.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h2 {
    padding: 1.5rem;
    margin: 0;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.service-card__content {
    padding: 1.5rem;
}

/* Benefit List Styles */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.benefit-list strong {
    color: #c65102;
    display: block;
    margin-bottom: 0.25rem;
}

/* Service Steps Styles */
.service-steps {
    margin: 1.5rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.step-number {
    background-color: #c65102;
    color: #ffffff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Frequency Table Styles */
.frequency-table {
    margin: 1.5rem 0;
}

.frequency-item {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.frequency-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.frequency {
    color: #c65102;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.details {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Important Notes Styles */
.important-notes {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 4px;
}

.important-notes ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.important-notes li {
    position: relative;
    margin-bottom: 0.5rem;
}

.important-notes li::before {
    content: "!";
    position: absolute;
    left: -1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

.info-note {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 3px solid var(--accent-color);
    font-size: 0.9rem;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .services {
        padding: 2rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .service-card:hover {
        transform: none;
    }
}

/* Pricing Section Styles */
.pricing-section {
    padding: 0 1rem;
    margin-top: 4rem; /* Space after service cards */
}

/* Wide Service Card */
.service-card--wide {
    max-width: 1000px; /* Make it wider than regular cards */
    margin: 0 auto; /* Center it */
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa); /* Subtle gradient background */
    border: 1px solid var(--border-color);
}

.service-card--wide h2 {
    text-align: center;
    padding: 2rem 1.5rem; /* Larger padding */
    background: var(--primary-color);
    color: white;
    font-size: 1.75rem; /* Slightly larger title */
}

/* Price Boxes Layout */
.price-boxes {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 2rem; /* Add some horizontal padding */
}

@media (min-width: 768px) {
    .price-boxes {
        grid-template-columns: 1fr 1fr;
        gap: 3rem; /* Larger gap between price boxes */
    }
}

.price-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Enhanced Price Box Styling */
.price-amount {
    font-size: 2.5rem; /* Larger price */
    font-weight: bold;
    color: #c65102;
    margin: 1.5rem 0;
}

.price-includes {
    text-align: left;
    margin: 1.5rem 0;
}

.price-includes p {
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.price-includes ul {
    list-style: none;
    padding-left: 1.5rem;
}

.price-includes li {
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.price-includes li::before {
    content: "✓"; /* Checkmark instead of bullet */
    position: absolute;
    left: -1.5rem;
    color: var(--accent-color);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    color: #000000;
}

.pricing-intro p {
    color: #000000;
}

.pricing-intro strong {
    color: #000000;
    display: block;
    margin-top: 0.5rem;
    font-weight: 700;
}

.pricing-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 8px;
    text-align: center;
    font-style: italic;
    color: var(--secondary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-section {
        margin-top: 3rem;
    }

    .service-card--wide {
        margin: 0 1rem;
    }

    .price-boxes {
        padding: 0 1rem;
    }

    .price-box {
        padding: 1.5rem;
    }
}

/* Team section */
.team {
    padding: 4rem 0;
}

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

.team__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.team-card {
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 300px;
    position: relative;
    padding-bottom: 3.5rem;
    margin-bottom: 2rem;
}

.team-card__inner {
    overflow: hidden;
    border-radius: 8px;
}

.team-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-card__content {
    padding: 1.5rem;
}

.team-card__content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-card__link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.team-card__link:hover {
    color: var(--accent-color);
}

/* Location section */
.location {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.location__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.location__info {
    padding: 2rem;
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location__address {
    margin: 1.5rem 0;
    font-style: normal;
    line-height: 1.6;
}

.location__service-area {
    margin-top: 2rem;
}

.location__service-area ul {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.location__service-area li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
}

.location__service-area li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.location__map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.location__map iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Form validation styles */
.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input:invalid[aria-invalid="true"],
textarea:invalid[aria-invalid="true"] {
    border-color: #dc3545;
}

/* Loading button state */
.contact-form__submit {
    position: relative;
    min-width: 100px;
    /* Add any other button styles you want */
}

/* Hide button text when loading */
.contact-form__submit[disabled] .button-text {
    visibility: hidden;
}

/* Spinner styles */
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success message */
.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

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

.footer__social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer__social-link:hover {
    transform: scale(1.1);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav__toggle {
        display: block; /* Show on mobile */
    }

    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 1rem;
        flex-direction: column;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 1000;
    }

    .nav__menu.is-active {
        left: 0;
    }

    .nav__menu-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav__close {
        background: none;
        border: none;
        padding: 0.5rem;
        cursor: pointer;
        color: var(--primary-color);
        transition: color 0.3s ease;
    }

    .nav__close:hover {
        color: var(--accent-color);
    }

    .nav__link {
        display: block;
        padding: 1rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .nav__link:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }

    /* Add overlay when menu is open */
    .nav__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav__overlay.is-active {
        display: block;
    }
    
    .location__content {
        grid-template-columns: 1fr;
    }

    .location__map {
        min-height: 350px;
    }

    .team__grid {
        grid-template-columns: 1fr;
    }

    .footer__container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .header__logo {
        max-width: 160px;
    }

    .pricing {
        padding: 1rem;
    }

    .contact-form {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem; /* Changed from 0 to add space */
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px; /* Limit width */
    width: calc(100% - 2rem); /* Full width on mobile minus margins */
    background: rgba(255, 255, 255, 0.98); /* Lighter background */
    color: #000000;
    padding: 1.5rem;
    z-index: 1001;
    border-radius: 12px; /* Rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
    border: 1px solid #eee;
}

.cookie-content {
    color: #000000;
    font-weight: 600;
    max-width: 100%;
    margin: 0 auto;
}

.cookie-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #000000;
}

.cookie-text {
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #000000;
}

.cookie-text p:not(:last-child) {
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-button {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.cookie-button.accept {
    background-color: #c65102;
    color: #ffffff;
}

.cookie-button.accept:hover {
    background-color: #a34201;
}

.cookie-button.reject {
    background-color: #f8f9fa;
    border: 1px solid #666666;
    color: #333333;
}

.cookie-button.reject:hover {
    background-color: #e9ecef;
}

/* Make it slide up nicely */
@keyframes slideUp {
    from {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

.cookie-banner:not([style*="display: none"]) {
    animation: slideUp 0.3s ease-out;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-button {
        width: 100%;
    }
}

.cookie-advanced-info {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #000000;
}

.cookie-advanced-info summary {
    cursor: pointer;
    color: #000000;
    text-decoration: underline;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-advanced-info summary:hover {
    color: #d35400;
}

.cookie-privacy-tips {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.cookie-privacy-tips ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}

.cookie-privacy-tips li {
    padding: 0.25rem 0;
    gap: 0.5rem;
}

.cookie-privacy-tips a {
    color: var(--accent-color);
    text-decoration: none;
}

.cookie-privacy-tips a:hover {
    text-decoration: underline;
}

.cookie-privacy-tips li::before {
    content: "→";
    color: var(--accent-color);
}

.cookie-note {
    font-style: italic;
    margin-top: 0.5rem;
    color: #666;
}

details summary {
    color: #000000;
    font-weight: 500;
}

/* Maintenance Preview Styles */
.maintenance-preview {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

.maintenance-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.maintenance-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.quick-tips,
.warning-signs {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.quick-tips li,
.warning-signs li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.quick-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.warning-signs li::before {
    content: "!";
    position: absolute;
    left: 0;
    color: #dc3545;
}

.maintenance-card--warning {
    border: 2px solid #dc3545;
}

/* Modal Styles */
.modal {
    display: none;
    visibility: hidden;
}

.modal[aria-hidden="false"] {
    display: block;
    visibility: visible;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal__container {
    background-color: white;
    padding: 2rem;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 8px;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal__close {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.modal__close:hover {
    color: var(--accent-color);
}

.modal__content {
    margin: 2rem 0;
}

/* Modal Animation */
@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal[aria-hidden="false"] .modal__container {
    animation: modalIn 0.3s ease-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .maintenance-cards {
        grid-template-columns: 1fr;
    }

    .modal__container {
        width: 95%;
        padding: 1rem;
    }
}
/* Resources Section Styles */
.resources {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.resources__intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Guide Cards Grid */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Guide Card Styles */
.guide-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card__header {
    background: var(--primary-color);
    padding: 1.5rem;
}

.guide-card__header h3 {
    color: white;
    margin: 0;
    font-size: 1.25rem;
}

.guide-card__content {
    padding: 1.5rem;
}

.guide-card__content h4 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Warning Card Variant */
.guide-card--warning .guide-card__header {
    background-color: #dc3545;
}

.guide-card--warning {
    border: 2px solid #dc3545;
}

/* Checklist Styles */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Warning Checklist Variant */
.checklist--warning li::before {
    content: "!";
    color: #dc3545;
}

/* Warning Section Styles */
.warning-list {
    background-color: rgba(220, 53, 69, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
}

.warning-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.warning-cta p {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Additional Resources Styles */
.additional-resources {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.resource-link {
    display: block;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resource-link__title {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.resource-link__desc {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Button Styles */
.button--warning {
    background-color: #dc3545;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button--warning:hover {
    background-color: #c82333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .resources {
        padding: 2rem 0;
    }

    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .guide-card:hover {
        transform: none;
    }

    .resource-links {
        grid-template-columns: 1fr;
    }
}

/* Resources Preview Styles */
.resources-preview {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

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

.resource-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    padding: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    color: white;
}

.resource-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.resource-card p {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

/* Modal Content Styles */
.safety-section,
.heating-section,
.faq-item {
    margin-bottom: 2rem;
}

.safety-section h3,
.heating-section h3,
.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.safety-list,
.heating-section ul,
.heating-section ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.safety-distances {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.emergency-info {
    background: rgba(220, 53, 69, 0.1);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.emergency-info ol {
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.faq-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

/* Modal Button Styles */
.modal-trigger {
    background-color: #c65102;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.modal-trigger:hover {
    background-color: #a34201;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .resource-card {
        padding: 1.5rem;
    }

    .modal__container {
        padding: 1rem;
        margin: 1rem;
        max-height: 85vh;
    }
}

/* Print Styles */
@media print {
    .modal__container {
        position: static;
        transform: none;
    }

    .modal__close {
        display: none;
    }
}

/* Floating WA button */
.team-card__whatsapp-floating {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background-color: #075E54;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    z-index: 1;
    white-space: nowrap;
}

.team-card__whatsapp-floating:hover {
    background-color: #054640;
    transform: translate(-50%, 50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

.team-card__whatsapp-floating svg {
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-card {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .team-card__whatsapp-floating {
        position: relative;
        transform: none;
        left: 0;
        margin: 1rem auto;
        width: fit-content;
    }
    
    .team-card__whatsapp-floating:hover {
        transform: scale(1.05);
    }
}