/* ========== RESET & BASE ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ========== BUTTONS ========== */
.btn {
    padding: 16px 38px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #fff;
    color: #4e8c4e;
    transition: transform 0.2s ease-in-out;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.1);
}

.btn-outline {
    background-color: #4e8c4e;
    color: #fff;
    transition: transform 0.2s ease-in-out;
    display: inline-block;
}

.btn-outline:hover {
    transform: scale(1.1);
}

/* ======================================== */
/* ========== HEADER ====================== */
/* ======================================== */
.site-header {
    background-color: #f8f9f6;
    border-bottom: 1px solid #e0e0e0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    width: 100%;
    position: relative;
}

.header-top-left {
    flex: 1;
}

.header-logo {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-top-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.logo-placeholder {
    width: 180px;
    height: 75px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #888;
    border-radius: 4px;
}

.logo-placeholder.small {
    width: 100px;
    height: 40px;
    font-size: 14px;
}

/* ========== MENU BUTTON - TOP RIGHT ========== */
.menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-family: inherit;
    transition: all 0.3s ease;
    border-radius: 8px;
    z-index: 10;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.menu-icon span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #4e8c4e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn:hover .menu-icon span {
    background-color: #3d7a3d;
}

/* ======================================== */
/* ========== CENTER POP-UP MENU ========== */
/* ======================================== */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 480px;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    z-index: 3000;
    overflow-y: auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.side-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e8f0e8;
}

.side-menu-header .logo-placeholder.small {
    width: auto;
    height: 60px;
    object-fit: contain;
    display: block;
}

.side-menu-header img {
    background: none !important;
    background-color: transparent !important;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.close-menu-btn:hover {
    color: #c0392b;
    background-color: rgba(192, 57, 43, 0.1);
    transform: rotate(90deg);
}

.side-menu-links {
    padding: 0;
    list-style: none;
}

.side-menu-links li {
    margin-bottom: 5px;
}

.side-menu-links a {
    display: block;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

.side-menu-links a:hover {
    background-color: #4e8c4e;
    color: #fff;
    transform: translateX(5px);
}

.side-menu-links a:active {
    transform: scale(0.98);
}

/* ========== ANIMATION FOR MENU ITEMS ========== */
.side-menu.active .side-menu-links li {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.side-menu.active .side-menu-links li:nth-child(1) { animation-delay: 0.05s; }
.side-menu.active .side-menu-links li:nth-child(2) { animation-delay: 0.1s; }
.side-menu.active .side-menu-links li:nth-child(3) { animation-delay: 0.15s; }
.side-menu.active .side-menu-links li:nth-child(4) { animation-delay: 0.2s; }
.side-menu.active .side-menu-links li:nth-child(5) { animation-delay: 0.25s; }
.side-menu.active .side-menu-links li:nth-child(6) { animation-delay: 0.3s; }
.side-menu.active .side-menu-links li:nth-child(7) { animation-delay: 0.35s; }
.side-menu.active .side-menu-links li:nth-child(8) { animation-delay: 0.4s; }
.side-menu.active .side-menu-links li:nth-child(9) { animation-delay: 0.45s; }
.side-menu.active .side-menu-links li:nth-child(10) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 767px) {
    .side-menu {
        width: 92%;
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .side-menu-links a {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .close-menu-btn {
        font-size: 28px;
        width: 40px;
        height: 40px;
    }
    
    .side-menu-header .logo-placeholder.small {
        height: 50px;
    }
    
    .menu-icon span {
        width: 24px;
        height: 3px;
    }
    
    .menu-icon {
        gap: 5px;
    }
}

@media screen and (min-width: 768px) {
    .side-menu {
        padding: 40px 35px;
    }
    
    .side-menu-links a {
        font-size: 20px;
        padding: 14px 24px;
    }
}

/* ========== SCROLLBAR STYLING ========== */
.side-menu::-webkit-scrollbar {
    width: 4px;
}

.side-menu::-webkit-scrollbar-track {
    background: transparent;
}

.side-menu::-webkit-scrollbar-thumb {
    background: #4e8c4e;
    border-radius: 10px;
}

.side-menu {
    scrollbar-width: thin;
    scrollbar-color: #4e8c4e transparent;
}

/* ========== SECTION ========== */
.section {
    padding: 50px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 28px;
    color: #4e8c4e;
}

/* ========== SERVICES GRID =============== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    border: 3px solid #4e8c4e;
    transition: transform 0.4s ease, box-shadow 1s ease;
}

.service-card:hover {
    transform: translateY(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-image-placeholder {
    width: 100%;
    height: 220px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.learn-more {
    background-color: #c0392b;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid #c0392b;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
}

.learn-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.learn-more:hover {
    background-color: #c0392b;
    color: #fff;
    gap: 12px;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.learn-more:hover::after {
    transform: translateX(3px);
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    position: relative;
    padding: 60px 0;
    background-image: url('images/1000008282.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #fff;
    padding: 12px 28px;
    color: #fff;
    display: table;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    border-radius: 8px;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background-color: #fefefe;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    display: block;
    border: 3px solid #4e8c4e;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    border-color: #4e8c4e;
}

.stars-placeholder {
    color: #f39c12;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.customer-name {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Tablet and Desktop */
@media screen and (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        gap: 30px;
        max-width: 100%;
    }
    
    .testimonial-card {
        flex: 1;
    }
}

/* Mobile adjustment */
@media screen and (max-width: 767px) {
    .testimonials .section-title {
        font-size: 28px;
        padding: 8px 16px;
    }
    
    .site-header {
        padding: 5px 0;
    }
    
    .header-logo img.logo {
        max-width: 160px;
        height: auto;
    }
}

/* ========== QUOTE FORM ========== */
.quote-form {
    background-color: #fff;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #4e8c4e;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4e8c4e;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    background-color: #4e8c4e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #3d7a3d;
}

/* ========== CTA SECTION - ABOVE FOOTER ========== */
.cta-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('images/1000008243.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
}

.cta-left {
    flex: 1;
    text-align: left;
}

.cta-left h2 {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.cta-right {
    flex: 1;
    text-align: left;
}

.cta-right h3 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: row;
    gap: 25px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 38px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

.cta-buttons .btn-primary {
    background-color: #4e8c4e;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background-color: #3d7a3d;
}

.cta-buttons .btn-outline {
    background-color: white;
    border: 2px solid white;
    color: #4e8c4e;
}

.cta-buttons .btn-outline:hover {
    background-color: #f5f5f5;
    color: #4e8c4e;
}

.cta-right h3 .highlight-green {
    color: #4e8c4e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* MOBILE - Stack vertically on phones */
@media screen and (max-width: 767px) {
    .cta-section {
        min-height: auto;
        background-attachment: scroll;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 50px 25px;
        gap: 30px;
    }
    
    .cta-left,
    .cta-right {
        text-align: center;
    }
    
    .cta-left h2 {
        font-size: 32px;
    }
    
    .cta-right h3 {
        font-size: 36px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
        white-space: nowrap;
    }
}

/* TABLET */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .cta-content {
        padding: 60px 30px;
        gap: 40px;
    }
    
    .cta-left h2 {
        font-size: 48px;
    }
    
    .cta-right h3 {
        font-size: 42px;
    }
    
    .cta-buttons .btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: #222;
    color: #ccc;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
    text-align: center;
}

.footer-logo .logo-placeholder {
    background-color: #444;
    color: #ccc;
    width: 150px;
    height: 60px;
    font-size: 18px;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* ================================================ */
/* ========== TABLET (768px+) ===================== */
/* ================================================ */
@media screen and (min-width: 768px) {
    .header-top {
        padding: 15px 0 10px;
    }
    
    .logo-placeholder {
        width: 220px;
        height: 80px;
        font-size: 26px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .testimonials-grid {
        flex-direction: row;
        gap: 30px;
        max-width: 100%;
    }
    
    .testimonial-card {
        flex: 1;
    }
    
    .form-grid {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 800px;
    }
    
    .form-group {
        flex: 1 1 calc(50% - 15px);
    }
    
    .form-full {
        flex: 1 1 100%;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        gap: 40px;
    }
}

/* ================================================ */
/* ========== DESKTOP (1024px+) =================== */
/* ================================================ */
@media screen and (min-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    
    .header-top {
        padding: 10px 0 5px;
    }
    
    .logo-placeholder {
        width: 200px;
        height: 65px;
        font-size: 22px;
    }
    
    .services-grid {
        gap: 40px;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .card-image-placeholder {
        height: 280px;
    }
    
    .testimonials-grid {
        max-width: 900px;
    }
    
    .form-grid {
        max-width: 900px;
    }
}

/* ================================================ */
/* ========== MOBILE HEADER & CONTAINER FIX ======= */
/* ================================================ */
@media screen and (max-width: 767px) {
    .site-header {
        width: 100%;
        padding: 0 !important;
    }

    .header-top {
        padding: 8px 15px 12px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }

    .header-top-left,
    .header-logo,
    .header-top-right {
        padding: 0 !important;
    }

    .site-footer {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.28);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    animation: fadeUp 1.1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeUp 1.3s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
}

@media screen and (min-width: 768px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
}

/* ========== ABOUT HERO SECTION ========== */
.about-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/Screenshot_20260612_111853_Gallery.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

/* ========== ABOUT PAGE ========== */
.about-section {
    padding: 80px 0;
    background-color: #fff;
    min-height: 60vh;
}

.about-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #4e8c4e;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #4e8c4e;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #333;
}

.about-content p:last-child {
    margin-bottom: 0;
}

@media screen and (min-width: 768px) {
    .about-hero {
        min-height: 500px;
    }
    .about-hero-content h1 {
        font-size: 72px;
    }
}

@media screen and (max-width: 767px) {
    .about-hero {
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .about-hero-content h1 {
        font-size: 36px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-content p {
        font-size: 16px;
    }
}

/* ========== SEAMLESS GUTTERS PAGE ========== */
.gutters-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gutters-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #4e8c4e;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 4px solid #4e8c4e;
}

.gutters-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gutter-card {
    text-align: center;
}

.gutter-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gutter-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* ========== SEAMLESS GUTTERS HERO SECTION ========== */
.gutters-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/Screenshot_20260610_094212_Photos.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gutters-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.gutters-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.gutters-hero-content h1 {
    font-size: 60px;
    font-weight: 1000;
    margin-bottom: 35px;
}

.gutters-hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .gutters-hero {
        min-height: 400px;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .gutters-hero-content h1 {
        font-size: 32px;
    }
    
    .gutters-hero-content p {
        font-size: 16px;
    }
}

.gutter-image-container:hover .gutter-image {
    transform: scale(1.05);
}

.gutter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.gutter-image-container:hover .gutter-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gutter-image-container:hover .overlay-text {
    transform: translateY(0);
}

.overlay-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #fff;
}

.overlay-text p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 280px;
}

.gutter-label {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #4e8c4e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media screen and (min-width: 768px) {
    .gutters-grid {
        flex-direction: row;
        gap: 40px;
    }
    
    .gutter-card {
        flex: 1;
    }
    
    .gutter-image {
        height: 400px;
    }
    
    .gutters-hero {
        min-height: 600px;
    }
}

@media screen and (max-width: 767px) {
    .gutters-title {
        font-size: 28px;
    }
    
    .gutter-image {
        height: 250px;
    }
    
    .overlay-text h3 {
        font-size: 22px;
    }
    
    .overlay-text p {
        font-size: 14px;
    }
    
    .gutter-label {
        font-size: 18px;
    }
}

/* ========== SERVICE AREA HERO SECTION ========== */
.service-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/Screenshot_20260612_111853_Gallery.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .service-hero {
        min-height: 500px;
    }
    
    .service-hero-content h1 {
        font-size: 70px;
    }
}

@media screen and (max-width: 767px) {
    .service-hero {
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .service-hero-content h1 {
        font-size: 36px;
    }
    
    .service-hero-content p {
        font-size: 16px;
    }
}

/* ========== SERVICE AREA PAGE ========== */
.service-area-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-area-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-area-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #333;
    text-align: center;
}

.service-area-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 40px 0;
}

.service-area-column {
    background-color: #fafafa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-area-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-area-column h3 {
    font-size: 30px;
    color: #4e8c4e;
    margin-bottom: 15px;
    border-bottom: 2px solid #4e8c4e;
    display: inline-block;
    padding-bottom: 5px;
}

.service-area-column ul {
    list-style: none;
    margin-top: 15px;
}

.service-area-column li {
    padding: 8px 0;
    color: #555;
    font-size: 16px;
    position: relative;
    padding-left: 22px;
    transition: color 0.3s ease;
}

.service-area-column li:hover {
    color: #4e8c4e;
}

.service-area-column li::before {
    content: "→";
    color: #c0392b;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.service-area-column li:hover::before {
    transform: translateX(3px);
}

.service-area-note {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f0e8 100%);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #4e8c4e;
    margin-top: 30px;
    border-left: 4px solid #4e8c4e;
}

@media screen and (min-width: 768px) {
    .service-area-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (min-width: 1024px) {
    .service-area-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .service-area-content {
        padding: 20px;
    }
    
    .service-area-content > p {
        font-size: 16px;
    }
    
    .service-area-column h3 {
        font-size: 20px;
    }
    
    .service-area-column li {
        font-size: 14px;
    }
}

/* ========== GUTTER GUARDS HERO SECTION ========== */
.gutter-guards-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/1000008281.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gutter-guards-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.52);
    z-index: 1;
}

.gutter-guards-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.gutter-guards-hero-content h1 {
    font-size: 60px;
    font-weight: 1000;
    margin-bottom: 30px;
}

.gutter-guards-hero-content p {
    font-size: 30px;
    line-height: 1.6;
}

@media screen and (max-width: 767px) {
    .gutter-guards-hero {
        min-height: 400px;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .gutter-guards-hero-content h1 {
        font-size: 32px;
    }
    
    .gutter-guards-hero-content p {
        font-size: 16px;
    }
}

/* ========== ROOFING HERO SECTION ========== */
.roofing-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/1000008276.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.roofing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.roofing-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.roofing-hero-content h1 {
    font-size: 60px;
    font-weight: 1000;
    margin-bottom: 20px;
}

.roofing-hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .roofing-hero {
        min-height: 600px;
    }
}

@media screen and (max-width: 767px) {
    .roofing-hero {
        min-height: 400px;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .roofing-hero-content h1 {
        font-size: 32px;
    }
    
    .roofing-hero-content p {
        font-size: 16px;
    }
}

/* ========== GUTTER CLEANING HERO SECTION ========== */
.cleaning-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/1000008280.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cleaning-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cleaning-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.cleaning-hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
}

.cleaning-hero-content p {
    font-size: 20px;
    line-height: 1.6;
}

@media screen and (min-width: 768px) {
    .cleaning-hero {
        min-height: 600px;
    }
}

@media screen and (max-width: 767px) {
    .cleaning-hero {
        min-height: 400px;
        background-attachment: scroll;
        background-position: center center;
    }
    
    .cleaning-hero-content h1 {
        font-size: 32px;
    }
    
    .cleaning-hero-content p {
        font-size: 16px;
    }
}

/* ========== GALLERY HERO SECTION ========== */
.gallery-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('images/Screenshot_20260612_111853_Gallery.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.gallery-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.gallery-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
    max-width: 800px;
}

.gallery-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .gallery-hero {
        min-height: 500px;
    }
    
    .gallery-hero-content h1 {
        font-size: 70px;
    }
}

@media screen and (max-width: 767px) {
    .gallery-hero {
        min-height: 350px;
        background-attachment: scroll;
    }
    
    .gallery-hero-content h1 {
        font-size: 36px;
    }
}

/* ========== GALLERY MASONRY LAYOUT ========== */
.gallery-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #ddd;
}

.gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1 / 1;
}

.gallery-item.medium {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2 / 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 2 / 2;
}

.gallery-item.tall {
    grid-column: span 1;
    grid-row: span 2;
    aspect-ratio: 1 / 2;
}

.gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ========== LIGHTBOX MODAL ========== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 8px;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
}

.close-lightbox:hover {
    color: #c0392b;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    transition: color 0.3s ease;
    user-select: none;
    z-index: 10000;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #4e8c4e;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 8px 18px;
    border-radius: 30px;
}

@media screen and (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gallery-item.medium,
    .gallery-item.wide {
        grid-column: span 2;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media screen and (max-width: 767px) {
    .gallery-section {
        padding: 30px 10px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item.small {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1 / 1;
    }
    
    .gallery-item.medium {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2 / 1;
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: 2 / 2;
    }
    
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 2;
        aspect-ratio: 1 / 1.8;
    }
    
    .gallery-item.wide {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 2 / 1;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 10px;
    }
    
    .close-lightbox {
        font-size: 30px;
        right: 15px;
        top: 10px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 70%;
    }
    
    .lightbox-counter {
        font-size: 14px;
        bottom: 15px;
    }
}


/* ========== QUALITY YOU CAN SEE SECTION ========== */
.quality-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #2e7d32 0%, #81c784 50%, #c8e6c9 100%);
}

.quality-title {
    text-align: center;
    font-size: 100px;
    font-weight: 1000;
    margin-bottom: 60px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.quality-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

.quality-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========== OVERLAY ON IMAGES ========== */
.quality-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.competitor-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.quality-label {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    background-color: #4e8c4e;
    border-radius: 20px;
    display: inline-block;
}

.competitor-label {
    background-color: #c0392b;
}

/* ========== DESKTOP - 2x2 Grid ========== */
@media screen and (min-width: 768px) {
    .quality-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 1000px;
    }
    
    .quality-card {
        aspect-ratio: 4 / 3;
    }
    
    .quality-title {
        font-size: 48px;
    }
}

/* ========== MOBILE - Diagonal Layout (no tilt) ========== */
@media screen and (max-width: 767px) {
    .quality-section {
        padding: 40px 15px;
    }
    
    .quality-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .quality-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .quality-card {
        aspect-ratio: 3 / 4;
        border-radius: 8px;
    }
    
    .quality-overlay {
        padding: 15px 12px 12px 12px;
    }
    
    .quality-label {
        font-size: 12px;
        padding: 4px 12px;
        letter-spacing: 1px;
    }
    
    /* Diagonal staggered layout - no tilt */
    .quality-card.our-work:first-child {
        margin-top: 10px;
        margin-bottom: px;
    }
    
    .quality-card.competitor:nth-child(2) {
        margin-top: 10px;
        margin-bottom: px;
    }
    
    .quality-card.our-work:nth-child(3) {
        margin-top: 0x;
        margin-bottom: 10px;
    }
    
    .quality-card.competitor:nth-child(4) {
        margin-top: px;
        margin-bottom: 10px;
    }
}

/* ========== TABLET ========== */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .quality-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .quality-card {
        aspect-ratio: 4 / 3;
    }
}

/* ========== SCROLL ANIMATIONS - PROFESSIONAL ========== */

/* Everything starts hidden with scale + fade */
.service-card,
.testimonial-card,
.gutter-card,
.gallery-item,
.about-content,
.quality-card,
.quality-title,
.form-group,
.btn-submit,
.section-title,
.gutters-title,
.about-title,
.gallery-title,
.service-area-title {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, opacity;
}

/* When visible - normal size */
.service-card.visible,
.testimonial-card.visible,
.gutter-card.visible,
.gallery-item.visible,
.about-content.visible,
.quality-card.visible,
.quality-title.visible,
.form-group.visible,
.btn-submit.visible,
.section-title.visible,
.gutters-title.visible,
.about-title.visible,
.gallery-title.visible,
.service-area-title.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ========== STAGGER DELAYS ========== */
/* Service cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

/* Testimonial cards */
.testimonial-card:nth-child(1) { transition-delay: 0s; }
.testimonial-card:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card:nth-child(3) { transition-delay: 0.24s; }

/* Gutter cards */
.gutter-card:nth-child(1) { transition-delay: 0s; }
.gutter-card:nth-child(2) { transition-delay: 0.12s; }

/* Gallery items */
.gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-item:nth-child(2) { transition-delay: 0.06s; }
.gallery-item:nth-child(3) { transition-delay: 0.12s; }
.gallery-item:nth-child(4) { transition-delay: 0.18s; }
.gallery-item:nth-child(5) { transition-delay: 0.24s; }
.gallery-item:nth-child(6) { transition-delay: 0.30s; }
.gallery-item:nth-child(7) { transition-delay: 0.36s; }
.gallery-item:nth-child(8) { transition-delay: 0.42s; }

/* Quality cards - diagonal stagger */
.quality-card:nth-child(1) { transition-delay: 0s; }
.quality-card:nth-child(2) { transition-delay: 0.1s; }
.quality-card:nth-child(3) { transition-delay: 0.2s; }
.quality-card:nth-child(4) { transition-delay: 0.3s; }

/* Quality title */
.quality-title { transition-delay: 0s; }

/* Form groups - staggered */
.form-group:nth-child(1) { transition-delay: 0s; }
.form-group:nth-child(2) { transition-delay: 0.08s; }
.form-group:nth-child(3) { transition-delay: 0.16s; }
.form-group:nth-child(4) { transition-delay: 0.24s; }

/* Submit button */
.btn-submit { transition-delay: 0.3s; }

/* Titles - faster */
.section-title,
.gutters-title,
.about-title,
.gallery-title,
.service-area-title {
    transition-delay: 0s;
    transition-duration: 0.5s;
}

/* ========== HERO TEXT ANIMATION ========== */
.gutters-hero-content,
.gutter-guards-hero-content,
.roofing-hero-content,
.cleaning-hero-content,
.about-hero-content,
.gallery-hero-content,
.service-hero-content {
    animation: fadeScale 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ========== HOVER EFFECTS ========== */
.service-card.visible:hover,
.testimonial-card.visible:hover,
.gutter-card.visible:hover {
    transform: scale(1.02) translateY(-5px);
    transition: transform 0.3s ease;
}

.gallery-item.visible:hover,
.quality-card.visible:hover {
    transform: scale(1.03) translateY(-5px);
    transition: transform 0.3s ease;
}

/* ========== MOBILE OPTIMIZATION ========== */
@media screen and (max-width: 767px) {
    .service-card,
    .testimonial-card,
    .gutter-card,
    .gallery-item,
    .about-content,
    .quality-card,
    .quality-title,
    .form-group,
    .btn-submit,
    .section-title,
    .gutters-title,
    .about-title,
    .gallery-title,
    .service-area-title {
        transition-duration: 0.5s;
        transform: scale(0.95) translateY(15px);
    }
    
    /* Smaller stagger delays on mobile */
    .service-card:nth-child(1) { transition-delay: 0s; }
    .service-card:nth-child(2) { transition-delay: 0.08s; }
    .service-card:nth-child(3) { transition-delay: 0.16s; }
    .service-card:nth-child(4) { transition-delay: 0.24s; }
    
    .testimonial-card:nth-child(1) { transition-delay: 0s; }
    .testimonial-card:nth-child(2) { transition-delay: 0.08s; }
    .testimonial-card:nth-child(3) { transition-delay: 0.16s; }
    
    .gallery-item:nth-child(1) { transition-delay: 0s; }
    .gallery-item:nth-child(2) { transition-delay: 0.05s; }
    .gallery-item:nth-child(3) { transition-delay: 0.10s; }
    .gallery-item:nth-child(4) { transition-delay: 0.15s; }
    .gallery-item:nth-child(5) { transition-delay: 0.20s; }
    .gallery-item:nth-child(6) { transition-delay: 0.25s; }
    
    .quality-card:nth-child(1) { transition-delay: 0s; }
    .quality-card:nth-child(2) { transition-delay: 0.08s; }
    .quality-card:nth-child(3) { transition-delay: 0.16s; }
    .quality-card:nth-child(4) { transition-delay: 0.24s; }
    
    .form-group:nth-child(1) { transition-delay: 0s; }
    .form-group:nth-child(2) { transition-delay: 0.06s; }
    .form-group:nth-child(3) { transition-delay: 0.12s; }
    .form-group:nth-child(4) { transition-delay: 0.18s; }
    
    .btn-submit { transition-delay: 0.2s; }
}