/* Thumb Cooling & Heating - Main Styles */

:root {
    --primary-color: #cf4834;
    --secondary-color: #2d76c1;
    --accent-color: #6694c6;
    --dark-color: #1f1f1f;
    --light-color: #ececec;
    --text-color: #333333;
    --white: #ffffff;
}

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

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

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

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

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

/* Sticky Header Wrapper */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Spacer to prevent content from hiding behind fixed header */
.header-spacer {
    height: 145px; /* Adjust based on header height */
}

/* Top Bar */
.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    color: var(--primary-color);
    margin-right: 5px;
}

.emergency-badge {
    background: var(--primary-color);
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: 600;
}

.top-bar-right a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}

.top-bar-right a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo img {
    max-height: 80px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.cta-phone {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.cta-phone label {
    display: block;
    font-size: 12px;
    margin-bottom: 3px;
}

.cta-phone a {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
}

.cta-phone i {
    transform: rotate(90deg);
    margin-right: 5px;
}

.cta-tagline {
    background: var(--accent-color);
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.cta-tagline a {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

/* Navigation */
.main-nav {
    background: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 25px;
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a {
    background: var(--primary-color);
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    list-style: none;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    border-bottom: 1px solid var(--light-color);
}

.dropdown li a:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/experienece-cool-performanc.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero .tagline {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: #b83d2d;
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1e5a9a;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light-color);
}

.section-dark {
    background: var(--dark-color);
    color: var(--white);
}

.section-blue {
    background: var(--secondary-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-title.light h2,
.section-title.light p {
    color: var(--white);
}

/* About Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.about-content h2 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-color);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 20px;
    background: var(--light-color);
}

.service-card h3 {
    padding: 20px;
    font-size: 18px;
    color: var(--secondary-color);
}

.service-card .btn {
    margin: 0 20px 20px;
    padding: 10px 25px;
    font-size: 14px;
}

/* Commercial Services */
.commercial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.commercial-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 30px;
}

.commercial-card img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.commercial-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.commercial-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.choose-card {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.choose-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Brands */
.brands-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.brands-grid img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Contact Form Section */
.contact-section-home {
    background: linear-gradient(rgba(45, 118, 193, 0.9), rgba(45, 118, 193, 0.9)), url('../images/experienece-cool-performanc.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
}

.contact-section-home h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section-home p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--white);
    padding: 15px 50px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #b83d2d;
}

/* Testimonials */
.testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial p::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 24px;
    margin-right: 10px;
}

.testimonial .author {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

/* Testimonials Carousel */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-carousel .testimonial {
    display: none;
}

.testimonial-carousel .testimonial.active {
    display: block;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--light-color);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot:hover {
    background: var(--accent-color);
}

.testimonial-dots .dot.active {
    background: var(--secondary-color);
}

/* Testimonials Page List */
.testimonials-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Footer */
.main-footer {
    background: var(--light-color);
    border-top: 8px solid var(--primary-color);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--secondary-color);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-contact {
    padding: 0;
    background: transparent;
    color: inherit;
    border-radius: 0;
    margin-top: 0;
}

.footer-contact h3 {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--primary-color);
}

.contact-item a,
.contact-item span {
    color: var(--secondary-color);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #3b5997;
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    background: var(--dark-color);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/experienece-cool-performanc.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-info-card i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background: var(--light-color);
    font-size: 16px;
}

.contact-page-form textarea {
    height: 150px;
}

.contact-page-form button {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
}

.contact-page-form button:hover {
    background: var(--primary-color);
}

/* Service Detail */
.service-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.service-sidebar {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

.service-sidebar h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-sidebar ul {
    list-style: none;
}

.service-sidebar ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.service-sidebar ul li a {
    color: var(--text-color);
}

.service-sidebar ul li a:hover {
    color: var(--primary-color);
}

/* Service Areas Section (above footer) */
.service-areas-section {
    background: var(--white);
    padding: 60px 0;
}

.service-areas-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.service-areas-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-areas-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    text-align: center;
}

.service-area-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.service-area-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Service Areas Grid (for about page) */
.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.service-area-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-area-tag:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Donation Form */
.donation-form .form-section {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.donation-form .form-section h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
    font-size: 20px;
}

.donation-form .form-section h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.donation-form .form-group {
    margin-bottom: 20px;
}

.donation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.donation-form .required {
    color: var(--primary-color);
}

.donation-form input[type="text"],
.donation-form input[type="email"],
.donation-form input[type="tel"],
.donation-form input[type="url"],
.donation-form input[type="date"],
.donation-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.donation-form input:focus,
.donation-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.donation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.donation-form .radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.donation-form .radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 20px;
    background: var(--light-color);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.donation-form .radio-label:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.donation-form .radio-label input[type="radio"] {
    margin-right: 8px;
}

.donation-form .radio-label input[type="radio"]:checked + span {
    font-weight: bold;
}

.donation-form .radio-label:has(input:checked) {
    background: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .donation-form .form-row {
        grid-template-columns: 1fr;
    }

    .donation-form .radio-group {
        flex-direction: column;
    }
}

/* Redesigned Donation Form */
.donation-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.donation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 24px;
    color: var(--white);
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.donation-form-container {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.donation-form-container h2 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    font-size: 24px;
}

.donation-form-clean .form-group {
    margin-bottom: 20px;
}

.donation-form-clean label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.donation-form-clean .required {
    color: var(--primary-color);
}

.donation-form-clean input[type="text"],
.donation-form-clean input[type="email"],
.donation-form-clean input[type="tel"],
.donation-form-clean input[type="date"],
.donation-form-clean textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.donation-form-clean input:focus,
.donation-form-clean textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(45, 118, 193, 0.1);
}

.donation-form-clean textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-error {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    color: #c62828;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-error i {
    font-size: 20px;
}

/* Donation Type Cards */
.donation-type-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.type-option {
    cursor: pointer;
}

.type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: var(--light-color);
    border: 2px solid var(--light-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.type-card i {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.type-card strong {
    font-size: 14px;
    color: var(--text-color);
}

.type-option:hover .type-card {
    border-color: var(--secondary-color);
    background: rgba(45, 118, 193, 0.05);
}

.type-option input[type="radio"]:checked + .type-card {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.type-option input[type="radio"]:checked + .type-card i,
.type-option input[type="radio"]:checked + .type-card strong {
    color: var(--white);
}

/* Yes/No Toggle */
.yes-no-toggle {
    display: flex;
    gap: 15px;
}

.toggle-option {
    cursor: pointer;
}

.toggle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.toggle-option span {
    display: inline-block;
    padding: 10px 30px;
    background: var(--light-color);
    border: 2px solid var(--light-color);
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-option:hover span {
    border-color: var(--secondary-color);
}

.toggle-option input[type="radio"]:checked + span {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Submit Button */
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary-color), #e05a47);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(207, 72, 52, 0.4);
}

.btn-submit i {
    font-size: 16px;
}

/* Success State */
.donation-success {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), #e05a47);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 2s infinite;
}

.success-icon i {
    font-size: 50px;
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(207, 72, 52, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(207, 72, 52, 0);
    }
}

.donation-success h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 28px;
}

.donation-success p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Donation Form Responsive */
@media (max-width: 1024px) {
    .donation-layout {
        grid-template-columns: 1fr;
    }

    .donation-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .donation-type-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .donation-info {
        flex-direction: column;
    }

    .info-card {
        min-width: auto;
    }

    .donation-form-container {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .donation-type-options {
        grid-template-columns: 1fr 1fr;
    }

    .type-card {
        padding: 15px 10px;
    }

    .type-card i {
        font-size: 24px;
    }

    .yes-no-toggle {
        flex-direction: column;
    }

    .toggle-option span {
        display: block;
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .commercial-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-spacer {
        height: 230px; /* Taller on mobile due to stacked elements */
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left span {
        display: block;
        margin: 5px 0;
    }

    .header-content {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
    }

    .cta-phone, .cta-tagline {
        width: 100%;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li > a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
    }

    .dropdown-open .dropdown {
        display: block;
    }

    .dropdown li a {
        color: var(--white);
        border-color: rgba(255,255,255,0.1);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-section,
    .contact-grid,
    .service-detail {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .commercial-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-contact {
        margin-top: 0;
    }
}

/* ===========================================
   Residential Services Page - Professional Styling
   =========================================== */

/* Service Section Header */
.service-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.service-section-header .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #e05a47);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-section-header .service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-section-header h2 {
    margin: 0;
    font-size: 32px;
    color: var(--secondary-color);
}

/* Service Content Styling */
.service-content {
    padding-right: 20px;
}

.service-content > p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Service Lists with Cards */
.service-list-section {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border-left: 4px solid var(--secondary-color);
}

.service-list-section h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list-section h3 i {
    color: var(--primary-color);
    font-size: 18px;
}

.service-list-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.service-list-section ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.service-list-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

/* Benefits List - Highlight Box */
.benefits-highlight {
    background: linear-gradient(135deg, rgba(45, 118, 193, 0.08), rgba(102, 148, 198, 0.08));
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 25px 30px;
    margin-bottom: 25px;
}

.benefits-highlight h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-highlight h3 i {
    color: var(--secondary-color);
}

.benefits-highlight ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.benefits-highlight ul li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

.benefits-highlight ul li::before {
    content: '\f005';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 13px;
}

/* Financing/Emergency Callout */
.service-callout {
    background: linear-gradient(135deg, var(--primary-color), #e05a47);
    color: var(--white);
    padding: 20px 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-callout i {
    font-size: 28px;
    opacity: 0.9;
}

.service-callout p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

/* Updated Sidebar Styling */
.service-sidebar-pro {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 160px;
}

.sidebar-section {
    padding: 25px;
    border-bottom: 1px solid var(--light-color);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-section h3 i {
    color: var(--primary-color);
}

/* Quick Links in Sidebar */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 8px;
}

.quick-links li a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--light-color);
    border-radius: 8px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.quick-links li a:hover,
.quick-links li a.active {
    background: var(--secondary-color);
    color: var(--white);
}

.quick-links li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Phone CTA in Sidebar */
.sidebar-phone {
    background: linear-gradient(135deg, var(--primary-color), #e05a47);
    padding: 25px;
    text-align: center;
}

.sidebar-phone p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    font-size: 14px;
}

.sidebar-phone a {
    display: block;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.sidebar-phone a i {
    margin-right: 8px;
}

/* Brands in Sidebar */
.sidebar-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sidebar-brands span {
    background: var(--light-color);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-color);
    font-weight: 500;
}

/* Sidebar Image */
.sidebar-image {
    width: 100%;
    height: auto;
    display: block;
}

.sidebar-image-container {
    padding: 20px;
}

.sidebar-image-container img {
    width: 100%;
    border-radius: 10px;
}

/* Service Action Button */
.service-content .btn {
    margin-top: 10px;
}

/* Responsive for Service Lists */
@media (max-width: 1024px) {
    .service-list-section ul,
    .benefits-highlight ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-section-header {
        flex-direction: column;
        text-align: center;
    }

    .service-section-header h2 {
        font-size: 26px;
    }

    .service-sidebar-pro {
        position: static;
    }

    .service-callout {
        flex-direction: column;
        text-align: center;
    }
}
