/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 0;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.logo h1 {
    color: #2E8B57;
    font-size: 2rem;
    font-weight: bold;
}

.logo .tagline {
    color: #666;
    font-size: 0.9rem;
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2E8B57;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #2E8B57;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 280px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.09375rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #2E8B57;
}

.contact-info {
    display: none;
}

.contact-info .phone {
    background-color: #2E8B57;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.contact-info .phone:hover {
    background-color: #228B47;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.25rem;
    color: #2E8B57;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background-color: #f8f9fa;
}

.mobile-menu-btn.active {
    background-color: #2E8B57;
    color: white;
}

/* Main Content */
main {
    margin-top: 0;
    padding-top: 80px;
}

/* Remove any top margin/padding from page elements */
.page-hero {
    margin-top: 0;
}

/* Ensure header sticks to top with no gaps */
.header {
    top: 0;
    margin-top: 0;
}

/* New Hero Section with Green Background - No Image */
.hero-section {
    background: linear-gradient(135deg, #2E8B57 0%, #228B47 100%);
    color: white;
    padding: 0.72rem 0 0.36rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 54px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 87, 0.1);
    z-index: 1;
}

.hero-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-section .hero-content {
    width: 100%;
}

.hero-section .hero-content h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-section .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Portfolio Gallery Section */
.portfolio-gallery-section {
    padding: 3rem 0;
    background: white;
}

.gallery-header {
    text-align: center;
    margin-bottom: 0.6rem;
    padding: 0 20px;
}

.gallery-header h2 {
    font-size: 3rem;
    color: #2E8B57;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gallery-header p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.full-width-gallery {
    width: 100%;
    padding: 2rem 0 4rem 0;
}

.gallery-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0;
}

.portfolio-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 0;
    opacity: 1;
    filter: brightness(1);
    border: none;
}

.portfolio-grid img {
    filter: brightness(1);
    transition: all 0.4s ease;
}

.portfolio-grid img:hover {
    filter: brightness(0.4);
}

.portfolio-grid-item {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.portfolio-grid-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 87, 0.30);
    z-index: 2;
    pointer-events: none;
}

.portfolio-grid-item:hover .gallery-filename {
    opacity: 1;
    visibility: visible;
}

.portfolio-grid-item .gallery-filename {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.portfolio-grid {
    position: relative;
}

.portfolio-grid img {
    position: relative;
}

.portfolio-grid img.selected {
    filter: brightness(0.5);
    transform: scale(0.95);
}

/* Miami Services Showcase */
.miami-services-showcase {
    padding: 3rem 0;
    background: white;
}

.miami-services-showcase.green-bg-section {
    padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.service-showcase-section {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    text-align: center;
    padding: 0 2rem;
}

.service-showcase-section.reverse {
    direction: ltr;
}

.service-showcase-section.reverse > * {
    direction: ltr;
}

.service-showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.service-showcase-content h2 {
    font-size: 2.4rem;
    color: #2E8B57;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.service-showcase-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: center;
}

.miami-service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.miami-service-features li {
    color: #2E8B57;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.service-showcase-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.service-showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: none;
}

/* Miami Services Directory */
        .miami-services-directory {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .miami-services-directory h2 {
            text-align: center;
            font-size: 3rem;
            color: #2E8B57;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .services-miami-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .miami-service-item {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid #2E8B57;
        }

        .miami-service-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .miami-service-item h3 {
            color: #2E8B57;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .miami-service-item p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

/* Miami Services Cards Section */
        .miami-services-icons {
            padding: 3rem 0;
            background: white;
        }

        .miami-services-icons h2 {
            text-align: center;
            font-size: 3rem;
            color: #2E8B57;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .services-description {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 3rem auto;
            padding: 0 20px;
        }

        .services-description p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 0;
        }

        .services-icons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 0;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .services-icons-grid.second-row {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            margin-top: 0;
            margin-bottom: 0;
        }

        .service-icon-item {
            background: white;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            text-decoration: none;
            color: inherit;
            border: none;
            border-right: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            position: relative;
        }

        .service-icon-item:hover {
            transform: none;
            box-shadow: none;
        }

        .service-icon-item:hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(46, 139, 87, 0.30);
            z-index: 1;
            pointer-events: none;
        }



        .service-card-image {
            width: 100%;
            height: 140px;
            overflow: hidden;
        }

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

        .service-card-content {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            text-align: center;
            flex-grow: 1;
            justify-content: flex-start;
            position: relative;
            z-index: 2;
        }

        .service-icon-item h3 {
            color: #2E8B57;
            font-size: 1.5rem;
            margin: 0 0 0.5rem 0;
            font-weight: 600;
            line-height: 1.3;
        }

        .service-card-content p {
            color: #666;
            font-size: 0.85rem;
            line-height: 1.4;
            margin: 0;
        }

/* Bottom CTA Hero Section */
.cta-hero-section {
    position: relative;
    background-image: url('https://picsum.photos/1920/600?random=101');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 180px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.cta-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2E8B57 0%, #228B47 100%);
    z-index: 1;
}

.cta-hero-section .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-hero-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-hero-section .btn-primary {
    background-color: white;
    color: #2E8B57;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-hero-section .btn-primary:hover {
    background-color: #f8f9fa;
    color: #228B47;
}

.cta-hero-section .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

.cta-hero-section .btn-secondary:hover {
    background-color: white;
    color: #2E8B57;
}

/* Enhanced Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 24px;
    font-weight: normal;
    cursor: pointer;
    z-index: 3001;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.gallery-modal-prev {
    left: 30px;
}

.gallery-modal-next {
    right: 30px;
}

.gallery-modal-image-container {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#galleryModalImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

#galleryModalImage.zoomed {
    cursor: zoom-out;
}

.gallery-modal-zoom-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gallery-modal-zoom-controls button {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-zoom-controls button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.gallery-modal-zoom-controls button:last-child {
    font-size: 12px;
    width: 60px;
}

.gallery-modal-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-size: 1.2rem;
    max-width: 80%;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

/* Page Hero (shorter version for solution pages) */
.page-hero {
    background: linear-gradient(135deg, #2E8B57 0%, #228B47 100%);
    color: white;
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 87, 0.1);
    z-index: 1;
}

.page-hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-hero .hero-content h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.page-hero .hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.page-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.page-hero .btn-primary {
    background-color: white;
    color: #2E8B57;
    border: 2px solid white;
}

.page-hero .btn-primary:hover {
    background-color: #f8f9fa;
    color: #228B47;
}

.page-hero .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.page-hero .btn-secondary:hover {
    background-color: white;
    color: #2E8B57;
}

.page-hero .hero-image img,
.page-hero .hero-gallery img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
}

.page-hero .hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.page-hero .hero-gallery img:hover {
    transform: translateY(-5px);
}

.hero-content h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #2E8B57;
    color: white;
    border: 2px solid #2E8B57;
}

.btn-primary:hover {
    background-color: #228B47;
    border-color: #228B47;
}

.btn-secondary {
    background-color: transparent;
    color: #2E8B57;
    border: 2px solid #2E8B57;
}

.btn-secondary:hover {
    background-color: #2E8B57;
    color: white;
}

.blog-cta {
    margin-top: 2rem;
    padding: 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-cta .btn-primary,
.blog-cta .btn-secondary {
    text-decoration: none;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0;
}

/* Miami Services Flow Section */
.miami-services-flow {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.miami-services-flow h2 {
    font-size: 3.2rem;
    color: #2E8B57;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.intro-text {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.service-flow-section {
    margin-bottom: 4rem;
    max-width: 100%;
}

.service-flow-section.green-bg {
    padding: 3rem 0;
}

.service-flow-section.green-bg .service-header-centered,
.service-flow-section.green-bg .service-description-centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.service-header-centered {
    max-width: 800px;
    margin: 0 auto 0.2rem auto;
    text-align: center;
    padding: 0 2rem;
}

.service-description-centered {
    max-width: 800px;
    margin: 0.2rem auto 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.service-gallery-full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 1.5rem 0;
}

.expandable-gallery {
    position: relative;
}

/* Gallery Navigation Arrows */
.gallery-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 139, 87, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-arrows:hover {
    background: rgba(46, 139, 87, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

/* Remove gallery hover indicator dots */
.gallery-grid img {
    position: relative;
}

/* White tint overlay on hover */
.gallery-grid img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.gallery-grid img:hover::before {
    opacity: 1;
}

.service-header-centered h3 {
    font-size: 2.8rem;
    color: #2E8B57;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1.3;
}

.service-description-centered p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.miami-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    background: #f0f8f4;
    color: #2E8B57;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0f0e6;
}

.miami-service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.area-tag {
    background: linear-gradient(135deg, #2E8B57, #228B47);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.miami-business-districts {
    margin-bottom: 2rem;
}

.district-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2E8B57;
}

.district-item strong {
    color: #2E8B57;
}

.miami-event-types {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.event-type {
    background: #fff3cd;
    color: #856404;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #ffeaa7;
}

.miami-cta-btn {
    display: inline-block;
    background: #2E8B57 !important;
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 139, 87, 0.3);
    border: none;
}

.miami-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
    background: #228B47 !important;
    color: white !important;
    text-decoration: none !important;
}

.miami-cta-btn-outline {
    display: inline-block;
    background: transparent;
    color: #2E8B57;
    padding: 1rem 2.5rem;
    border: 2px solid #2E8B57;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.miami-cta-btn-outline:hover {
    background: #2E8B57;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.miami-cta-btn-compact {
    display: inline-block;
    background: transparent;
    color: #2E8B57;
    padding: 0.7rem 1.8rem;
    border: 2px solid #2E8B57;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.miami-cta-btn-compact:hover {
    background: #2E8B57;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.service-image-area {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-area img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image-area img {
    transform: none;
}

/* Expandable Gallery Styles */
.expandable-gallery {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #2E8B57 #f0f0f0;
    scroll-behavior: smooth;
}

.expandable-gallery::-webkit-scrollbar {
    height: 8px;
}

.expandable-gallery::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.expandable-gallery::-webkit-scrollbar-thumb {
    background: #2E8B57;
    border-radius: 4px;
}

.expandable-gallery::-webkit-scrollbar-thumb:hover {
    background: #228B47;
}

.gallery-grid {
    display: flex;
    gap: 0;
    width: max-content;
    padding: 0;
}

.gallery-grid img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.6s ease;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInImage 0.8s ease-in-out forwards;
}

.gallery-grid img:nth-child(1) { animation-delay: 0.1s; }
.gallery-grid img:nth-child(2) { animation-delay: 0.2s; }
.gallery-grid img:nth-child(3) { animation-delay: 0.3s; }
.gallery-grid img:nth-child(4) { animation-delay: 0.4s; }
.gallery-grid img:nth-child(5) { animation-delay: 0.5s; }
.gallery-grid img:nth-child(6) { animation-delay: 0.6s; }
.gallery-grid img:nth-child(7) { animation-delay: 0.7s; }
.gallery-grid img:nth-child(8) { animation-delay: 0.8s; }
.gallery-grid img:nth-child(9) { animation-delay: 0.9s; }
.gallery-grid img:nth-child(10) { animation-delay: 1.0s; }

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-grid img {
    transform: none;
}

.gallery-info {
    display: none;
}

/* Step Repeat Gallery Styles */
.step-repeat-gallery {
    width: 100%;
    padding: 2rem 0;
}

.step-repeat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin: 0;
    max-width: 100%;
}

.step-repeat-gallery-item {
    position: relative;
    width: 100%;
    height: 153px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.step-repeat-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.step-repeat-gallery-item:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 139, 87, 0.30);
    z-index: 2;
    pointer-events: none;
}

.step-repeat-gallery-item:hover .gallery-filename {
    opacity: 1;
    visibility: visible;
}

.gallery-filename {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #2E8B57;
}

#modalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: white;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
    max-width: 600px;
}

.miami-why-choose {
    background: linear-gradient(135deg, #2E8B57, #228B47);
    border-radius: 25px;
    padding: 4rem;
    color: white;
    margin-top: 4rem;
    text-align: center;
}

.why-choose-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.why-choose-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.miami-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.advantage-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.learn-more {
    color: #2E8B57;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2E8B57;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 1.5rem 1.5rem 1.5rem;
    background-color: #f8f9fa;
}

.learn-more:hover {
    background-color: #2E8B57;
    color: white;
}

.post-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Blog Page Specific Styles */
.blog-content {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.blog-content .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 0;
}

.blog-content .detail-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: none;
    overflow: hidden;
}

.blog-content .detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-content .detail-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    display: block;
}

.blog-content .detail-card h3 {
    color: #2E8B57;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.blog-content .detail-card .post-meta {
    margin: 0 1.5rem 1rem 1.5rem;
    color: #2E8B57;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 500;
}

.blog-content .detail-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.blog-content .detail-card .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 1.5rem 1.5rem 1.5rem;
    background-color: #2E8B57;
    border: 2px solid #2E8B57;
    border-radius: 25px;
}

.blog-content .detail-card .learn-more:hover {
    background-color: #228B47;
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 3rem;
}

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

.feature {
    text-align: center;
    padding: 2rem;
}

.feature h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background-color: #2E8B57;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background-color: white;
    color: #2E8B57;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: #f8f9fa;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background-color: white;
    color: #2E8B57;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 1rem;
}

.footer-section:first-child {
    padding-left: 0;
}

.footer-section:last-child {
    padding-right: 0;
}

.footer-section h3,
.footer-section h4 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #2E8B57;
}

/* Blue underlined links for content areas */
.about-text a,
.service-details a,
.detail-card a,
.detail-item a,
.faq-answer a,
.blog-content a,
.contact-content a {
    color: #007bff;
    text-decoration: underline;
}

.about-text a:hover,
.service-details a:hover,
.detail-card a:hover,
.detail-item a:hover,
.faq-answer a:hover,
.blog-content a:hover,
.contact-content a:hover {
    color: #0056b3;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

/* Contact Page Specific Styles */
.contact-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

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

.contact-form-section h2 {
    color: #2E8B57;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2E8B57;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #2E8B57;
}

.contact-info-card h3 {
    color: #2E8B57;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 1rem;
    color: #666;
}

.contact-item strong {
    color: #2E8B57;
}

.contact-item a {
    color: #2E8B57;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.service-areas .areas-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
}

.areas-list span {
    padding: 0.3rem 0;
    color: #666;
    font-size: 0.9rem;
}

.testimonials-section {
    padding: 4rem 0;
    background-color: white;
}

.testimonials-section h2 {
    text-align: center;
    color: #2E8B57;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #2E8B57;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.testimonial cite {
    color: #2E8B57;
    font-weight: 600;
}

/* FAQ Page Specific Styles */
.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #2E8B57;
    background: white;
    color: #2E8B57;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: #2E8B57;
    color: white;
}

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

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2E8B57;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-icon {
    font-size: 1.2rem;
    color: #2E8B57;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.still-have-questions {
    background: white;
    margin-top: 4rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.question-cta {
    background: linear-gradient(135deg, #2E8B57 0%, #228B47 100%);
    color: white;
    padding: 3rem;
    text-align: center;
}

.question-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.question-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.question-cta .btn-primary {
    background-color: white;
    color: #2E8B57;
    border-color: white;
}

.question-cta .btn-primary:hover {
    background-color: #f8f9fa;
}

.question-cta .btn-secondary {
    border-color: white;
    color: white;
}

.question-cta .btn-secondary:hover {
    background-color: white;
    color: #2E8B57;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #666;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: #555;
    transform: translateY(-2px);
}

/* Contact Info Styling */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-details p {
    margin-bottom: 0;
    color: white;
    font-weight: normal;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li {
    font-weight: normal;
    color: #ccc;
}

.contact-details .contact-icon {
    color: #2E8B57;
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.contact-details a {
    color: white;
    text-decoration: none;
}

.contact-details a:hover {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Three Images Side by Side Layout */
.three-images-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 2rem auto;
    max-width: 1200px;
}

.image-column {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

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

.image-column:hover img {
    transform: scale(1.05);
}

.detail-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.detail-content-centered h3 {
    font-size: 2.4rem;
    color: #2E8B57;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

.detail-content-centered p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Miami Service Details Section */
.miami-service-details {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-intro-section {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.miami-service-details h2 {
    font-size: 3.2rem;
    color: #2E8B57;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-intro-text {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.miami-detail-flow {
    max-width: 1200px;
    margin: 0 auto;
}

.detail-flow-section {
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.detail-flow-section:first-child {
    margin-top: 6rem;
}

.detail-flow-section > h3 {
    font-size: 2.4rem;
    color: #2E8B57;
    margin: 0 0 2rem 0;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.detail-content-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.detail-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.detail-content p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.miami-venue-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.venue-item {
    background: #f0f8f4;
    color: #2E8B57;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #e0f0e6;
}

.weather-specs {
    margin-top: 2rem;
}

.spec-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2E8B57;
}

.spec-item strong {
    color: #2E8B57;
}

.rush-service-areas h4 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
    margin-top: 1rem;
}

.delivery-grid span {
    background: #fff3cd;
    color: #856404;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.detail-image-area {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: none;
}

.detail-image-area img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-image-area img {
    transform: none;
}

.detail-flow-section.green-bg-section {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(34, 139, 71, 0.08) 100%);
    padding: 2rem 0;
    margin: 2rem 0;
}

.detail-flow-section {
    align-items: flex-start;
}

.detail-content h3 {
    margin-top: 0;
}

.miami-testimonial-section {
    background: linear-gradient(135deg, #2E8B57, #228B47);
    border-radius: 25px;
    padding: 4rem;
    color: white;
    margin-top: 4rem;
    text-align: center;
}

.testimonial-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: white;
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content cite {
    display: block;
    margin-top: 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

/* Service Details Section (Legacy) */
.service-details {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.service-details h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2E8B57;
    margin-bottom: 3rem;
}

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

.detail-card,
.detail-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #2E8B57;
}

.detail-card:hover,
.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.detail-card h3,
.detail-item h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.detail-card p,
.detail-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* About Page Styles */

.about-content {
    padding: 4rem 0;
}

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

.about-text h2,
.about-text h3 {
    color: #2E8B57;
    margin-bottom: 1rem;
}

.about-text h2 {
    font-size: 2rem;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.about-text ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.about-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.about-services h3 {
    color: #2E8B57;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.services-list {
    display: grid;
    gap: 1.5rem;
}

.service-category h4 {
    color: #2E8B57;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 0.3rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

/* Global image styling to remove gaps */
img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: top;
    line-height: 0;
}

/* Remove any spacing from image containers */
.hero-image,
.page-hero .hero-image,
.page-hero .hero-gallery,
.service-card,
.detail-card,
.detail-item {
    line-height: 0;
}

/* Ensure no spacing on image elements specifically */
.hero-image img,
.page-hero .hero-image img,
.page-hero .hero-gallery img,
.service-card img,
.detail-card img,
.detail-item img {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    border: none;
    outline: none;
}

/* Remove faded green background from service showcase section */
.miami-services-showcase.green-bg-section {
    background: white;
}

/* Responsive design for content sections */
@media (max-width: 768px) {
    .detail-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-flow-section h3 {
        font-size: 1.8rem;
        text-align: center;
    }

    .detail-image-area img {
        height: 250px;
    }

    .three-images-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .image-column img {
        height: 220px;
    }

    .detail-content-centered {
        padding: 0 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-repeat-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-repeat-gallery-item {
        height: 180px;
    }

    .gallery-filename {
        font-size: 0.9rem;
    }

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

    .portfolio-grid-item {
        height: 180px;
    }

    .three-images-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #four-images-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
        margin: 1rem auto;
        max-width: 100%;
    }

    #four-images-row .image-column {
        margin: 0;
    }

    #four-images-row .image-column img {
        height: 220px;
        width: 100%;
    }

    .service-showcase-section {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .nav-container {
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .mobile-menu-btn {
        display: block;
        order: 3;
    }

    .logo {
        order: 1;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        width: 100%;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        display: block !important;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu .dropdown {
        width: 100%;
    }

    .nav-menu .dropdown-toggle {
        justify-content: center;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

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

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

    .page-hero {
        padding: 3rem 0 1.5rem 0;
        min-height: 250px;
    }

    .service-flow-section {
        margin-bottom: 4rem;
    }

    .service-header-centered {
        padding: 0 1rem;
        margin-bottom: 0.15rem;
    }

    .service-description-centered {
        padding: 0 1rem;
        margin-top: 0.15rem;
    }

    .gallery-grid {
        display: flex;
        gap: 0;
        overflow-x: auto;
        padding: 0;
    }

    .gallery-grid img {
        width: 200px;
        height: 150px;
        flex-shrink: 0;
    }

    .expandable-gallery {
        padding: 0;
    }

    .gallery-nav-arrows {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .gallery-prev {
        left: 5px;
    }

    .gallery-next {
        right: 5px;
    }

    .gallery-modal-nav {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 10px;
    }

    .gallery-modal-prev {
        left: 15px;
    }

    .gallery-modal-next {
        right: 15px;
    }

    .gallery-modal-close {
        top: 20px;
        right: 20px;
        font-size: 20px;
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }

    .gallery-modal-zoom-controls {
        bottom: -50px;
        padding: 10px 16px;
        gap: 10px;
        border-radius: 16px;
    }

    .gallery-modal-zoom-controls button {
        width: 32px;
        height: 32px;
        font-size: 14px;
        border-radius: 6px;
    }

    .gallery-modal-zoom-controls button:last-child {
        font-size: 10px;
        width: 50px;
    }

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

    .detail-flow-section h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .detail-content-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-flow-section {
        margin-bottom: 4rem;
    }

    .detail-image-area {
        order: -1;
    }

    .detail-image-area img {
        height: 280px;
    }

    .miami-service-details h2 {
        font-size: 2.5rem;
    }

    .detail-content h3 {
        font-size: 2rem;
    }

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

    .miami-testimonial-section {
        padding: 2.5rem 1.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .dropdown.active .dropdown-menu {
        max-height: 60vh;
        overflow-y: auto;
        padding: 0.5rem 0;
        -webkit-overflow-scrolling: touch;
    }

    .dropdown-menu li {
        width: 100%;
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid #e9ecef;
        text-align: left;
        display: block;
        width: 100%;
        color: #333;
        text-decoration: none;
    }

    .dropdown-menu a:hover {
        background-color: #e9ecef;
        color: #2E8B57;
    }

    main {
        padding-top: 80px;
        margin-top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section {
        order: -1;
    }

    .faq-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .faq-category-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

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

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

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

    .services-overview h2,
    .why-choose-us h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Remove old filter effect */