/* ============================================
   LOCAL LANDING PAGES - Elegant Styles
   LS Pavers | Jacksonville FL & Surrounding Areas
   ============================================ */

/* Hero Section */
.local-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.local-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.local-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.local-hero .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 30, 60, 0.85) 0%, rgba(0, 60, 120, 0.7) 50%, rgba(0, 120, 227, 0.55) 100%);
}

.local-hero .hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.local-hero .hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.local-hero .hero-shapes .shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.local-hero .hero-shapes .shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    animation: floatShape 6s ease-in-out infinite reverse;
}

.local-hero .hero-shapes .shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation: floatShape 10s ease-in-out infinite;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.local-hero .container {
    position: relative;
    z-index: 2;
}

.local-hero-content {
    max-width: 800px;
    color: #fff;
}

.hero-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-location-badge i {
    color: #fed25c;
}

.local-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.local-hero .hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-trust-item i {
    color: #fed25c;
    font-size: 1rem;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

/* Location Intro Section */
.location-intro {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.location-intro .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-intro .intro-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.location-intro .intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.location-intro .intro-image .image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 120, 227, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.intro-text h2 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.intro-text .location-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.intro-highlight-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.intro-highlight-item i {
    color: #0078e3;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.intro-highlight-item span {
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

/* Benefits Section */
.service-benefits {
    padding: 5rem 0;
    background: #fff;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.1) 0%, rgba(0, 120, 227, 0.05) 100%);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0078e3;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

.benefit-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 120, 227, 0.3);
}

.benefit-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(0, 120, 227, 0.12) 0%, rgba(0, 120, 227, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: #0078e3;
}

.benefit-card h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: 0.95rem;
}

/* Process Section */
.installation-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #f8fafc 100%);
}

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

.process-step {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 15px rgba(0, 120, 227, 0.3);
}

.process-step h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Gallery Section */
.project-gallery {
    padding: 5rem 0;
    background: #fff;
}

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

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 30, 60, 0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Materials Section */
.materials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.material-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

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

.material-card .material-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.material-card .material-info {
    padding: 1.5rem;
}

.material-card h3 {
    font-size: 1.15rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.material-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.6;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
}

.material-tag {
    background: rgba(0, 120, 227, 0.08);
    color: #0078e3;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #fff;
}

.faq-list {
    max-width: 850px;
    margin: 2.5rem auto 0;
}

.faq-item {
    background: #f8fafc;
    border-radius: 14px;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 120, 227, 0.3);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.05rem;
    user-select: none;
}

.faq-question i {
    color: #0078e3;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    color: #475569;
    line-height: 1.75;
    font-size: 0.98rem;
}

/* Quote Form Section */
.local-quote-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #001e3c 0%, #003366 50%, #0055a5 100%);
    position: relative;
    overflow: hidden;
}

.local-quote-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.local-quote-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.quote-info-side h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quote-info-side .quote-tagline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.quote-selling-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.quote-selling-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-selling-points li i {
    color: #fed25c;
    font-size: 1rem;
    flex-shrink: 0;
}

.quote-phone-block {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-phone-block h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.quote-phone-block p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.quote-phone-block .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Form Styles */
.local-quote-form {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.local-quote-form h2 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.local-quote-form .form-intro {
    color: #64748b;
    font-size: 0.92rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.local-quote-form .form-group {
    margin-bottom: 1.25rem;
}

.local-quote-form label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
}

.local-quote-form input,
.local-quote-form select,
.local-quote-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #f8fafc;
}

.local-quote-form input:focus,
.local-quote-form select:focus,
.local-quote-form textarea:focus {
    border-color: #0078e3;
    box-shadow: 0 0 0 3px rgba(0, 120, 227, 0.1);
    outline: none;
    background: #fff;
}

.local-quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.local-quote-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: #475569;
    cursor: pointer;
    font-weight: 400;
}

.local-quote-form .checkbox-label input[type="checkbox"] {
    width: auto;
    accent-color: #0078e3;
}

.local-quote-form .btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 120, 227, 0.3);
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.local-quote-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 120, 227, 0.4);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 1rem;
}

.form-disclaimer a {
    color: #0078e3;
    text-decoration: none;
}

/* Service Areas Mini Section */
.local-service-areas {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #f8fafc 100%);
}

.areas-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.area-pill {
    padding: 8px 20px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.area-pill:hover,
.area-pill.active {
    background: linear-gradient(135deg, #0078e3 0%, #005bb5 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 120, 227, 0.25);
}

/* Internal Links Section */
.related-services {
    padding: 4rem 0;
    background: #fff;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.related-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 0.92rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.related-link:hover {
    background: #0078e3;
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 120, 227, 0.25);
}

.related-link i {
    color: #0078e3;
    transition: color 0.3s ease;
}

.related-link:hover i {
    color: #fff;
}

/* Content Sections - Long-form SEO */
.content-section {
    padding: 5rem 0;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-two-col.reverse {
    direction: rtl;
}

.content-two-col.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.content-text h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.content-text p {
    color: #475569;
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.content-text ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.content-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 0.5rem 0;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.6;
}

.content-text ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0078e3;
    flex-shrink: 0;
    margin-top: 3px;
}

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

.content-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .local-hero h1 {
        font-size: 2.2rem;
    }
    
    .location-intro .intro-grid,
    .content-two-col,
    .quote-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .content-two-col.reverse {
        direction: ltr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .intro-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .local-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }
    
    .local-hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-trust-row {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .local-quote-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .local-quote-form {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .local-hero h1 {
        font-size: 1.5rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
