/* Roof Co. - Design 2: BOLD FULLSCREEN HERO
   Dramatic, Dark, Full-bleed images, High impact */

:root {
    --gold: #2ea3f2;
    --light-blue: #2ea3f2;
    --dark-bg: #0a0a0a;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background: #0a0a0a;
    line-height: 1.6;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   HERO - FULLSCREEN
   ============================================ */
.hero-fullscreen {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Hero Slide Rotation */
.hero-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Top Bar */
.top-bar {
    background: rgba(255,255,255,0.1);
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.top-bar a {
    color: #2ea3f2;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

/* Header */
header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

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

header .logo img {
    height: 90px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-reviews {
    display: none;
}

/* Reviews Bar - above header */
.reviews-bar {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 6px 20px;
    background: rgba(255,255,255,0.08);
}

header nav {
    display: flex;
    gap: 28px;
}

header nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

header nav a:hover,
header nav a.active {
    color: #fff;
}

.header-cta {
    background: #2ea3f2;
    color: #000 !important;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.header-cta:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 5;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #2ea3f2;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 span {
    color: #2ea3f2;
}

.hero-desc {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #2ea3f2;
    color: #000;
    padding: 20px 48px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1a8cd8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245,158,11,0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 20px 48px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn-blue {
    background: var(--light-blue);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-blue:hover {
    background: #1a8cd8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 163, 242, 0.3);
}

/* Light blue accent text */
.text-blue {
    color: var(--light-blue);
}

.btn-large {
    padding: 24px 56px;
    font-size: 1.3rem;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}

.scroll-down span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.6);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #2ea3f2, transparent);
    margin: 0 auto;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.stat-item {
    padding: 60px 30px;
    text-align: center;
    border-right: 1px solid #222;
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2ea3f2;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   SERVICES - LARGE CARDS
   ============================================ */
.services-section {
    padding: 120px 0;
    background: #0a0a0a;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.service-card-xl {
    position: relative;
    height: 500px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.service-card-xl img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-xl:hover img {
    transform: scale(1.1);
}

.service-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-info p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
}

.service-info .arrow {
    font-size: 1.5rem;
    color: #2ea3f2;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.service-card-xl:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   ABOUT SPLIT
   ============================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content {
    background: #111;
    padding: 100px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    font-size: 0.85rem;
    color: #2ea3f2;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: #2ea3f2;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature span {
    font-size: 1.05rem;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
    background: #0a0a0a;
    padding: 120px 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 8rem;
    color: #2ea3f2;
    line-height: 0.5;
    margin-bottom: 30px;
    font-family: Georgia, serif;
}

.testimonial-content blockquote {
    font-size: 1.8rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.stars {
    color: #2ea3f2;
    font-size: 1.5rem;
    margin-top: 20px;
    letter-spacing: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 170px 0;
    text-align: center;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta-section > .container > p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #000;
    padding: 80px 0 30px;
    border-top: 1px solid #222;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 110px;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-brand .phone {
    font-size: 2rem;
    font-weight: 700;
    color: #2ea3f2;
    text-decoration: none;
}

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

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #2ea3f2;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   PAGE HEADER (for subpages)
   ============================================ */
.page-header {
    min-height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero.jpeg') center/cover;
    display: flex;
    flex-direction: column;
}

.page-header header {
    background: transparent;
}

.page-header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px;
}

.page-header h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.breadcrumb {
    color: rgba(255,255,255,0.6);
    margin-top: 15px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #2ea3f2;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.content-image img {
    width: 100%;
    height: auto;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.content-text p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-text ul {
    list-style: none;
    margin: 30px 0;
}

.content-text ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid #222;
}

.content-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2ea3f2;
}

/* Contact Form */
.contact-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: #2ea3f2;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.contact-form {
    background: #111;
    padding: 50px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2ea3f2;
}

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

.submit-btn {
    width: 100%;
    padding: 20px;
    background: #2ea3f2;
    color: #000;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1a8cd8;
}

/* Services List */
.services-list {
    padding: 100px 0;
    background: #0a0a0a;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-list-card {
    background: #111;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.service-list-card .image {
    height: 220px;
    overflow: hidden;
}

.service-list-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-list-card .content {
    padding: 30px;
}

.service-list-card h3 {
    margin-bottom: 15px;
}

.service-list-card p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.service-list-card a {
    color: #2ea3f2;
    text-decoration: none;
    font-weight: 600;
}

/* Map */
.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card-xl {
        height: 400px;
    }
}

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

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

    .stat-item {
        border-bottom: 1px solid #222;
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 400px;
    }

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

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    padding: 14px;
    z-index: 101;
    background: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    min-width: 52px;
    min-height: 52px;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active {
    border-color: #2ea3f2;
}

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    header {
        padding: 12px 0;
    }

    header .logo img {
        height: 75px;
    }

    header nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.97);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        z-index: 100;
        display: none;
    }

    header nav.open {
        display: flex;
    }

    header nav a {
        font-size: 1.5rem;
        font-weight: 600;
        padding: 18px 30px;
        color: #fff;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    header nav a:hover,
    header nav a.active {
        color: #2ea3f2;
        background: rgba(46, 163, 242, 0.08);
    }

    .header-cta {
        display: none;
    }

    /* Top bar - phone number big and tappable */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .top-bar .container > span {
        font-size: 0.8rem;
    }

    .top-bar a {
        font-size: 1.5rem;
        display: block;
        padding: 6px 0;
    }

    /* Hero mobile */
    .hero-content {
        padding: 40px 15px;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 10px;
        gap: 14px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
        font-size: 1.1rem;
        padding: 18px 20px;
    }

    .scroll-down {
        display: none;
    }

    /* Stats mobile */
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    /* Services mobile */
    .services-section {
        padding: 70px 0;
    }

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

    .service-card-xl {
        height: auto;
        min-height: 250px;
    }

    .service-card-xl img {
        height: 250px;
        object-fit: cover;
    }

    .service-info {
        padding: 30px 20px;
    }

    .service-info h3 {
        font-size: 1.5rem;
    }

    .service-info p {
        font-size: 1rem;
    }

    .service-info .arrow {
        opacity: 1;
    }

    .about-image img,
    .content-image img,
    .service-list-card .image img {
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }

    .header-reviews {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    /* About mobile */
    .about-split {
        min-height: auto;
    }

    .about-image {
        height: 300px;
    }

    .about-content {
        padding: 50px 25px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content > p {
        font-size: 1rem;
    }

    .feature span {
        font-size: 1rem;
    }

    /* Reviews mobile */
    .reviews-section {
        padding: 60px 0;
    }

    .testimonial-content blockquote {
        font-size: 1.3rem;
    }

    /* CTA mobile */
    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }

    .cta-btns .btn-primary.btn-large {
        font-size: 1.2rem;
        padding: 20px 30px;
        width: 100%;
        text-align: center;
    }

    .cta-btns .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand img {
        height: 80px;
    }

    .footer-brand .phone {
        font-size: 1.8rem;
        display: inline-block;
        padding: 10px 0;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-col a {
        padding: 4px 0;
        font-size: 0.9rem;
    }

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

    /* Subpage header mobile */
    .page-header {
        min-height: 40vh;
    }

    .page-header h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .page-header-content {
        padding-top: 30px;
    }

    /* Content sections mobile */
    .content-section {
        padding: 60px 0;
    }

    .content-text h2 {
        font-size: 1.8rem;
    }

    /* Contact mobile */
    .contact-form {
        padding: 30px 20px;
    }

    /* FAQ mobile */
    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #0a0a0a;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-answer p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

/* Google Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: #111;
}

.reviews-embed {
    max-width: 1000px;
    margin: 0 auto;
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.google-reviews-badge img {
    height: 40px;
}

/* Facebook Link */
.fb-link {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.fb-link img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: block;
}

.fb-link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}

/* Mobile Sticky Phone Bar */
.mobile-sticky-phone {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 58px;
    }

    .mobile-sticky-phone {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    .mobile-sticky-phone a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 20px;
        background: #2ea3f2;
        color: #000 !important;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    }

    .mobile-sticky-phone a svg {
        flex-shrink: 0;
    }
}
