/* Tesla/Audi Style Reviews and Contact Sections */

/* Reviews Section */
.reviews {
    padding: 0;
    margin: 0;
}

.reviews-background {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reviews-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reviews-header .section-title {
    color: #00bcd4;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.reviews-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    font-weight: 300;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00bcd4;
    box-shadow: 0 35px 70px rgba(0, 188, 212, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3);
}

.customer-details h4 {
    color: #00bcd4;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.customer-details p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    font-size: 1.1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

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

/* Add Review Section */
.add-review-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.review-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.review-form-header h3 {
    color: #00bcd4;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.review-form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.review-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.review-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-form .form-group {
    margin-bottom: 2rem;
}

.review-form .form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 15px;
    color: white;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.review-form input:focus,
.review-form textarea:focus {
    outline: none;
    border-color: #00bcd4;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.review-form input::placeholder,
.review-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.rating-section {
    margin-bottom: 2rem;
}

.rating-section label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.star-rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating i {
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
}

.star-rating i:hover {
    transform: scale(1.2);
}

.rating-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.btn-review-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-review-submit:hover {
    background: linear-gradient(135deg, #0097a7 0%, #00695c 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.4);
}

/* Contact Section */
.contact {
    padding: 0;
    margin: 0;
}

.contact-background {
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e1a 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.contact-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.contact-header .section-title {
    color: #00bcd4;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-info-header h3 {
    color: #00bcd4;
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
}

.contact-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 1.5rem !important;
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(0, 188, 212, 0.1) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer !important;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(0, 188, 212, 0.3) !important;
    transform: translateY(-3px) !important;
    text-decoration: none !important;
    color: inherit !important;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #0097a7 0%, #00695c 100%);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 188, 212, 0.4);
}

.contact-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%) !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    font-size: 1.5rem !important;
    box-shadow: 0 10px 25px rgba(0, 188, 212, 0.3) !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.contact-icon i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.contact-details h4 {
    color: #00bcd4 !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin: 0 0 0.5rem 0 !important;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem !important;
    margin: 0 0 0.5rem 0 !important;
    line-height: 1.4 !important;
}

.contact-action {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.9rem !important;
    font-style: italic !important;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 188, 212, 0.2);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-header h3 {
    color: #00bcd4;
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact-form-header p {
    color: #00bcd4;
    font-size: 1.1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    color: #4a4a4a;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 188, 212, 0.4);
    border-radius: 15px;
    color: #333333;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00bcd4;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
    color: #333333;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
    font-weight: 400;
}

.btn-contact-submit {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #0097a7 0%, #00695c 100%);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .reviews-background,
    .contact-background {
        padding: 4rem 0;
    }
    
    .reviews-header .section-title,
    .contact-header .section-title {
        font-size: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .add-review-section {
        padding: 2.5rem 1.5rem;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 2.5rem 1.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .star-rating-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}