/* Fire Pit Elegant Styles */

/* Hero Section Styles */
.hero-elegant {
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #fed25c, #e6b94d);
    top: -100px;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fed25c, #e6b94d);
    bottom: -50px;
    left: 15%;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e6b94d, #fed25c);
    top: 40%;
    right: 25%;
    animation: float 20s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.1) 0%, rgba(230, 185, 77, 0.1) 100%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(254, 210, 92, 0.2);
}

.hero-badge i {
    color: #fed25c;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1e293b;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fed25c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Materials Showcase */
.materials-showcase {
    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: 3rem;
}

.material-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.material-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.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-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
}

.material-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.material-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.material-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.material-feature {
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.1) 0%, rgba(230, 185, 77, 0.1) 100%);
    color: #1e293b;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(254, 210, 92, 0.2);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.05) 0%, rgba(230, 185, 77, 0.05) 100%);
}

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

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(254, 210, 92, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(254, 210, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: #fed25c;
}

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

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 35px;
    width: 2px;
    height: calc(100% - 30px);
    background: linear-gradient(to bottom, rgba(254, 210, 92, 0.3) 0%, rgba(254, 210, 92, 0.1) 100%);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fed25c 0%, #e6b94d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-right: 2rem;
    box-shadow: 0 10px 20px rgba(254, 210, 92, 0.2);
}

.step-content {
    padding-top: 0.5rem;
}

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

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/fire-pit-jacksonville-fl.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

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

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: rgba(254, 210, 92, 0.5);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fed25c 0%, #e6b94d 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.cta-elegant {
    background: linear-gradient(135deg, #fed25c 0%, #e6b94d 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(254, 210, 92, 0.2);
}

.cta-badge-elegant {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
}

.cta-badge-elegant i {
    margin-right: 0.5rem;
}

.cta-content-elegant h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content-elegant p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cta-features-elegant {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-feature-elegant {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-feature-elegant i {
    margin-right: 0.5rem;
    color: white;
}

.cta-feature-elegant span {
    color: white;
    font-weight: 500;
}

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

.cta-buttons-elegant .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.cta-buttons-elegant .btn i {
    margin-right: 0.5rem;
}

.cta-buttons-elegant .btn-primary {
    background: white;
    color: #fed25c;
}

.cta-buttons-elegant .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-accordion-item {
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(254, 210, 92, 0.2);
}

.faq-accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    transition: all 0.3s ease;
}

.faq-accordion-header:hover {
    background: rgba(254, 210, 92, 0.03);
}

.faq-accordion-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 600;
    padding-right: 2rem;
}

.faq-accordion-header .icon {
    color: #fed25c;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border-top: 0px solid rgba(226, 232, 240, 0.8);
}

.faq-accordion-item.active .faq-accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

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

.faq-accordion-content p {
    margin: 1rem 0;
    color: #64748b;
    line-height: 1.6;
}

.faq-accordion-content p strong {
    color: #1e293b;
    font-weight: 600;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

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

.service-content-elegant {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap-reverse;
}

.service-image-elegant {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-elegant img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
}

.service-image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
}

.service-image-badge span {
    background: rgba(255, 126, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-text-elegant {
    flex: 1;
    min-width: 300px;
}

.service-text-elegant p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 1.5rem;
}

.service-guarantee {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #fed25c 0%, #e6b94d 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
}

.service-guarantee i {
    margin-right: 0.5rem;
}

.benefits-box {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.benefits-box-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.1) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
}

.benefits-box h3 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #1e293b;
    font-size: 1.8rem;
}

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

.benefit-card-elegant {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card-elegant:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(254, 210, 92, 0.2);
}

.benefit-icon-elegant {
    width: 70px;
    height: 70px;
    background: rgba(254, 210, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon-elegant i {
    font-size: 2rem;
    color: #fed25c;
}

.benefit-card-elegant h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: left;
    font-size: 1.3rem;
}

.benefit-card-elegant p {
    color: #64748b;
    line-height: 1.6;
}

/* Fire Pit Types Section */
.fire-pit-types-elegant {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.05) 0%, rgba(230, 185, 77, 0.05) 100%);
}

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

.type-card-elegant {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
}

.type-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(254, 210, 92, 0.3);
}

.type-icon-elegant {
    width: 70px;
    height: 70px;
    background: rgba(254, 210, 92, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.type-icon-elegant i {
    font-size: 2rem;
    color: #fed25c;
}

.type-card-elegant h3 {
    margin-bottom: 1rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.type-card-elegant p {
    color: #64748b;
    line-height: 1.6;
}

/* Service Areas Section */
.service-areas-elegant {
    padding: 5rem 0;
    background: white;
}

.areas-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-item-elegant {
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.05) 0%, rgba(230, 185, 77, 0.05) 100%);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    color: #1e293b;
    border: 1px solid rgba(254, 210, 92, 0.1);
    transition: all 0.3s ease;
}

.area-item-elegant:hover {
    background: linear-gradient(135deg, rgba(254, 210, 92, 0.1) 0%, rgba(230, 185, 77, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(254, 210, 92, 0.2);
}
