/* Services Boxes Styles */
.services-section {
    margin: 40px 0;
}

.services-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.services-section .subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-box {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #FF3131;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-box:nth-child(even) {
    background: #000;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-box {
        min-width: 280px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .service-box {
        min-width: 250px;
        padding: 25px 20px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    margin: 60px 0;
    padding: 40px 0;
    background: #f8f9fa;
}

.faq-section .subtitle {
    text-align: center;
    color: #FF3131;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-divider {
    width: 50px;
    height: 3px;
    background: #FF3131;
    margin-bottom: 20px;
    border-radius: 2px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-learn-more {
    color: #FF3131;
    text-decoration: underline;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.faq-learn-more:hover {
    color: #e02a2a;
    text-decoration: none;
}

/* Responsive FAQ Design */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .faq-item {
        padding: 25px;
    }
    
    .faq-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        margin: 40px 0;
        padding: 30px 0;
    }
    
    .faq-section h2 {
        font-size: 1.8rem;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* Hero CTA Section Styles */
.hero-cta-section {
    background: #FF3131;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-cta-content {
    flex: 1;
    color: white;
}

.hero-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    color: white;
}

.hero-cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta-button {
    display: inline-block;
    background: white;
    color: #333;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.hero-cta-button:hover {
    background: transparent;
    color: white;
    text-decoration: none;
}

.hero-cta-image {
    flex: 0 0 300px;
    text-align: center;
}

.hero-cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    border: 4px solid white;
}

/* Responsive Hero CTA */
@media (max-width: 768px) {
    .hero-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-cta-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-cta-image {
        flex: none;
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-cta-section {
        padding: 40px 0;
    }
    
    .hero-cta-container {
        padding: 0 15px;
    }
    
    .hero-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-cta-content p {
        font-size: 1rem;
    }
    
    .hero-cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Location Links Section - Variation 1: Modern Cards */
.Location-section-v1 {
    background: #000;
    padding: 60px 0;
    margin: 40px 0;
}

.Location-section-v1 h3 {
    text-align: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.Location-section-v1 .red-text {
    color: #FF3131;
}

.Location-grid-v1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Location-card-v1 {
    background: white;
    padding: 0;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.Location-card-v1:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.Location-card-v1 a {
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    height: 100%;
    width: 100%;
}

.Location-card-v1 a:hover {
    color: #FF3131;
}

.Location-card-v1 .map-marker {
    color: #FF3131;
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Location Links Section - Variation 2: Clean List */
.Location-section-v2 {
    background: #2c3e50;
    padding: 50px 0;
    margin: 40px 0;
}

.Location-section-v2 h3 {
    text-align: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.Location-section-v2 .red-text {
    color: #FF3131;
}

.Location-links-v2 {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.Location-links-v2 a {
    display: inline-block;
    color: #4a90e2;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 8px 15px;
    padding: 8px 16px;
    border: 2px solid #4a90e2;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.Location-links-v2 a:hover {
    background: #4a90e2;
    color: white;
}

/* Location Links Section - Variation 3: Minimalist */
.Location-section-v3 {
    background: white;
    padding: 40px 0;
    margin: 40px 0;
    border-top: 3px solid #FF3131;
    border-bottom: 3px solid #FF3131;
}

.Location-section-v3 h3 {
    text-align: center;
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.Location-section-v3 .red-text {
    color: #FF3131;
}

.Location-links-v3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.Location-links-v3 a {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    margin: 5px 10px;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.Location-links-v3 a:hover {
    color: #FF3131;
    border-bottom-color: #FF3131;
}

/* Responsive Design for All Variations */
@media (max-width: 768px) {
    .Location-grid-v1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .Location-links-v2 a {
        margin: 5px 8px;
        font-size: 1rem;
    }
    
    .Location-links-v3 a {
        margin: 3px 8px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .Location-grid-v1 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Location Info Section */
.Location-info-section {
    margin: 60px 0;
    padding: 60px 0;
    background: #f8f9fa;
}

.Location-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.Location-info-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.Location-info-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.Location-info-image img:hover {
    transform: scale(1.02);
}

.Location-info-content {
    flex: 1;
    padding-left: 20px;
}

.Location-info-content h3 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.Location-info-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.Location-info-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.Location-info-content li {
    color: #555;
    font-size: 1rem;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.Location-info-content li:before {
    content: "✓";
    color: #FF3131;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.1rem;
}

/* Responsive Location Info */
@media (max-width: 768px) {
    .Location-info-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .Location-info-image {
        flex: none;
        max-width: 100%;
    }
    
    .Location-info-content {
        padding-left: 0;
    }
    
    .Location-info-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .Location-info-section {
        margin: 40px 0;
        padding: 40px 0;
    }
    
    .Location-info-content h3 {
        font-size: 1.6rem;
    }
    
    .Location-info-content p {
        font-size: 1rem;
    }
}
