/* Solid Rock Transport - Main Stylesheet */

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

/* Common Layout Classes */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-height: 100vh;
}

.flyer {
    max-width: 8.5in;
    width: 100%;
    margin: 20px auto;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #123e5a 0%, #1a4d6b 100%);
    color: white;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mountains" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><polygon points="0,20 10,0 20,20" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23mountains)"/></svg>');
    opacity: 0.3;
}

.logo-section,
.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.company-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
    flex-shrink: 0;
}

.company-text,
.header-text {
    text-align: left;
    flex-grow: 1;
}

.company-name,
.header-text h1 {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.tagline,
.header-text p {
    font-size: 1.2em;
    margin-bottom: 5px;
    opacity: 0.9;
}

.location {
    font-size: 1em;
    opacity: 0.8;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 50px;
}

.page-title h2 {
    color: #a57912;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.page-title p {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Proposition */
.value-prop {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #123e5a;
}

.value-prop h2 {
    color: #a57912;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.value-prop p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #123e5a;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: #a57912;
    margin-bottom: 15px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
}

.service-card h3::before {
    content: '✓';
    background: #123e5a;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 0.9em;
    font-weight: bold;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.service-card li::before {
    content: '•';
    color: #123e5a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Specifications Section */
.specs-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.specs-section h3 {
    color: #a57912;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
}

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

.spec-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.spec-item strong {
    color: #a57912;
    display: block;
    margin-bottom: 5px;
}

/* Advantages */
.advantages {
    margin-bottom: 30px;
}

.advantages h3 {
    color: #a57912;
    margin-bottom: 20px;
    font-size: 1.4em;
    text-align: center;
}

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

.advantage-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    border-radius: 8px;
    border-left: 4px solid #123e5a;
}

.advantage-item::before {
    content: '🚐';
    margin-right: 10px;
    font-size: 1.2em;
}

/* Van Showcase */
.van-photo {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin: 20px 0;
}

.van-showcase {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
}

.van-showcase h3 {
    color: #a57912;
    margin-bottom: 20px;
    font-size: 1.4em;
}

/* Partnership Section */
.partnership-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.partnership-section h3 {
    color: #a57912;
    margin-bottom: 20px;
    font-size: 1.4em;
}

.partnership-types {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.partnership-type {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    min-width: 150px;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #123e5a 0%, #1a4d6b 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.contact-section h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #a57912;
}

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

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.contact-item h4 {
    margin-bottom: 10px;
    color: #a57912;
}

.contact-item p {
    font-size: 1.1em;
    font-weight: bold;
}

/* Buttons */
.cta-button {
    background: #a57912;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #8a6310;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Contact Form Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-top: 5px solid #123e5a;
}

.contact-form h3 {
    color: #a57912;
    font-size: 1.8em;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #123e5a;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #123e5a;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.required {
    color: #e74c3c;
}

.submit-btn {
    background: #a57912;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-btn:hover {
    background: #8a6310;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Info Sidebar */
.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #a57912;
    display: flex;
    flex-direction: column;
}

.contact-info h3 {
    color: #a57912;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

.info-item {
    margin-bottom: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    width: 100%;
    display: block;
    flex-shrink: 0;
}

.info-item h4 {
    color: #123e5a;
    margin: 0 0 8px 0;
    font-size: 1em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.info-item h4::before {
    content: '📞';
    margin-right: 8px;
    font-size: 1em;
}

.info-item:nth-child(3) h4::before {
    content: '✉️';
}

.info-item:nth-child(4) h4::before {
    content: '📍';
}

.info-item:nth-child(5) h4::before {
    content: '⏰';
}

.info-item:nth-child(6) h4::before {
    content: '📅';
}

.info-item p {
    color: #666;
    font-size: 0.9em;
    line-height: 1.4;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Message Styles */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #28a745;
    text-align: center;
    font-weight: bold;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #dc3545;
    text-align: center;
    font-weight: bold;
}

/* Navigation */
.back-home {
    text-align: center;
    margin-top: 40px;
}

.back-home a {
    color: #123e5a;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #123e5a;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-home a:hover {
    background: #123e5a;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flyer {
        margin: 10px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    .company-name,
    .header-text h1 {
        font-size: 2em;
    }
    
    .page-title h2 {
        font-size: 2em;
    }
    
    .logo-section,
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-text,
    .header-text {
        text-align: center;
    }
}