/* Homepage Redesign CSS */

/* Service Highlights Section */
.service-highlights {
    background-color: #1a1a1a;
    padding: 100px 0 60px;
    position: relative;
    z-index: 1;
}

.highlights-intro {
    text-align: center;
    margin-bottom: 60px;
}

.highlights-intro h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.highlights-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.service-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.service-feature {
    background: linear-gradient(145deg, #262626, #1c1c1c);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #3b82f6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #3b82f6;
}

.service-feature:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1e3a8a, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.feature-icon i {
    color: #ffffff;
    font-size: 1.8rem;
}

.service-feature h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-price {
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.feature-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: #3b82f6;
}

.feature-link:hover i {
    transform: translateX(3px);
}

.cta-banner {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.cta-content h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.btn-cta {
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .highlights-intro h2 {
        font-size: 2.2rem;
    }
    
    .service-carousel {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 0;
    position: relative;
}

.social-proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.proof-header {
    text-align: center;
    margin-bottom: 60px;
}

.proof-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.text-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ratings-overview {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.platform-rating {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.platform-rating:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.platform-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.platform-rating.google::before {
    background: #4285F4;
}

.platform-rating.yelp::before {
    background: #FF1A1A;
}

.platform-rating.facebook::before {
    background: #4267B2;
}

.platform-logo {
    margin-bottom: 15px;
}

.platform-logo i {
    font-size: 2.5rem;
}

.platform-rating.google .platform-logo i {
    color: #4285F4;
}

.platform-rating.yelp .platform-logo i {
    color: #FF1A1A;
}

.platform-rating.facebook .platform-logo i {
    color: #4267B2;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.stars {
    margin-bottom: 10px;
}

.stars i {
    color: #f0b429;
    font-size: 1.2rem;
    margin: 0 2px;
}

.review-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Enhanced Testimonials Section */
.luxury-testimonials {
    background: #1a1a1a;
    padding: 100px 0;
    position: relative;
}

.testimonial-tabs {
    margin-bottom: 40px;
    text-align: center;
}

.tab-buttons {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #1e3a8a;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial {
    background: linear-gradient(145deg, #262626, #1c1c1c);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.testimonial.featured {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.2), rgba(0, 0, 0, 0.4));
    border: 1px solid #1e3a8a;
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-initial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-details strong {
    color: #ffffff;
    font-size: 1rem;
}

.client-details span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 3px;
}

.review-source i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
}

.testimonial .stars {
    margin-bottom: 15px;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.before-after-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.before-after-indicator:hover {
    color: #60a5fa;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.review-cta {
    text-align: center;
    margin-top: 20px;
}

.btn-review-cta {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-review-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-review-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-review-cta:hover::after {
    opacity: 1;
    top: -100%;
    left: -100%;
}

@media (max-width: 768px) {
    .proof-header h2 {
        font-size: 2rem;
    }
    
    .platform-rating {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .tab-buttons {
        display: flex;
        overflow-x: auto;
        padding: 5px;
        width: 100%;
    }
    
    .tab-btn {
        flex: 1;
        white-space: nowrap;
    }
}

/* Hero Section Enhancements */
.luxury-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #000 0%, #0c1424 60%, #000 100%);
    overflow: hidden;
}

/* Honda Civic hero variant - full-bleed photo background */
.luxury-hero.hero-honda {
    /* Honda Civic hero background */
    background: url('../../images/hero.jpeg') center 60% / cover no-repeat fixed,
                linear-gradient(135deg, #000 0%, #0c1424 60%, #000 100%);
}

.luxury-hero.hero-honda .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.35) 35%,
        rgba(0,0,0,0.65) 100%
    );
}

.luxury-hero.hero-honda .hero-particles { display: none; }

@media (max-width: 768px) {
    .luxury-hero.hero-honda {
        background-attachment: scroll;
        /* Bias crop to highlight the fender/wheel and front end on mobile */
        background-position: center 55%;
    }
}

/* Optional: SMS button accent to improve click-through on mobile */
.btn-secondary-large.btn-sms { border-color: #10b981; }
.btn-secondary-large.btn-sms::before { background: #10b981; }

/* Minimal upscale hero variant */
.luxury-hero.minimal .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 140px 20px 80px;
}

/* Photo layout toggles */
.luxury-hero.photo-bg .hero-bg-lcp { display: block; }
.luxury-hero.photo-bg .hero-showcase { display: none !important; }

.luxury-hero.photo-aside .hero-bg-lcp { display: none; }
.luxury-hero.photo-aside .hero-showcase { display: block; }
.luxury-hero.photo-aside .hero-content {
    grid-template-columns: 1.15fr 0.85fr;
    text-align: left;
}
.luxury-hero.photo-aside .hero-text { order: 1; }
.luxury-hero.photo-aside .hero-showcase { order: 2; }
.luxury-hero.photo-aside .hero-cta-wrapper { justify-content: flex-start; }

@media (max-width: 980px) {
    .luxury-hero.photo-aside .hero-content { grid-template-columns: 1fr; text-align: center; }
    .luxury-hero.photo-aside .hero-cta-wrapper { justify-content: center; }
}

.luxury-hero.minimal .hero-text h1 {
    font-size: 3.2rem;
    letter-spacing: -0.02em;
}

.luxury-hero.minimal .hero-subtitle {
    max-width: 820px;
    margin: 0.75rem auto 1.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
}

.luxury-hero.minimal .hero-cta-wrapper {
    justify-content: center;
    gap: 16px;
}

.luxury-hero.minimal .btn-primary-large small {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
}

.luxury-hero.minimal .hero-trust-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
}

.luxury-hero.minimal .hero-trust-mini .stars i { color: #fbbf24; }
.luxury-hero.minimal .hero-trust-mini .rating,
.luxury-hero.minimal .hero-trust-mini .platform { color: rgba(255,255,255,0.9); font-weight: 500; }
.luxury-hero.minimal .hero-trust-mini .divider { color: rgba(255,255,255,0.5); }

/* Hide busy showcase/pricing in minimal mode */
.luxury-hero.minimal .hero-showcase,
.luxury-hero.minimal .price-highlights,
.luxury-hero.minimal .trust-indicators { display: none !important; }

/* Re-enable image panel in minimal layout when using side-photo mode */
.luxury-hero.minimal.photo-aside .hero-showcase { display: block !important; }

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#1e3a8a 1px, transparent 1px), radial-gradient(#1e3a8a 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
}

/* LCP hero image element layered behind overlay/content */
.hero-bg-lcp {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.15) 0%, rgba(0, 0, 0, 0.7) 70%);
}

.hero-bottom-curve {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1a1a1a;
    clip-path: ellipse(50% 60% at 50% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 150px 20px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1.8rem;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-rating-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.rating-stars {
    display: flex;
}

.rating-stars i {
    color: #f0b429;
    font-size: 1.2rem;
    margin-right: 2px;
}

.rating-count {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
}

.rating-count span {
    font-weight: 400;
    font-size: 0.9rem;
    opacity: 0.8;
}

.rating-platforms {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.rating-platforms i {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.rating-platforms i:hover {
    color: #3b82f6;
}

.hero-credentials {
    display: flex;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.badge-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.hero-cta-wrapper {
    display: flex;
    gap: 20px;
}

.btn-primary-large {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary-large small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.btn-primary-large::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.btn-primary-large:hover::after {
    opacity: 1;
    top: -100%;
    left: -100%;
}

.btn-secondary-large {
    background: transparent;
    color: #ffffff;
    padding: 15px 30px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #3b82f6;
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-secondary-large:hover {
    color: #ffffff;
}

.btn-secondary-large:hover::before {
    width: 100%;
}

/* Hero Showcase Styles */
.hero-showcase {
    position: relative;
}

.main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #ffffff;
    padding: 40px 20px 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
}

.price-highlights {
    position: relative;
    margin-top: 30px;
}

.price-tag-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.price-tag {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(30, 58, 138, 0.3);
    border-radius: 12px;
    padding: 15px;
    flex: 1;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.2);
}

.price-tag.featured {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.3), rgba(59, 130, 246, 0.2));
    border-color: #3b82f6;
    position: relative;
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.25);
}

.price-tag-header {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-tag-amount {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.price-tag.featured .price-tag-amount {
    color: #3b82f6;
}

.price-tag-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.price-tag-savings {
    background: #3b82f6;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 15px;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.trust-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-item i {
    color: #3b82f6;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Gallery Showcase */
.gallery-showcase {
    padding: 100px 0;
    background: linear-gradient(145deg, #0a0a0a, #161616);
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.gallery-card {
    background: linear-gradient(145deg, #262626, #1c1c1c);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #3b82f6;
}

.instagram-post-embed {
    width: 100%;
    display: flex;
    justify-content: center;
}

.instagram-post-embed iframe {
    border-radius: 12px;
    box-shadow: none;
    border: none;
}



.gallery-cta {
    text-align: center;
    margin-top: 20px;
}

/* Gallery Showcase */
.gallery-showcase {
    background: linear-gradient(145deg, #0a0a0a, #161616);
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.gallery-showcase .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-showcase .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.gallery-showcase .section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-card {
    background: linear-gradient(145deg, #111111, #1c1c1c);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

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

.instagram-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #e1306c, #fd1d1d, #fcb045);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(225, 48, 108, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
    }
}

.gallery-content {
    padding: 25px;
}

.gallery-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.gallery-content p {
    color: #a3a3a3;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.gallery-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.gallery-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-portfolio {
    display: inline-block;
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #fcb045);
    background-size: 300% 300%;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.3);
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.btn-portfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-portfolio:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
}

.btn-portfolio:hover::before {
    left: 100%;
}

/* Media Queries for Gallery */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .gallery-card {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-showcase .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .gallery-showcase {
        padding: 60px 0;
    }
    
    .gallery-showcase .section-header h2 {
        font-size: 1.8rem;
    }
    
    .gallery-image {
        height: 240px;
    }
    
    .gallery-content {
        padding: 20px;
    }
    
    .gallery-content h4 {
        font-size: 1.1rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
    
    .instagram-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Media Queries for Reviews */

/* Social Proof Section */
.social-proof {
    background: linear-gradient(145deg, #0d0d0d, #161616);
    padding: 80px 0;
    border-top: 1px solid rgba(30, 58, 138, 0.1);
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.proof-header {
    text-align: center;
    margin-bottom: 50px;
}

.proof-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.text-highlight {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.ratings-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.customer-review {
    background: linear-gradient(145deg, #111111, #1c1c1c);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.customer-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    opacity: 0;
    transition: all 0.3s ease;
}

.customer-review:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 130, 246, 0.3);
}

.customer-review:hover::before {
    opacity: 1;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.reviewer-initial {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #1e3a8a, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-stars i {
    margin-right: 2px;
}

.review-text {
    color: #e5e5e5;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.3);
    font-family: serif;
}

.review-text::after {
    content: '"';
    position: absolute;
    bottom: -25px;
    right: -10px;
    font-size: 3rem;
    color: rgba(59, 130, 246, 0.3);
    font-family: serif;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a3a3a3;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-platform i {
    color: #4285f4;
    font-size: 1.1rem;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-reviews {
    display: inline-block;
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.btn-reviews::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.btn-reviews:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.btn-reviews:hover::before {
    left: 100%;
}

/* Contact Section */
.luxury-contact-redesign {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    position: relative;
}

.ceramic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/ceramic-pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: #e5e5e5;
}

.contact-method a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: #60a5fa;
}

.social-media-section {
    margin-top: 30px;
}

.social-media-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #e5e5e5;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, #111111, #1c1c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #ffffff;
    background: linear-gradient(145deg, #1e3a8a, #3b82f6);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.3);
}

.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-form-wrapper p {
    color: #a3a3a3;
    margin-bottom: 30px;
}

.booking-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    font-size: 0.9rem;
    color: #cccccc;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 5px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-item input[type="checkbox"] {
    accent-color: #3b82f6;
}

.radio-group {
    display: flex;
    gap: 25px;
    margin-top: 5px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item input[type="radio"] {
    accent-color: #3b82f6;
}

.form-submit {
    margin-top: 10px;
}

.btn-submit {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
    transform: translateY(-2px);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
    margin-top: 20px;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 120px 20px 80px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
        max-width: 90%;
    }
    
    .hero-rating-box {
        justify-content: center;
    }
    
    .hero-credentials {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-cta-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.3rem;
    }
    
    .hero-credentials {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .price-tag-wrapper {
        flex-direction: column;
    }
    
    .price-tag.featured {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-rating-box {
        flex-direction: column;
        padding: 15px 10px;
    }
    
    .rating-platforms {
        margin: 0;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 10px;
    }
}

/* Contact Funnel Section */
.contact-funnel {
    padding: 100px 0;
    background: linear-gradient(145deg, #0a0a0a, #161616);
    text-align: center;
}

.contact-funnel .section-header h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-funnel .section-header p {
    font-size: 1.2rem;
    color: #a3a3a3;
    max-width: 600px;
    margin: 0 auto 50px;
}

.funnel-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.action-card {
    background: linear-gradient(145deg, #262626, #1c1c1c);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: #3b82f6;
}

.action-icon {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.action-card h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.action-card p {
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-action {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-action.primary {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.btn-action.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

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

.btn-action.secondary:hover {
    background: #3b82f6;
    color: #ffffff;
}

.contact-hours {
    margin-top: 50px;
    color: #a3a3a3;
    font-size: 0.9rem;
}

.hours-list p {
    margin: 0.5em 0;
    color: #a3a3a3;
    font-size: 1rem;
}

.hours-list p strong {
    color: #ffffff;
    font-weight: 600;
}