/**
 * Hero Roofing Widget Styles
 * Mobile-First Responsive Design
 */
 
.hero-roofing-container {
    width: 100%;
    position: relative; 
    overflow: hidden;
} 
 
.hero-roofing-content {
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
}

/* Title Styles - Mobile First */
.hero-roofing-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    padding: 0;
    word-wrap: break-word;
}

.hero-roofing-title .highlight {
    display: inline;
}

/* Subtitle Styles - Mobile First */
.hero-roofing-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    padding: 0;
    max-width: 100%;
}

/* Iframe Wrapper - Mobile First */
.hero-roofing-iframe-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 0 2rem 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero-roofing-iframe {
    width: 100%;
    border: none;
    display: block;
    border-radius: 8px;
}

/* Features - Mobile First */
.hero-roofing-features {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    flex-wrap: wrap;
} 

.hero-roofing-feature {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: auto;
    max-width: none;
    flex: 0 1 auto;
}

.hero-roofing-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
}

.hero-roofing-feature-icon i,
.hero-roofing-feature-icon svg {
    color: #ffffff;
    display: block;
    font-size: 0.85rem;
}

.hero-roofing-feature-icon svg {
    width: 0.85rem;
    height: 0.85rem;
}

.hero-roofing-feature-text {
    font-size: 0.8rem;
    line-height: 1.3;
    text-align: left;
    white-space: nowrap;
    flex: 0 1 auto;
}

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .hero-roofing-content {
        padding: 3rem 2rem;
    }

    .hero-roofing-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .hero-roofing-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 80%;
    }

    .hero-roofing-iframe-wrapper {
        max-width: 90%;
        margin-bottom: 2.5rem;
    }

    .hero-roofing-features {
        flex-direction: row;
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
    }

    .hero-roofing-feature {
        width: auto;
        max-width: none;
        flex: 0 0 auto;
        gap: 0.75rem;
    }

    .hero-roofing-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .hero-roofing-feature-icon i,
    .hero-roofing-feature-icon svg {
        font-size: 1rem;
    }

    .hero-roofing-feature-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .hero-roofing-feature-text {
        font-size: 0.95rem;
    }

    .hero-roofing-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }

    .hero-roofing-feature-text {
        font-size: 1rem;
        white-space: nowrap;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .hero-roofing-content {
        padding: 4rem 2rem;
        max-width: 1200px;
    }

    .hero-roofing-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-roofing-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        max-width: 70%;
    }

    .hero-roofing-iframe-wrapper {
        max-width: 800px;
        margin-bottom: 3rem;
    }

    .hero-roofing-features {
        gap: 2rem;
    }

    .hero-roofing-feature {
        gap: 0.75rem;
    }

    .hero-roofing-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    .hero-roofing-feature-icon i,
    .hero-roofing-feature-icon svg {
        font-size: 1.1rem;
    }

    .hero-roofing-feature-icon svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .hero-roofing-feature-text {
        font-size: 1.1rem;
        white-space: normal;
    }
}

/* Large Desktop Styles (1440px and up) */
@media (min-width: 1440px) {
    .hero-roofing-content {
        padding: 5rem 2rem;
    }

    .hero-roofing-title {
        font-size: 4rem;
    }

    .hero-roofing-subtitle {
        font-size: 1.35rem;
        max-width: 65%;
    }

    .hero-roofing-iframe-wrapper {
        max-width: 900px;
    }
}

/* Accessibility: Focus states */
.hero-roofing-iframe:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-roofing-iframe-wrapper {
        display: none;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

.hero-roofing-animated {
    opacity: 0;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

/* Fade In */
@keyframes hero-roofing-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-roofing-fadeIn {
    animation-name: hero-roofing-fadeIn;
}

/* Fade In Up */
@keyframes hero-roofing-fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-fadeInUp {
    animation-name: hero-roofing-fadeInUp;
}

/* Fade In Down */
@keyframes hero-roofing-fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-fadeInDown {
    animation-name: hero-roofing-fadeInDown;
}

/* Fade In Left */
@keyframes hero-roofing-fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-fadeInLeft {
    animation-name: hero-roofing-fadeInLeft;
}

/* Fade In Right */
@keyframes hero-roofing-fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-fadeInRight {
    animation-name: hero-roofing-fadeInRight;
}

/* Bounce In */
@keyframes hero-roofing-bounceIn {
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.hero-roofing-bounceIn {
    animation-name: hero-roofing-bounceIn;
}

/* Bounce In Up */
@keyframes hero-roofing-bounceInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 100px, 0) scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: translate3d(0, -20px, 0) scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: translate3d(0, 10px, 0) scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, -5px, 0) scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: translate3d(0, 0, 0) scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
}

.hero-roofing-bounceInUp {
    animation-name: hero-roofing-bounceInUp;
}

/* Bounce In Down */
@keyframes hero-roofing-bounceInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100px, 0) scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: translate3d(0, 20px, 0) scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: translate3d(0, -10px, 0) scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        transform: translate3d(0, 5px, 0) scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: translate3d(0, 0, 0) scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    }
}

.hero-roofing-bounceInDown {
    animation-name: hero-roofing-bounceInDown;
}

/* Slide In Up */
@keyframes hero-roofing-slideInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-slideInUp {
    animation-name: hero-roofing-slideInUp;
}

/* Slide In Down */
@keyframes hero-roofing-slideInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-slideInDown {
    animation-name: hero-roofing-slideInDown;
}

/* Slide In Left */
@keyframes hero-roofing-slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-slideInLeft {
    animation-name: hero-roofing-slideInLeft;
}

/* Slide In Right */
@keyframes hero-roofing-slideInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.hero-roofing-slideInRight {
    animation-name: hero-roofing-slideInRight;
}

/* Zoom In */
@keyframes hero-roofing-zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.hero-roofing-zoomIn {
    animation-name: hero-roofing-zoomIn;
}

/* Flip In X */
@keyframes hero-roofing-flipInX {
    from {
        opacity: 0;
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
    }
    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    }
    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px);
    }
}

.hero-roofing-flipInX {
    animation-name: hero-roofing-flipInX;
    backface-visibility: visible;
}

/* Flip In Y */
@keyframes hero-roofing-flipInY {
    from {
        opacity: 0;
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
    }
    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }
    60% {
        opacity: 1;
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    }
    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px);
    }
}

.hero-roofing-flipInY {
    animation-name: hero-roofing-flipInY;
    backface-visibility: visible;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-roofing-animated {
        animation: none !important;
        opacity: 1 !important;
    }

    .roofing-stat-item {
        animation: none !important;
        opacity: 1 !important;
    }

    .roofing-stat-value {
        animation: none !important;
    }
}

/* ============================================
   ROOFING STATS WIDGET
   ============================================ */

.roofing-stats-container {
    width: 100%;
    padding: 3rem 1rem;
}

.roofing-stats-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.roofing-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 1 auto;
    min-width: 0;
    opacity: 0; 
    animation: roofing-stat-fadeIn 0.6s ease-out forwards;
}

.roofing-stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.roofing-stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.roofing-stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.roofing-stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.roofing-stat-item:nth-child(5) {
    animation-delay: 0.5s;
}

.roofing-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    animation: roofing-stat-pulse 2s ease-in-out infinite;
}

.roofing-stat-label {
    font-size: 0.7rem;
    line-height: 1.3;
    color: #666666;
    white-space: nowrap;
}

/* Stats Animations */
@keyframes roofing-stat-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes roofing-stat-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-stats-list {
        flex-direction: row;
        gap: 1.5rem;
        padding: 0 2rem;
    }

    .roofing-stat-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .roofing-stat-value {
        font-size: 2.5rem;
    }

    .roofing-stat-label {
        font-size: 0.9rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-stats-container {
        padding: 4rem 2rem;
    }

    .roofing-stats-list {
        gap: 2.5rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .roofing-stat-value {
        font-size: 3rem;
    }

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

/* ============================================
   ROOFING PROCESS WIDGET
   ============================================ */

.roofing-process-container {
    width: 100%;
    padding: 3rem 1rem;
    text-align: center;
}

.roofing-process-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #000000;
}

.roofing-process-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    color: #000000;
    max-width: 100%;
}

.roofing-process-steps {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center; 
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.roofing-process-step-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    min-width: 0;
    position: relative;
    flex: 0 0 auto;
}

.roofing-process-step {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 1rem 0.75rem;
    width: auto;
    min-width: 160px;
    max-width: 180px;
    display: flex; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.roofing-process-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.roofing-process-step-title {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    color: #000000;
}

.roofing-process-step-description {
    font-size: 0.7rem;
    line-height: 1.4;
    margin: 0;
    color: #666666;
}

.roofing-process-arrow {
    display: none;
}

.roofing-process-arrow svg {
    width: 100%;
    height: 100%;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-process-container {
        padding: 4rem 2rem;
    }

    .roofing-process-title {
        font-size: 2.5rem;
    }

    .roofing-process-subtitle {
        font-size: 1.1rem;
        max-width: 80%;
        margin: 0 auto 3rem auto;
    }

    .roofing-process-steps {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .roofing-process-step-wrapper {
        flex-direction: row;
        align-items: center;
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
    }

    .roofing-process-step {
        max-width: 100%;
        padding: 2rem 1.5rem;
    }

    .roofing-process-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .roofing-process-step-title {
        font-size: 1.35rem;
    }

    .roofing-process-step-description {
        font-size: 1rem;
    }

    .roofing-process-arrow {
        transform: rotate(0deg);
        margin: 0 0.5rem;
    }
} 

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-process-container {
        padding: 5rem 2rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .roofing-process-title {
        font-size: 3rem;
    }

    .roofing-process-subtitle {
        font-size: 1.25rem;
        max-width: 70%;
    }

    .roofing-process-steps { 
        gap: 1.5rem;
        overflow-x: visible;
        padding-bottom: 0;
        justify-content: space-between;
        width: 100%;
    }

    .roofing-process-step-wrapper {
        flex: 1 1 0;
        min-width: 0;
    }

    .roofing-process-step {
        min-width: 0;
        max-width: 100%;
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .roofing-process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .roofing-process-arrow {
        display: flex;
        transform: rotate(0deg);
        margin: 0 1rem;
    }

    .roofing-process-step-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .roofing-process-step-description {
        font-size: 1.05rem;
    }

    .roofing-process-arrow {
        width: 32px;
        height: 32px;
        margin: 0 1rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-process-container {
        padding: 6rem 2rem;
        max-width: 100%;
    }

    .roofing-process-title {
        font-size: 3.5rem;
    }

    .roofing-process-steps {
        gap: 2rem;
    }

    .roofing-process-step {
        padding: 2.5rem 2rem;
    }
}

/* ============================================
   ROOFING TESTIMONIALS WIDGET
   ============================================ */

.roofing-testimonials-container {
    width: 100%;
    padding: 3rem 1rem;
    background-color: #f5f5f5;
}

.roofing-testimonials-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    text-align: center;
    color: #000000;
}

.roofing-testimonials-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    text-align: center;
    color: #000000;
}

.roofing-testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
}

/* ============================================
   ROOFING TESTIMONIALS SWIPER STYLES
   ============================================ */

/* Slider Wrapper - Contains everything */
.roofing-testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px 3rem 80px;
}

/* Swiper Container */
.roofing-testimonials-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
 
.roofing-testimonials-swiper .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: stretch;
}
.swiper-button-prev.roofing-testimonials-swiper-button-prev, .swiper-button-next.roofing-testimonials-swiper-button-next {
    width: 40px;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px !important;
}

.roofing-testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}

.roofing-testimonials-swiper .swiper-slide .roofing-testimonial-card {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Navigation Buttons - Outside the Swiper container */
.roofing-testimonials-swiper-button-prev,
.roofing-testimonials-swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    color: #ff6b35;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.roofing-testimonials-swiper-button-prev::after,
.roofing-testimonials-swiper-button-next::after {
    font-size: 20px;
    font-weight: 700;
    color: #ff6b35;
}

.roofing-testimonials-swiper-button-prev:hover,
.roofing-testimonials-swiper-button-next:hover {
    background-color: #ff6b35;
    transform: translateY(-50%) scale(1.1);
}

.roofing-testimonials-swiper-button-prev:hover::after,
.roofing-testimonials-swiper-button-next:hover::after {
    color: #ffffff;
}

.roofing-testimonials-swiper-button-prev:active,
.roofing-testimonials-swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
}

.roofing-testimonials-swiper-button-prev {
    left: 0;
}

.roofing-testimonials-swiper-button-next {
    right: 0;
}

/* Pagination */
.roofing-testimonials-swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto !important;
}

.roofing-testimonials-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #cccccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.roofing-testimonials-swiper-pagination .swiper-pagination-bullet-active {
    background-color: #ff6b35;
    width: 24px;
    border-radius: 6px;
}

.roofing-testimonials-swiper-pagination .swiper-pagination-bullet:hover {
    background-color: #ff6b35;
    opacity: 0.7;
}

.roofing-testimonial-card {
    background-color: #ffffff;
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.roofing-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.roofing-testimonial-stars {
    color: #ffd700;
    font-size: 1.25rem;
    line-height: 1;
}

.roofing-testimonial-stars .star {
    display: inline-block;
}

.roofing-testimonial-stars .star.filled {
    color: #ffd700;
}

.roofing-testimonial-quotes {
    font-size: 4rem;
    line-height: 1;
    color: #ffb380;
    opacity: 0.5;
    font-family: Georgia, serif;
}

.roofing-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    color: #333333;
}

.roofing-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roofing-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.roofing-testimonial-info {
    flex: 1;
}

.roofing-testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 0.25rem 0;
    color: #000000;
}

.roofing-testimonial-location {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    color: #666666;
}

.roofing-testimonial-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666666;
}

.verified-icon {
    color: #4caf50;
    font-weight: 700; 
}

/* Mobile/Phone Styles */
@media (max-width: 767px) {
    .roofing-testimonials-container {
        padding: 2.5rem 1rem;
    }

    .roofing-testimonials-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .roofing-testimonials-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .roofing-testimonials-swiper {
        padding: 0 0 2.5rem 0;
    }

    .roofing-testimonial-card {
        padding: 1.75rem 1.5rem;
        margin-bottom: 0;
        border-radius: 12px;
    }

    .roofing-testimonial-header {
        margin-bottom: 1.25rem;
    }

    .roofing-testimonial-stars {
        font-size: 1.1rem;
    }

    .roofing-testimonial-quotes {
        font-size: 3rem;
    }

    .roofing-testimonial-text {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .roofing-testimonial-footer {
        gap: 1rem;
    }

    .roofing-testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .roofing-testimonial-name {
        font-size: 0.95rem;
    }

    .roofing-testimonial-location {
        font-size: 0.85rem;
    }

    .roofing-testimonial-verified {
        font-size: 0.8rem;
    }

    .roofing-testimonials-slider-wrapper {
        padding: 0 50px 2.5rem 50px;
    }

    .roofing-testimonials-swiper-button-prev,
    .roofing-testimonials-swiper-button-next {
        width: 40px;
        height: 40px;
    }

    .roofing-testimonials-swiper-button-prev::after,
    .roofing-testimonials-swiper-button-next::after {
        font-size: 16px;
    }

    .roofing-testimonials-swiper-button-prev {
        left: 0;
    }

    .roofing-testimonials-swiper-button-next {
        right: 0;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-testimonials-container {
        padding: 4rem 2rem;
    }

    .roofing-testimonials-title {
        font-size: 2.5rem;
    }

    .roofing-testimonials-subtitle {
        font-size: 1.1rem;
    }

    .roofing-testimonials-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .roofing-testimonials-slider-wrapper {
        padding: 0 60px 2.5rem 60px;
    }

    .roofing-testimonials-swiper-button-prev {
        left: 0;
        width: 40px;
        height: 40px;
    }

    .roofing-testimonials-swiper-button-prev::after,
    .roofing-testimonials-swiper-button-next::after {
        font-size: 16px;
    }

    .roofing-testimonials-swiper-button-next {
        right: 0;
        width: 40px;
        height: 40px;
    }

    .roofing-testimonial-card {
        flex: 1 1 calc(50% - 1rem);
        min-width: 280px;
        background-color: #ffffff !important;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-testimonials-container {
        padding: 5rem 2rem;
        margin: 0 auto;
    }

    .roofing-testimonials-title {
        font-size: 3rem;
    }

    .roofing-testimonials-subtitle {
        font-size: 1.25rem;
    }

    .roofing-testimonials-list {
        gap: 2.5rem;
    }

    .roofing-testimonial-card {
        background-color: #ffffff !important;
    }

    .roofing-testimonials-slider-wrapper { 
        padding: 0 80px 3rem 80px;
    }

    .roofing-testimonials-swiper-button-prev {
        left: 0;
    }

    .roofing-testimonials-swiper-button-next {
        right: 0;
    }

    .roofing-testimonial-card {
        flex: 1 1 calc(33.333% - 1.67rem);
        padding: 2.5rem 2rem;
    }
}

/* ============================================
   ROOFING WHY CHOOSE US WIDGET
   ============================================ */

.roofing-why-choose-container {
    width: 100%;
    padding: 3rem 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.roofing-why-choose-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    text-align: center;
    color: #ffffff;
}

.roofing-why-choose-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    text-align: center;
    color: #ffffff;
}

.roofing-why-choose-list {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.roofing-why-choose-card {
    background-color: #2a2a2a;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    flex: 0 1 calc(50% - 0.375rem);
    min-width: 0;
}

.roofing-why-choose-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    color: #ffffff;
}

.roofing-why-choose-icon i,
.roofing-why-choose-icon svg {
    font-size: 24px;
    color: #ffffff;
}

.roofing-why-choose-card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.roofing-why-choose-card-description {
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    color: #ffffff;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-why-choose-container {
        padding: 4rem 2rem;
    }

    .roofing-why-choose-title {
        font-size: 2.5rem;
    }

    .roofing-why-choose-subtitle {
        font-size: 1.1rem;
    }

    .roofing-why-choose-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .roofing-why-choose-card {
        flex: 1 1 calc(50% - 0.625rem);
        min-width: 280px;
        padding: 2rem 1.5rem;
    }

    .roofing-why-choose-icon {
        width: 70px;
        height: 70px;
    }

    .roofing-why-choose-icon i,
    .roofing-why-choose-icon svg {
        font-size: 35px;
    }

    .roofing-why-choose-card-title {
        font-size: 1.1rem;
    }

    .roofing-why-choose-card-description {
        font-size: 0.9rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-why-choose-container {
        padding: 5rem 2rem;
        margin: 0 auto;
    }

    .roofing-why-choose-title {
        font-size: 3rem;
    }

    .roofing-why-choose-subtitle {
        font-size: 1.25rem;
    }

    .roofing-why-choose-list {
        gap: 1.5rem;
        padding: 0% 8%;
    }

    .roofing-why-choose-card {
        flex: 1 1 calc(25% - 1.125rem);
        padding: 2rem 1.5rem;
    }

    .roofing-why-choose-icon {
        width: 80px;
        height: 80px;
    }

    .roofing-why-choose-icon i,
    .roofing-why-choose-icon svg {
        font-size: 40px;
    }

    .roofing-why-choose-card-title {
        font-size: 1.25rem;
    }

    .roofing-why-choose-card-description {
        font-size: 0.95rem;
    }
}

/* ============================================
   ROOFING SERVICES WIDGET
   ============================================ */

.roofing-services-container {
    width: 100%;
    padding: 3rem 1rem;
    background-color: #ffffff;
}

.roofing-services-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    text-align: center;
    color: #000000;
}

.roofing-services-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    text-align: center;
    color: #000000;
}

.roofing-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
}

.roofing-service-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roofing-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.roofing-service-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #ff6b35;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    padding: 2px;
}

.roofing-service-icon i,
.roofing-service-icon svg {
    font-size: 22px;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.roofing-service-icon path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.roofing-service-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: #000000;
}

.roofing-service-description {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
    color: #666666;
}

.roofing-service-link {
    font-size: 0.85rem;
}

.roofing-service-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.3s ease;
}

.roofing-service-link:hover {
    color: #e55a2b;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-services-container {
        padding: 4rem 2rem;
    }

    .roofing-services-title {
        font-size: 2.5rem;
    }

    .roofing-services-subtitle {
        font-size: 1.1rem;
    }

    .roofing-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .roofing-service-card {
        padding: 1.75rem 1.5rem;
    }

    .roofing-service-icon {
        width: 55px;
        height: 55px;
    }

    .roofing-service-icon i,
    .roofing-service-icon svg {
        font-size: 26px;
        color: #ffffff !important;
        fill: #ffffff !important;
    }

    .roofing-service-icon path {
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }

    .roofing-service-title {
        font-size: 1.1rem;
    }

    .roofing-service-description {
        font-size: 0.9rem;
    }

    .roofing-service-link {
        font-size: 0.95rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-services-container {
        padding: 5rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .roofing-services-title {
        font-size: 3rem;
    }

    .roofing-services-subtitle {
        font-size: 1.25rem;
    }

    .roofing-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .roofing-service-card {
        padding: 2.5rem 2rem;
    }

    .roofing-service-icon {
        width: 70px;
        height: 70px;
    } 

    .roofing-service-icon i,
    .roofing-service-icon svg {
        font-size: 35px;
        color: #ffffff !important;
        fill: #ffffff !important;
    }

    .roofing-service-icon path {
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }
}

/* ============================================
   ROOFING PROJECTS WIDGET
   ============================================ */

.roofing-projects-container {
    width: 100%;
    padding: 3rem 1rem;
    background-color: #f5f5f5;
}

.roofing-projects-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.5rem 0;
    text-align: center;
    color: #000000;
}

.roofing-projects-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    text-align: center;
    color: #000000;
}

.roofing-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    max-width: 100%;
    grid-auto-rows: minmax(150px, auto);
}

.roofing-project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
}

.roofing-project-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.roofing-project-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.roofing-project-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.roofing-project-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.roofing-project-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%; 
    min-height: 150px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.roofing-project-item.featured .roofing-project-image-wrapper {
    min-height: 300px;
}

.roofing-project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.roofing-project-item:hover .roofing-project-image {
    transform: scale(1.05);
}

.roofing-project-placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 0.9rem;
    text-align: center;
    padding: 1.5rem;
}

.roofing-project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
    padding: 1.5rem 1rem 1rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.roofing-project-item.featured .roofing-project-overlay {
    padding: 2rem 1.5rem 1.5rem;
}

.roofing-project-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.roofing-project-item.featured .roofing-project-title {
    font-size: 1.15rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-projects-container {
        padding: 4rem 2rem;
    }

    .roofing-projects-title {
        font-size: 2.5rem;
    }

    .roofing-projects-subtitle {
        font-size: 1.1rem;
    }

    .roofing-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        grid-auto-rows: minmax(180px, auto);
    }

    .roofing-project-item {
        aspect-ratio: 1;
    }

    .roofing-project-item.featured {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1;
    }

    .roofing-project-image-wrapper {
        min-height: 180px;
        height: 100%;
    }

    .roofing-project-item.featured .roofing-project-image-wrapper {
        min-height: 360px;
        height: 100%;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-projects-container {
        padding: 5rem 2rem;
        margin: 0 auto;
    }

    .roofing-projects-title {
        font-size: 3rem;
    }

    .roofing-projects-subtitle {
        font-size: 1.25rem;
    }

    .roofing-projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
        grid-auto-rows: minmax(200px, auto);
    }

    .roofing-project-item {
        aspect-ratio: 1;
    }

    .roofing-project-item.featured {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1;
    }

    .roofing-project-image-wrapper {
        min-height: 200px;
        height: 100%;
    }

    .roofing-project-item.featured .roofing-project-image-wrapper {
        min-height: 400px;
        height: 100%;
    }

    .roofing-project-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
        padding: 2rem 1.5rem 1.5rem;
    }

    .roofing-project-title {
        font-size: 1.1rem;
    }

    .roofing-project-item.featured .roofing-project-title {
        font-size: 1.15rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-projects-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: 1600px;
        margin: 0 auto;
        grid-auto-rows: minmax(220px, auto);
    }

    .roofing-project-item {
        aspect-ratio: 1;
    }

    .roofing-project-item.featured {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 1;
    }

    .roofing-project-image-wrapper {
        min-height: 220px;
        height: 100%;
    }

    .roofing-project-item.featured .roofing-project-image-wrapper {
        min-height: 440px;
        height: 100%;
    }
}

/* ============================================
   ROOFING CTA WIDGET
   ============================================ */

.roofing-cta-container {
    width: 100%;
    padding: 3rem 1rem;
    background-color: #ff6b35;
    position: relative;
}

.roofing-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.roofing-cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.roofing-cta-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2rem 0;
    color: #ffffff;
}

.roofing-cta-form-wrapper {
    width: 100%;
    max-width: 100%;
}

.roofing-cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.roofing-cta-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #ffffff;
    color: #333333;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.roofing-cta-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.roofing-cta-input::placeholder {
    color: #999999;
}

.roofing-cta-button {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.roofing-cta-button:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.roofing-cta-button:active {
    transform: translateY(0);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-cta-container {
        padding: 4rem 2rem;
    }

    .roofing-cta-title {
        font-size: 2.5rem;
    }

    .roofing-cta-subtitle {
        font-size: 1.1rem;
    }

    .roofing-cta-form {
        flex-direction: row;
        gap: 0;
    }

    .roofing-cta-input {
        flex: 1;
        border-radius: 8px 0 0 8px;
        padding: 1.25rem 1.5rem;
    }

    .roofing-cta-button {
        width: auto;
        flex-shrink: 0;
        border-radius: 0 8px 8px 0;
        padding: 1.25rem 2rem;
        white-space: nowrap;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-cta-container {
        padding: 5rem 2rem;
    }

    .roofing-cta-content {
        max-width: 900px;
    }

    .roofing-cta-title {
        font-size: 3rem;
    }

    .roofing-cta-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .roofing-cta-input {
        font-size: 1.1rem;
        padding: 1.5rem 2rem;
    }

    .roofing-cta-button {
        font-size: 1.1rem;
        padding: 1.5rem 3rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-cta-container {
        padding: 6rem 2rem;
    }

    .roofing-cta-title {
        font-size: 3.5rem;
    }
}

/* ============================================
   ROOFING HEADER WIDGET
   ============================================ */

.roofing-header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* Top Bar */
.roofing-header-topbar {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.75rem 0;
    font-size: 0.9rem;
}

.roofing-header-topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.roofing-header-topbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.roofing-header-phone,
.roofing-header-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}
 
.roofing-header-phone i,
.roofing-header-location i {
    font-size: 0.85rem;
}

.roofing-header-topbar-social {
    display: flex; 
    align-items: center;
    gap: 0.5rem;
}

.roofing-header-topbar-social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.roofing-header-topbar-social-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.roofing-header-topbar-social-link i,
.roofing-header-topbar-social-link svg {
    font-size: 0.9rem;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.roofing-header-topbar-social-link path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* Main Navigation */
.roofing-header-nav {
    background-color: #1a1a1a;
    padding: 1rem 0;
}

.roofing-header-nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.roofing-header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.roofing-header-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.roofing-header-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.roofing-header-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.roofing-header-logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.roofing-header-logo-main span:first-child {
    color: #ffffff;
}

.roofing-header-logo-tagline {
    font-size: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hamburger Menu Button */
.roofing-header-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.roofing-header-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.roofing-header-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.roofing-header-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.roofing-header-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.roofing-header-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.roofing-header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.roofing-header-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.roofing-header-menu-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: block;
    padding: 0.5rem 0;
}

.roofing-header-menu-item:hover {
    color: #ff6b35;
}

.roofing-header-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: block;
    padding: 0.5rem 0;
}

.roofing-header-menu a:hover {
    color: #ff6b35;
}

.roofing-header-nav-quote-btn {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.roofing-header-nav-quote-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.roofing-header-nav-quote-btn i,
.roofing-header-nav-quote-btn svg {
    font-size: 0.85rem;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.roofing-header-nav-quote-btn path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.roofing-header-nav-quote-btn-text {
    color: #ffffff;
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .roofing-header-phone,
    .roofing-header-location {
        font-size: 0.8rem;
    }

    .roofing-header-nav-quote-btn {
        font-size: 0.8rem; 
        padding: 0.55rem 1.1rem;
    }

    .roofing-header-topbar-social-link {
        width: 30px;
        height: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 991px) {
    .roofing-header-topbar {
        padding: 0.5rem 0;
    }

    .roofing-header-topbar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        text-align: left;
    }

    .roofing-header-topbar-left {
        justify-content: flex-start;
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        flex: 1;
    }

    .roofing-header-phone,
    .roofing-header-location {
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .roofing-header-phone i,
    .roofing-header-location i {
        font-size: 0.7rem;
    }

    .roofing-header-topbar-social {
        flex-shrink: 0;
    }

    .roofing-header-nav-content {
        position: relative;
        flex-wrap: wrap;
    }

    .roofing-header-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .roofing-header-menu {
        display: none ;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 1.5rem 1rem;
        margin-top: 1rem;
        gap: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .roofing-header-menu.active {
        display: flex !important;
    }

    /* Ensure menu is hidden by default on mobile */
    @media (max-width: 991px) {
        .roofing-header-menu:not(.active) {
            display: none !important;
        }
    }

    .roofing-header-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 0;
    }

    .roofing-header-menu li {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
        border-bottom: 1px solid #333333;
    }

    .roofing-header-menu li:last-child {
        border-bottom: none;
    }

    .roofing-header-menu-item {
        width: 100%;
        padding: 0.75rem 0;
        display: block;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .roofing-header-menu-item:hover {
        color: #ff6b35;
    }

    .roofing-header-menu > a,
    .roofing-header-menu a {
        width: 100%;
        padding: 0.75rem 0;
        display: block;
        color: #ffffff;
        text-decoration: none;
        transition: color 0.3s ease;
        border-bottom: 1px solid #333333;
    }

    .roofing-header-menu > a:last-child,
    .roofing-header-menu a:last-child {
        border-bottom: none;
    }

    .roofing-header-menu a:hover {
        color: #ff6b35;
    }

    .roofing-header-menu-item:last-child {
        border-bottom: none;
    }

    .roofing-header-nav-quote-btn {
        order: 3;
        width: auto;
        min-width: 44px;
        padding: 0.6rem !important;
        justify-content: center;
        margin-top: 0rem; 
    }
 
    .roofing-header-nav-quote-btn-text {
        display: none;
    }
}

@media (max-width: 767px) {
    .roofing-header-topbar {
        padding: 0.4rem 0;
    }

    .roofing-header-topbar-content {
        padding: 0 0.75rem;
        gap: 0.5rem;
    }

    .roofing-header-topbar-left {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .roofing-header-phone,
    .roofing-header-location {
        font-size: 0.65rem !important;
        gap: 0.3rem;
    }

    .roofing-header-phone i,
    .roofing-header-location i {
        font-size: 0.65rem !important;
    }

    .roofing-header-topbar-social-link {
        width: 26px !important;
        height: 26px !important;
    }

    .roofing-header-topbar-social-link i,
    .roofing-header-topbar-social-link svg {
        font-size: 0.75rem !important;
    }

    .roofing-header-logo-img {
        width: 100px !important;
        height: 40px !important;
    }

    .roofing-header-logo-main {
        font-size: 1.1rem !important;
    }

    .roofing-header-logo-tagline {
        font-size: 0.6rem !important;
    }

    .roofing-header-nav-quote-btn {
        font-size: 0.75rem !important;
        padding: 0.5rem !important;
        min-width: 44px;
        width: auto;
    }

    .roofing-header-nav-quote-btn-text {
        display: none !important;
    }

    .roofing-header-nav-quote-btn i,
    .roofing-header-nav-quote-btn svg {
        font-size: 1rem !important;
        margin: 0;
    }
}

/* ============================================
   ROOFING FOOTER WIDGET
   ============================================ */

.roofing-footer {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    position: relative;
}

.roofing-footer-top-line {
    width: 100%;
    height: 3px;
    background-color: #ff6b35;
}

.roofing-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.roofing-footer-columns {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.roofing-footer-column {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 250px;
    scroll-snap-align: start;
}

.roofing-footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.roofing-footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.roofing-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.roofing-footer-logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.25rem;
}

.roofing-footer-logo-tagline {
    font-size: 0.7rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roofing-footer-description {
    font-size: 0.8rem;
    line-height: 1.5;
    color: #cccccc;
    margin: 0;
}

.roofing-footer-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 0 0 0.75rem 0;
}

.roofing-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roofing-footer-links li {
    margin: 0;
}

.roofing-footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.roofing-footer-links a:hover {
    color: #ff6b35;
}

.roofing-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.roofing-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    font-size: 0.85rem;
}

.roofing-footer-contact i {
    color: #999999;
    font-size: 0.9rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.roofing-footer-contact a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.roofing-footer-contact a:hover {
    color: #ff6b35;
}

/* Bottom Bar */
.roofing-footer-bottom {
    border-top: 1px solid #333333;
    padding: 1rem 0;
    background-color: #0f0f0f;
}

.roofing-footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.roofing-footer-copyright {
    font-size: 0.75rem;
    color: #cccccc;
}

.roofing-footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.roofing-footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.roofing-footer-social-link:hover {
    background-color: #ff6b35;
    transform: translateY(-2px);
}

.roofing-footer-social-link i,
.roofing-footer-social-link svg {
    font-size: 0.9rem;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.roofing-footer-social-link path {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-footer-columns {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        overflow-x: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .roofing-footer-column {
        min-width: 0;
        max-width: none;
        flex: 1 1 auto;
    }

    .roofing-footer-content {
        padding: 4rem 2rem;
    }

    .roofing-footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .roofing-footer-logo-main {
        font-size: 1.5rem;
    }

    .roofing-footer-logo-tagline {
        font-size: 0.8rem;
    }

    .roofing-footer-description {
        font-size: 0.9rem;
    }

    .roofing-footer-section-title {
        font-size: 1.05rem;
    }

    .roofing-footer-links a {
        font-size: 0.9rem;
    }

    .roofing-footer-contact li {
        font-size: 0.9rem;
    }

    .roofing-footer-copyright {
        font-size: 0.85rem;
    }

    .roofing-footer-social-link {
        width: 38px;
        height: 38px;
    }

    .roofing-footer-social-link i,
    .roofing-footer-social-link svg {
        color: #ffffff !important;
        fill: #ffffff !important;
    }

    .roofing-footer-social-link path { 
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-footer-columns {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 3rem;
        overflow-x: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .roofing-footer-column {
        min-width: 0;
        max-width: none;
        flex: 1 1 auto;
    }

    .roofing-footer-content {
        padding: 5rem 2rem;
    }

    .roofing-footer-logo-main {
        font-size: 1.75rem;
    }

    .roofing-footer-logo-tagline {
        font-size: 0.85rem;
    }

    .roofing-footer-description {
        font-size: 0.9rem;
    }

    .roofing-footer-section-title {
        font-size: 1.1rem;
    }

    .roofing-footer-logo-img {
        width: 60px;
        height: 60px;
    }

    .roofing-footer-social-link {
        width: 40px;
        height: 40px;
    }

    .roofing-footer-social-link i,
    .roofing-footer-social-link svg {
        font-size: 1rem;
        color: #ffffff !important;
        fill: #ffffff !important;
    }

    .roofing-footer-social-link path {
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }
}

/* ============================================
   ROOFING SERVICES PAGE WIDGET
   ============================================ */

.roofing-services-page-container {
    width: 100%;
}

.roofing-services-hero {
    width: 100%;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 1rem;
}

.roofing-services-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.roofing-services-hero-left {
    flex: 1;
}

.roofing-services-breadcrumbs {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.roofing-services-breadcrumbs span {
    color: #cccccc;
}

.roofing-services-breadcrumbs span.active {
    color: #ff6b35;
    font-weight: 600;
}

.roofing-services-hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: #ffffff;
}

.roofing-services-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    color: #ffffff;
}

.roofing-services-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.roofing-services-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.roofing-services-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #4caf50;
}

.roofing-services-feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #4caf50;
}

.roofing-services-feature-text {
    font-size: 0.9rem;
    color: #ffffff;
}

.roofing-services-hero-right {
    flex: 1;
}

.roofing-services-estimate-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.roofing-services-estimate-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem auto;
    background-color: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.roofing-services-estimate-icon i,
.roofing-services-estimate-icon svg {
    font-size: 28px;
    color: #ffffff !important;
    fill: #ffffff !important;
}

.roofing-services-estimate-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 0.75rem 0;
    color: #000000;
}

.roofing-services-estimate-subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    color: #666666;
}

.roofing-services-estimate-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.roofing-services-estimate-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #ffffff;
    color: #333333;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.roofing-services-estimate-input:focus {
    border-color: #ff6b35;
}

.roofing-services-estimate-input::placeholder {
    color: #999999;
}

.roofing-services-estimate-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #ff6b35;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.roofing-services-estimate-btn:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.roofing-services-estimate-btn:active {
    transform: translateY(0);
}

.roofing-services-estimate-btn svg {
    width: 16px;
    height: 16px;
}

.roofing-services-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #999999;
    margin-top: 1rem;
}

.roofing-services-privacy svg {
    width: 14px;
    height: 14px;
    color: #999999;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-services-hero {
        padding: 4rem 2rem;
    }

    .roofing-services-hero-content {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .roofing-services-hero-title {
        font-size: 2.5rem;
    }

    .roofing-services-hero-description {
        font-size: 1.1rem;
    }

    .roofing-services-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .roofing-services-estimate-card {
        padding: 2.5rem 2rem;
        max-width: 400px;
        margin-left: auto;
    }

    .roofing-services-estimate-form {
        flex-direction: row;
        gap: 0;
    }

    .roofing-services-estimate-input {
        flex: 1;
        border-radius: 8px 0 0 8px;
    }

    .roofing-services-estimate-btn {
        width: auto;
        flex-shrink: 0;
        border-radius: 0 8px 8px 0;
        padding: 1rem 1.75rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-services-hero {
        padding: 5rem 2rem;
    }

    .roofing-services-hero-title {
        font-size: 3rem;
    }

    .roofing-services-hero-description {
        font-size: 1.15rem;
    }

    .roofing-services-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .roofing-services-feature {
        padding: 1rem;
    }

    .roofing-services-feature-text {
        font-size: 1rem;
    }

    .roofing-services-estimate-card {
        padding: 3rem 2.5rem;
        max-width: 450px;
    }

    .roofing-services-estimate-title {
        font-size: 1.75rem;
    }

    .roofing-services-estimate-subtitle {
        font-size: 1rem;
    }
}

/* ============================================
   ROOFING CTA BANNER WIDGET
   ============================================ */

.roofing-cta-banner-container {
    width: 100%;
    background-color: #ff6b35;
    padding: 3rem 1rem;
}

.roofing-cta-banner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.roofing-cta-banner-content {
    text-align: center;
    color: #ffffff;
    flex: 1;
}

.roofing-cta-banner-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

.roofing-cta-banner-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    color: #ffffff;
}

.roofing-cta-banner-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 500px;
}

.roofing-cta-banner-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    line-height: 1.5;
    background-color: #ffffff;
    color: #333333;
    outline: none;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.roofing-cta-banner-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.roofing-cta-banner-input::placeholder {
    color: #999999;
}

.roofing-cta-banner-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background-color: #333333;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.roofing-cta-banner-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.roofing-cta-banner-btn:active {
    transform: translateY(0);
}

.roofing-cta-banner-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-cta-banner-container {
        padding: 3.5rem 2rem;
    }

    .roofing-cta-banner-wrapper {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
        justify-content: space-between;
    }

    .roofing-cta-banner-content {
        text-align: left;
        flex: 1;
    }

    .roofing-cta-banner-title {
        font-size: 2rem;
    }

    .roofing-cta-banner-subtitle {
        font-size: 1.05rem;
    }

    .roofing-cta-banner-form {
        flex-direction: row;
        max-width: 500px;
        flex-shrink: 0;
    }

    .roofing-cta-banner-input {
        flex: 1;
        border-radius: 8px 0 0 8px;
    }

    .roofing-cta-banner-btn {
        width: auto;
        flex-shrink: 0;
        border-radius: 0 8px 8px 0;
        padding: 1rem 2rem;
        white-space: nowrap;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-cta-banner-container {
        padding: 4rem 2rem;
    }

    .roofing-cta-banner-title {
        font-size: 2.25rem;
    }

    .roofing-cta-banner-subtitle {
        font-size: 1.1rem;
    }

    .roofing-cta-banner-form {
        max-width: 550px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-cta-banner-container {
        padding: 4.5rem 2rem;
    }

    .roofing-cta-banner-title {
        font-size: 2.5rem;
    }

    .roofing-cta-banner-subtitle {
        font-size: 1.15rem;
    }
}

/* ============================================
   ROOFING MATERIALS WIDGET
   ============================================ */

.roofing-materials-container {
    width: 100%;
    padding: 3rem 1rem;
    text-align: center;
}

.roofing-materials-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #000000;
}

.roofing-materials-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    color: #000000;
}

.roofing-materials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roofing-material-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.roofing-material-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: #f5f5f5;
}

.roofing-material-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.roofing-material-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    color: #999999;
    font-size: 0.9rem;
}

.roofing-material-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.roofing-material-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: #000000;
}

.roofing-material-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.roofing-material-title a:hover {
    color: #ff6b35;
}

.roofing-material-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: #666666;
    flex: 1;
}

.roofing-material-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b35;
    margin-top: auto;
}

.roofing-material-price-prefix {
    margin-right: 0.25rem;
}

.roofing-material-price-value {
    font-weight: 700;
}

.roofing-materials-no-posts {
    text-align: center;
    padding: 2rem;
    color: #666666;
    font-size: 1rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-materials-container {
        padding: 4rem 2rem;
    }

    .roofing-materials-title {
        font-size: 2.5rem;
    }

    .roofing-materials-subtitle {
        font-size: 1.1rem;
    }

    .roofing-materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-materials-container {
        padding: 5rem 2rem;
    }

    .roofing-materials-title {
        font-size: 3rem;
    }

    .roofing-materials-subtitle {
        font-size: 1.15rem;
    }

    .roofing-materials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .roofing-material-content {
        padding: 2rem;
    }

    .roofing-material-title {
        font-size: 1.5rem;
    }

    .roofing-material-description {
        font-size: 1rem;
    }

    .roofing-material-price {
        font-size: 1.2rem;
    }
}

/* ============================================
   ROOFING FAQ WIDGET
   ============================================ */

.roofing-faq-container {
    width: 100%;
    padding: 3rem 1rem;
    background-color: #f5f5f5;
    text-align: center;
}

.roofing-faq-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1rem 0;
    color: #333333;
}

.roofing-faq-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 2.5rem 0;
    color: #666666;
}

.roofing-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.roofing-faq-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roofing-faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roofing-faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 0.75rem 0;
    color: #333333;
}

.roofing-faq-answer {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: #666666;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-faq-container {
        padding: 4rem 2rem;
    }

    .roofing-faq-title {
        font-size: 2.5rem;
    }

    .roofing-faq-subtitle {
        font-size: 1.1rem;
    }

    .roofing-faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .roofing-faq-card {
        padding: 2rem;
    }

    .roofing-faq-question {
        font-size: 1.2rem;
    }

    .roofing-faq-answer {
        font-size: 1rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-faq-container {
        padding: 5rem 2rem;
    }

    .roofing-faq-title {
        font-size: 3rem;
    }

    .roofing-faq-subtitle {
        font-size: 1.15rem;
    }

    .roofing-faq-grid {
        gap: 2.5rem;
    }

    .roofing-faq-card {
        padding: 2.5rem;
    }

    .roofing-faq-question {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .roofing-faq-answer {
        font-size: 1.05rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-faq-container {
        padding: 6rem 2rem;
    }

    .roofing-faq-grid {
        gap: 3rem;
    }
}

/* ============================================
   ROOFING CTA DARK WIDGET
   ============================================ */

.roofing-cta-dark-container {
    width: 100%;
    background-color: #1a1a1a;
    padding: 2.5rem 1rem;
}

.roofing-cta-dark-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.roofing-cta-dark-content {
    text-align: center;
    flex: 1;
    width: 100%;
}

.roofing-cta-dark-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.roofing-cta-dark-highlight {
    color: #ff6b35;
    font-weight: 600;
}

.roofing-cta-dark-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
}

.roofing-cta-dark-quote-btn,
.roofing-cta-dark-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border: 2px solid transparent;
    min-height: 52px;
}

.roofing-cta-dark-quote-btn {
    background-color: #ff6b35;
    color: #ffffff;
}

.roofing-cta-dark-quote-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.roofing-cta-dark-phone-btn {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
}

.roofing-cta-dark-phone-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.roofing-cta-dark-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roofing-cta-dark-icon i,
.roofing-cta-dark-icon svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
    fill: #ffffff;
}

.roofing-cta-dark-phone-btn .roofing-cta-dark-icon i,
.roofing-cta-dark-phone-btn .roofing-cta-dark-icon svg {
    color: #cccccc;
    fill: #cccccc;
}

.roofing-cta-dark-btn-text {
    white-space: nowrap;
    font-size: 1rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .roofing-cta-dark-container {
        padding: 3.5rem 2rem;
    }

    .roofing-cta-dark-wrapper {
        flex-direction: row;
        gap: 4rem;
        align-items: center;
        justify-content: space-between;
    }

    .roofing-cta-dark-content {
        text-align: left;
        flex: 1;
        min-width: 0;
        padding-right: 2rem;
    }

    .roofing-cta-dark-text {
        font-size: 1.35rem;
        line-height: 1.7;
    }

    .roofing-cta-dark-buttons {
        flex-direction: row;
        max-width: none;
        flex-shrink: 0;
        gap: 1.25rem;
        width: auto;
    }

    .roofing-cta-dark-quote-btn,
    .roofing-cta-dark-phone-btn {
        padding: 1.15rem 2.25rem;
        white-space: nowrap;
        min-width: 200px;
    }

    .roofing-cta-dark-btn-text {
        font-size: 1.05rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .roofing-cta-dark-container {
        padding: 4rem 2rem;
    }

    .roofing-cta-dark-wrapper {
        gap: 5rem;
    }

    .roofing-cta-dark-content {
        padding-right: 3rem;
    }

    .roofing-cta-dark-text {
        font-size: 1.5rem;
        line-height: 1.75;
    }

    .roofing-cta-dark-buttons {
        gap: 1.5rem;
    }

    .roofing-cta-dark-quote-btn,
    .roofing-cta-dark-phone-btn {
        padding: 1.2rem 2.5rem;
        min-width: 220px;
    }

    .roofing-cta-dark-btn-text {
        font-size: 1.1rem;
    }

    .roofing-cta-dark-icon i,
    .roofing-cta-dark-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-cta-dark-container {
        padding: 4.5rem 2rem;
    }

    .roofing-cta-dark-wrapper {
        gap: 6rem;
    }

    .roofing-cta-dark-content {
        padding-right: 4rem;
    }

    .roofing-cta-dark-text {
        font-size: 1.65rem;
        line-height: 1.8;
    }

    .roofing-cta-dark-buttons {
        gap: 2rem;
    }

    .roofing-cta-dark-quote-btn,
    .roofing-cta-dark-phone-btn {
        padding: 1.3rem 3rem;
        min-width: 240px;
    }

    .roofing-cta-dark-btn-text {
        font-size: 1.15rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .roofing-materials-container {
        padding: 6rem 2rem;
    }

    .roofing-materials-grid {
        gap: 3rem;
    }
}

