/* ==========================================================================
   Blue Facility Services - Additional Sections Styles
   ========================================================================== */

/* Commercial & Home Services Section */
.commercial-home-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.commercial-home-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.commercial-home-services .section-header h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 20px;
    font-weight: 600;
}

.commercial-home-services .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.service-showcase-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.showcase-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-showcase-item:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52,73,102,0.8), rgba(240,215,26,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-badge {
    background: white;
    color: #344966;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.showcase-content {
    padding: 30px;
}

.showcase-content h3 {
    font-size: 1.5rem;
    color: #344966;
    margin-bottom: 15px;
    font-weight: 600;
}

.showcase-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(145deg, #f0d71a, #e6c617);
    color: #344966;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-learn-more:hover {
    background: linear-gradient(145deg, #e6c617, #dab815);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 215, 26, 0.4);
}

/* Short Rental Services Section */
.short-rental-services {
    padding: 80px 0;
    background: white;
}

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

.short-rental-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.short-rental-services .section-header h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 20px;
    font-weight: 600;
}

.short-rental-services .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.rental-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.rental-service-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.rental-service-card:hover {
    transform: translateY(-5px);
    border-color: #f0d71a;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rental-service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #344966, #f0d71a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.rental-service-card h3 {
    font-size: 1.8rem;
    color: #344966;
    margin-bottom: 20px;
    font-weight: 600;
}

.rental-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.rental-service-card .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(145deg, #f0d71a, #e6c617);
    color: #344966;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.rental-service-card:hover .btn {
    background: linear-gradient(145deg, #e6c617, #dab815);
    transform: translateY(-2px);
}

/* Strata Services Section */
.strata-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.strata-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.strata-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.strata-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.strata-info h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.2;
}

.strata-info p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.strata-features {
    display: grid;
    gap: 20px;
    margin-bottom: 35px;
}

.strata-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.strata-feature i {
    color: #f0d71a;
    font-size: 1.3rem;
    width: 20px;
}

.strata-feature span {
    color: #344966;
    font-weight: 500;
}

.strata-info .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(145deg, #344966, #11284b);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.strata-info .btn:hover {
    background: linear-gradient(145deg, #11284b, #0f1f3d);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(52, 73, 102, 0.3);
}

/* Support Services Section */
.support-services {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

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

.support-services .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-services .section-header h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 20px;
    font-weight: 600;
}

.support-services .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-carousel {
    position: relative;
    padding: 20px 0;
}

.support-carousel .swiper-slide {
    height: auto;
}

.support-service-card {
    background: linear-gradient(135deg, #344966, #11284b);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.support-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.support-service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(240, 215, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0d71a;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.support-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.support-service-card p {
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.support-carousel .swiper-button-next,
.support-carousel .swiper-button-prev {
    color: #344966;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: -25px;
}

.support-carousel .swiper-button-next:after,
.support-carousel .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 600;
}

.support-carousel .swiper-pagination-bullet {
    background: #344966;
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.support-carousel .swiper-pagination-bullet-active {
    background: #f0d71a;
    opacity: 1;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.pricing-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section .section-header h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f0d71a, #e6c617);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #344966, #11284b);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-card .service-icon {
    margin-bottom: 20px;
}

.pricing-card .service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.pricing-info .price {
    margin-bottom: 15px;
}

.price .period {
    display: block;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 5px;
}

.price .currency {
    font-size: 1.5rem;
    color: #f0d71a;
    font-weight: 600;
    vertical-align: top;
}

.price .amount {
    font-size: 3rem;
    color: #344966;
    font-weight: 700;
    line-height: 1;
}

.pricing-card.featured .price .currency {
    color: #344966;
}

.pricing-info h3 {
    font-size: 1.3rem;
    color: #344966;
    font-weight: 600;
    margin: 0;
}

.pricing-footer {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(145deg, #f0d71a, #e6c617);
    color: #344966;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #e6c617, #dab815);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 215, 26, 0.4);
}

.btn-secondary {
    background: linear-gradient(145deg, #344966, #11284b);
    color: white;
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #11284b, #0f1f3d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 73, 102, 0.4);
}

.btn i {
    margin-left: 8px;
}

.custom-solution-cta {
    text-align: left;
    padding: 50px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-solution-cta h3 {
    font-size: 1.8rem;
    color: #344966;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.4;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
}

/* Partner Logos Section */
.partner-logos-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

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

.partner-logos-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.partner-logos-section .section-header h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-logos-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.logo-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 80px;
}

.logo-carousel {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.logo-carousel:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    margin: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.logo-item img {
    max-height: 60px;
    max-width: 150px;
    object-fit: contain;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #f0d71a;
    box-shadow: 0 10px 30px rgba(240, 215, 26, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #344966;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #344966, #f0d71a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.google-reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.google-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    gap: 20px;
}

.google-logo {
    height: 30px;
}

.rating-info .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #344966;
    margin-right: 10px;
}

.review-count {
    color: #666;
    font-size: 0.9rem;
}

.google-reviews-section .section-header h2 {
    font-size: 2.5rem;
    color: #344966;
    margin-bottom: 15px;
    font-weight: 600;
}

.google-reviews-section .section-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #f0d71a;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #344966, #f0d71a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details h4 {
    margin: 0 0 5px 0;
    color: #344966;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.reviews-cta {
    text-align: center;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(145deg, #f0d71a, #e6c617);
    color: #344966;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.reviews-cta .btn:hover {
    background: linear-gradient(145deg, #e6c617, #dab815);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(240, 215, 26, 0.3);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #344966 0%, #11284b 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(240,215,26,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
}

.contact-cta-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.cta-text h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-options {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0d71a, #e6c617);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #344966;
    font-size: 1.2rem;
}

.contact-info h4 {
    color: white;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info a {
    color: #f0d71a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.contact-info span {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.4;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary {
    background: linear-gradient(145deg, #f0d71a, #e6c617);
    color: #344966;
}

.cta-buttons .btn-primary:hover {
    background: linear-gradient(145deg, #e6c617, #dab815);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(240, 215, 26, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-3px);
}

.cta-visual {
    position: relative;
}

.visual-card {
    position: relative;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.team-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52,73,102,0.8), rgba(240,215,26,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: #344966;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.guarantee-badge i {
    font-size: 2rem;
    color: #f0d71a;
    margin-bottom: 10px;
}

.guarantee-badge span {
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
}

.emergency-banner {
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 15px;
    padding: 30px;
    margin-top: 60px;
    border: 2px solid rgba(255,255,255,0.2);
}

.emergency-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.emergency-text h3 {
    color: white;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.emergency-text p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 1rem;
}

.btn-emergency {
    background: white;
    color: #dc3545;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive Styles for All New Sections */
@media (max-width: 768px) {
    .commercial-home-services,
    .short-rental-services,
    .strata-services,
    .support-services,
    .pricing-section,
    .partner-logos-section,
    .google-reviews-section {
        padding: 60px 0;
    }

    .contact-cta-section {
        padding: 80px 0;
    }

    .services-showcase,
    .rental-services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-showcase .service-showcase-item {
        min-width: auto;
    }

    .rental-services-grid .rental-service-card {
        min-width: auto;
        padding: 30px 25px;
    }

    .strata-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .strata-image {
        order: -1;
    }

    .strata-image img,
    .team-image {
        height: 300px;
    }

    .section-header h2,
    .strata-info h2,
    .cta-text h2 {
        font-size: 2rem;
    }

    .section-header p,
    .strata-info p {
        font-size: 1rem;
    }

    .showcase-content {
        padding: 25px;
    }

    .support-service-card {
        height: 300px;
        padding: 30px 25px;
    }

    .emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .services-showcase {
        grid-template-columns: 1fr;
    }

    .showcase-image {
        height: 200px;
    }

    .showcase-content {
        padding: 20px;
    }

    .rental-service-card {
        padding: 25px 20px;
    }

    .rental-service-card .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .support-service-card {
        height: 280px;
        padding: 25px 20px;
    }

    .support-service-card .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .custom-solution-cta {
        padding: 40px 20px;
    }

    .custom-solution-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-item {
        padding: 15px;
    }

    .emergency-banner {
        padding: 25px;
    }

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

    .stat-item {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}
