/* About Us Page Styles */

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.hero-subheading {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Container */
.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section.alt-bg {
    background: #f9fafb;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-intro {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 40px;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Icon Wrapper */
.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.icon-wrapper i {
    font-size: 36px;
    color: white;
}

/* Typography */
.about-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
    color: #1f2937;
}

.about-section h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-icon.tours {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
}

.service-icon.car-rental {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.service-icon.wine {
    background: linear-gradient(135deg, #7c2d12 0%, #5c1e0a 100%);
}

.service-icon.local {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.service-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Vendor Benefits */
.vendor-benefits {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: #10b981;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.benefit-item h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.benefit-item p {
    margin-bottom: 0;
    color: #6b7280;
}

.cta-vendor {
    text-align: center;
    margin-top: 40px;
}

/* Technology Section */
.tech-list {
    margin: 40px 0;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.tech-item i {
    color: #2563eb;
    font-size: 24px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.tech-item strong {
    color: #1f2937;
    margin-right: 8px;
}

.tech-highlight {
    background: #f0f9ff;
    border-left: 4px solid #2563eb;
    padding: 24px;
    margin: 40px 0;
    border-radius: 8px;
}

.tech-highlight h3 {
    color: #1e40af;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-highlight h3 i {
    color: #2563eb;
}

.tech-highlight p {
    margin-bottom: 0;
    color: #1f2937;
}

.tech-highlight strong {
    color: #1e40af;
}

/* Commitment Section */
.commitment-list {
    margin: 40px 0;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

.commitment-item i {
    color: #10b981;
    font-size: 24px;
    width: 32px;
    text-align: center;
    flex-shrink: 0;
}

.commitment-item strong {
    color: #1f2937;
    margin-right: 8px;
}

.commitment-closing {
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.cta-box {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-box i {
    font-size: 48px;
    color: #2563eb;
    margin-bottom: 20px;
}

.cta-box h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

.cta-box p {
    margin-bottom: 24px;
    color: #6b7280;
}

.cta-contact {
    text-align: center;
    margin-top: 40px;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cta-contact p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #1f2937;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cta-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button.secondary {
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.cta-button.secondary:hover {
    background: #2563eb;
    color: white;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-content h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-content p {
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-content a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Fade-in Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

a:focus,
button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid,
    .features-grid,
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .hero-subheading {
        font-size: 18px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-section h2 {
        font-size: 28px;
    }
    
    .about-section h3 {
        font-size: 20px;
    }
    
    .services-grid,
    .features-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card,
    .feature-card,
    .cta-box {
        padding: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .hero-subheading {
        font-size: 16px;
    }
    
    .about-section h2 {
        font-size: 24px;
    }
    
    .about-section h3 {
        font-size: 18px;
    }
    
    .icon-wrapper {
        width: 64px;
        height: 64px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        display: block;
        text-align: center;
    }
}

