/* Lake Lewisville Page Specific Styles */

/* Social Proof & Trust Builders */
#social-proof .trust-elements {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

#social-proof .trust-element .stars {
    font-size: 2rem;
    color: #FFD700; /* Gold */
    margin-bottom: 0.5rem;
}

#social-proof .trust-element p {
    margin: 0;
    font-size: 1.1rem;
}

#social-proof .testimonial blockquote {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: #555;
}

#social-proof .testimonial cite {
    font-weight: bold;
    color: #333;
}

/* Experience Section */
#experience .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

#experience .package-item {
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#experience .package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

#experience .package-item .package-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

#experience .package-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Fleet Preview Section */
#fleet-preview .boat-card {
    text-align: left;
}

#fleet-preview .boat-card-content p {
    margin-bottom: 0.75rem;
}

#fleet-preview .boat-card-content .btn {
    width: 100%;
    text-align: center;
}

/* How It Works Section */
#how-it-works .booking-steps {
    display: flex;
    justify-content: space-around;
    text-align: center;
    gap: 2rem;
    flex-wrap: wrap;
}

#how-it-works .step {
    flex: 1;
    max-width: 350px;
}

#how-it-works .step .step-icon {
    font-size: 3rem;
    color: var(--cyan);
    margin-bottom: 1rem;
}

#how-it-works .step h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Location & Logistics Section */
#location .location-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

#location .location-map {
    flex: 2;
    min-width: 300px;
}

#location .location-details {
    flex: 1;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

#location .location-details h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Final CTA Banner */
.cta-banner {
    background-color: var(--primary-color);
    color: #fff;
    padding: 4rem 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
