/* 
* Alpha Prime Garage - Main Stylesheet
* Colors: Black (#0F0F0F, #1E1E1E) and Red (#D10000, #FF0000)
*/

:root {
    --primary-black: #000000;
    --secondary-black: #000000;
    --primary-red: #D10000;
    --secondary-red: #FF0000;
    --light-gray: #F5F5F5;
    --medium-gray: #BBBBBB;
    --dark-gray: #777777;
    --white: #FFFFFF;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-black);
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-red);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--primary-black);
}

.btn-secondary:hover {
    background-color: var(--secondary-black);
    border-color: var(--secondary-black);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-red);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: var(--white);
}

/* Section Titles */
.section-title {
    position: relative;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: var(--primary-black);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-red);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-black);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

header h1 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0;
}

header h1 span {
    color: var(--primary-red);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

#main-nav .nav-links {
    display: flex;
    align-items: center;
}

#main-nav .nav-links li {
    margin-left: 25px;
}

#main-nav .nav-links a {
    color: var(--white);
    font-weight: 500;
    position: relative;
}

#main-nav .nav-links a:hover,
#main-nav .nav-links a.active {
    color: var(--primary-red);
}

#main-nav .nav-links a.active:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-red);
}

.whatsapp-btn i {
    margin-right: 5px;
}

#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

#mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    margin: 6px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('../images/shop.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    margin-top: 80px;
}

.hero-content {
    max-width: 700px;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    display: inline-block;
    border-left: 5px solid var(--primary-red);
    position: relative;
}

.hero-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    border-radius: 5px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Services Preview Section */
#services-preview {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 2rem;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.read-more:after {
    content: ' →';
    transition: margin-left 0.3s ease;
}

.read-more:hover:after {
    margin-left: 5px;
}

.view-all-services {
    text-align: center;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 100px 0;
    background-color: var(--primary-black);
    color: var(--white);
}

#why-choose-us .section-title {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 0 15px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-red);
    color: var(--white);
    font-size: 1.8rem;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.feature h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
}

/* Testimonials Section */
#testimonials {
    padding: 100px 0;
    background-color: var(--light-gray);
}

/* Google Reviews Header */
.google-reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 40px;
    background-color: var(--white);
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.google-logo {
    height: 30px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rating-info .stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Testimonial Slider */
.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.google-review {
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-black);
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-meta .stars {
    color: #FFC107;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.review-source {
    height: 16px;
}

.review-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary-black);
}

/* Navigation */
.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.prev-testimonial,
.next-testimonial {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

/* View All Reviews */
.view-all-reviews {
    text-align: center;
    margin-top: 40px;
}

.view-all-reviews .btn-outline {
    background-color: var(--white);
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.view-all-reviews .btn-outline:hover {
    background-color: var(--primary-black);
    color: var(--white);
}

.view-all-reviews i {
    margin-left: 8px;
    font-size: 0.85rem;
}

/* CTA Section */
#cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    margin: 0 10px;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-black);
    color: var(--white);
    padding: 70px 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-black);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-red);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--medium-gray);
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-column p {
    margin-bottom: 15px;
    color: var(--medium-gray);
}

.footer-column p i {
    color: var(--primary-red);
    width: 20px;
    margin-right: 10px;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    background-color: var(--primary-black);
    margin-top: 20px;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Scroll to Top */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

#scroll-to-top:hover {
    background-color: var(--secondary-red);
}

/* Booking Form Styles */
.booking-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 40px 0;
}

.booking-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Select2 Custom Styles */
.select2-container--classic .select2-selection--single {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
    line-height: 45px;
    padding-left: 15px;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
    height: 43px;
}

/* Booking Summary Styles */
.booking-sidebar {
    position: sticky;
    top: 100px;
}

.booking-summary {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.booking-summary h3 {
    margin-bottom: 20px;
    color: #333;
}

.summary-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.summary-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-section h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.summary-details p {
    margin-bottom: 8px;
    font-size: 15px;
}

.need-help {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.need-help h3 {
    margin-bottom: 15px;
    color: #333;
}

.need-help p {
    margin-bottom: 20px;
    color: #666;
}

.need-help .btn {
    width: 100%;
    margin-bottom: 10px;
}

.need-help .btn:last-child {
    margin-bottom: 0;
}

/* Alert Styles */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }

    .booking-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .booking-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
    }

    .btn {
        padding: 10px 20px;
    }
} 