/* Professional, Rugged Design for EuroTech Services */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy-dark: #6B0F1A;
    --burgundy: #8B1538;
    --burgundy-light: #A01D3E;
    --navy: #1C3B5A;
    --navy-light: #2C4E6C;
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --charcoal: #2C2C2C;
    --gray-dark: #4A4A4A;
    --gray-med: #6B6B6B;
    --gray-light: #E8E8E8;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    font-size: 16px;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--burgundy-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 3px solid var(--gold);
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--burgundy-dark);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--charcoal);
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--burgundy);
    border-bottom-color: var(--gold);
}

.nav-cta {
    background: var(--burgundy);
    color: white !important;
    padding: 10px 25px;
    border-radius: 3px;
    font-weight: 600;
    white-space: nowrap;
    border: 2px solid var(--burgundy);
}

.nav-cta:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
}

/* Hero Section - FIXED for aspect ratio preservation */
.hero {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 50%, var(--navy) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    align-items: center;
}

.hero-text {
    padding: 60px 40px;
    z-index: 2;
}

.hero-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-light);
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons - Single Consistent Style */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 3px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 15px;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
    color: var(--charcoal);
}

/* Secondary button for hero section only */
.btn-secondary {
    background: var(--burgundy);
    color: white;
    border-color: var(--burgundy);
}

.btn-secondary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Contact Banner */
.contact-banner {
    background: var(--off-white);
    padding: 30px 20px;
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--gray-light);
}

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

.contact-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 2px;
    border-left: 3px solid var(--gold);
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-dark);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item a {
    font-size: 18px;
    font-weight: 600;
}

.contact-note {
    text-align: center;
    color: var(--burgundy);
    font-weight: 600;
    margin-top: 15px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--burgundy-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header .accent-line {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 15px auto;
}

/* Services Grid */
.services {
    padding: 70px 20px;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 35px;
    border-radius: 2px;
    border: 1px solid var(--gray-light);
    border-left: 4px solid var(--burgundy);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left-color: var(--gold);
}

.service-card h3 {
    color: var(--burgundy-dark);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    color: var(--burgundy);
    border-bottom: 2px solid transparent;
}

.card-link:hover {
    border-bottom-color: var(--gold);
}

/* Image Gallery */
.image-gallery {
    padding: 70px 20px;
    background: var(--off-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-caption {
    padding: 20px;
    background: white;
}

.gallery-caption h3 {
    color: var(--burgundy-dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.gallery-caption p {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.5;
}

/* Applications */
.applications {
    background: white;
    padding: 70px 20px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.application {
    background: var(--off-white);
    padding: 20px;
    text-align: center;
    border-radius: 2px;
    font-weight: 600;
    color: var(--charcoal);
    border-left: 3px solid var(--burgundy);
    transition: all 0.3s ease;
}

.application:hover {
    background: white;
    border-left-color: var(--gold);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Why Choose Section */
.why-choose {
    padding: 70px 20px;
    background: var(--off-white);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.benefits-list li {
    padding: 18px 0 18px 30px;
    border-bottom: 1px solid var(--gray-light);
    position: relative;
}

.benefits-list li:before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    font-size: 24px;
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--burgundy-dark) 100%);
    color: white;
    padding: 70px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 35px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--gray-light);
    padding: 50px 20px 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--gold-light);
    font-size: 16px;
    font-weight: 600;
}

.footer-section a {
    color: var(--gray-light);
}

.footer-section a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--navy) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Content Sections */
.content-section {
    padding: 70px 20px;
}

.content-section h2 {
    color: var(--burgundy-dark);
    margin: 50px 0 25px;
    font-size: 28px;
    font-weight: 700;
}

.content-section h3 {
    color: var(--navy);
    margin: 30px 0 15px;
    font-size: 20px;
    font-weight: 600;
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 25px;
}

/* Order Box */
.order-box {
    background: var(--off-white);
    padding: 45px;
    border-radius: 2px;
    margin-bottom: 50px;
    border-left: 4px solid var(--gold);
}

.order-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.order-method {
    text-align: center;
    padding: 35px;
    background: white;
    border-radius: 2px;
    border: 1px solid var(--gray-light);
}

.order-method h3 {
    margin-bottom: 20px;
    color: var(--burgundy-dark);
    font-size: 18px;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--burgundy);
    margin: 15px 0;
}

/* Info Boxes */
.info-box,
.highlight-box,
.warning-box,
.cta-box {
    padding: 35px;
    border-radius: 2px;
    margin: 35px 0;
}

.info-box {
    background: var(--off-white);
    border-left: 4px solid var(--navy);
}

.highlight-box {
    background: #F0F8F0;
    border-left: 4px solid var(--gold);
}

.warning-box {
    background: #FFF8F0;
    border-left: 4px solid var(--burgundy);
}

.cta-box {
    background: var(--off-white);
    text-align: center;
    border: 2px solid var(--gold);
}

.cta-box h2 {
    margin-top: 0;
    color: var(--burgundy-dark);
}

.cta-box .hours {
    margin-top: 15px;
    color: var(--gray-dark);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.benefit {
    padding: 30px;
    background: white;
    border-radius: 2px;
    border: 1px solid var(--gray-light);
    border-top: 3px solid var(--burgundy);
}

.benefit h3 {
    color: var(--burgundy-dark);
    margin-top: 0;
    font-size: 18px;
}

/* Parts Categories */
.parts-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin: 35px 0;
}

.parts-column {
    background: var(--off-white);
    padding: 30px;
    border-radius: 2px;
    border-left: 3px solid var(--burgundy);
}

.parts-column h3 {
    color: var(--burgundy-dark);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
}

.parts-column ul {
    list-style-position: inside;
}

.parts-column li {
    padding: 6px 0;
    color: var(--gray-dark);
}

/* Service Details */
.service-detail {
    margin: 50px 0;
    padding: 35px;
    background: white;
    border-radius: 2px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

.service-detail h2 {
    margin-top: 0;
    color: var(--burgundy-dark);
}

.service-detail ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-detail li {
    padding: 8px 0;
    color: var(--gray-dark);
}

/* Contact Method Cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.contact-method-card {
    background: white;
    padding: 40px;
    border-radius: 2px;
    border: 1px solid var(--gray-light);
    border-top: 3px solid var(--burgundy);
    text-align: center;
}

.contact-method-card h2 {
    margin: 20px 0;
    color: var(--burgundy-dark);
    font-size: 22px;
}

.contact-detail {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0;
}

/* Business Hours */
.business-hours {
    background: var(--off-white);
    padding: 40px;
    border-radius: 2px;
    margin: 50px 0;
    border-left: 4px solid var(--gold);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.hours-item {
    padding: 20px;
    background: white;
    border-radius: 2px;
    text-align: center;
    border: 1px solid var(--gray-light);
}

/* Priority List */
.priority-list {
    max-width: 600px;
    margin: 20px auto;
    counter-reset: priority;
    list-style: none;
}

.priority-list li {
    padding: 20px;
    margin: 10px 0;
    background: var(--off-white);
    border-radius: 2px;
    counter-increment: priority;
    position: relative;
    padding-left: 60px;
}

.priority-list li:before {
    content: counter(priority);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Shipping & Payment Info */
.shipping-info,
.payment-info,
.location-info,
.order-priority {
    margin: 40px 0;
}

.shipping-info ul,
.payment-info ul {
    margin: 20px 0;
    padding-left: 25px;
}

.shipping-info li,
.payment-info li {
    padding: 8px 0;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    margin: 20px 0;
    padding: 25px;
    background: var(--off-white);
    border-radius: 2px;
}

.faq-item h3 {
    color: var(--burgundy-dark);
    margin-top: 0;
    margin-bottom: 15px;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline-item {
    display: flex;
    margin: 45px 0;
    position: relative;
}

.timeline-year {
    width: 100px;
    font-size: 22px;
    font-weight: 700;
    color: var(--burgundy-dark);
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 2px;
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--burgundy);
    margin-left: 20px;
}

.timeline-content h3 {
    margin-top: 0;
    color: var(--burgundy-dark);
}

/* Expertise Grid */
.expertise-section,
.mission-section,
.values-section {
    margin: 70px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 35px;
}

.expertise-item {
    padding: 30px;
    background: white;
    border-radius: 2px;
    border: 1px solid var(--gray-light);
    border-top: 3px solid var(--burgundy);
}

.expertise-item h3 {
    color: var(--burgundy-dark);
    margin-top: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.value {
    padding: 30px;
    background: var(--off-white);
    border-radius: 2px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.value h3 {
    color: var(--burgundy);
    font-size: 36px;
    margin: 0 0 10px 0;
}

/* About Intro */
.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        min-height: 300px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .hero-text {
        padding: 40px 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .nav-links {
        display: none;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-year {
        width: 70px;
        font-size: 18px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 15px;
    }
    
    .btn {
        display: block;
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--burgundy);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
}
