/* Root Variables - ZeusTrans.com Aesthetic */
:root {
    --primary-color: #d4af37;
    --primary-hover: #b8941f;
    --secondary-color: #ffffff;
    --dark-bg: #0a0a0a;
    --darker-bg: #000000;
    --light-gray: #1a1a1a;
    --medium-gray: #333333;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-dark: #333333;
    --white: #ffffff;
    --border-color: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --gold-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    font-size: 16px;
    background: var(--dark-bg);
}

/* Section Backgrounds */
.bg-light {
    background: var(--light-gray) !important;
}

.bg-dark {
    background: var(--dark-bg) !important;
}

/* Improved spacing */
.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Contact info styling */
.contact-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-hover);
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--gold-shadow);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Form Dark Style */
.contact-form {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-control {
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.form-control:focus {
    background: var(--medium-gray);
    border-color: var(--primary-color);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.form-label {
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

/* Navigation - ZeusTrans Style */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(0, 0, 0, 1);
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 0;
    transition: var(--transition);
    text-decoration: none;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section - ZeusTrans Style */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-img {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-logo-img {
        height: 80px;
        max-width: 300px;
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-image {
    text-align: center;
    margin-top: 2rem;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--gold-shadow);
}

/* Sections - ZeusTrans Style */
.section-title {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Service Cards - ZeusTrans Style */
.service-card {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-shadow);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover)) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white) !important;
    box-shadow: var(--gold-shadow);
}

.service-icon i {
    color: var(--white) !important;
}

/* Social Links Gold Color */
.social-links a {
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-hover) !important;
    transform: translateY(-2px);
}

/* Override Bootstrap text-primary to gold */
.text-primary {
    color: var(--primary-color) !important;
}

/* Contact info icons gold */
.contact-info i.text-primary {
    color: var(--primary-color) !important;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Fleet Section - ZeusTrans Style */
.fleet-intro h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.fleet-intro h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-card {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gold-shadow);
    border-color: var(--primary-color);
}

.fleet-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fleet-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.fleet-content p strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item .feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-item .feature-icon:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2);
}

.feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--white) !important;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary) !important;
    font-size: 0.875rem;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-stars {
    font-size: 1.25rem;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--text-dark);
    display: block;
}

.testimonial-author small {
    color: var(--text-light);
}

/* Contact Form - ZeusTrans Style */
.contact-form {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: var(--medium-gray);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
    color: var(--text-primary);
}

.form-control:focus {
    background: var(--medium-gray);
    border-color: var(--primary-color);
    color: var(--text-primary);
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-control::placeholder {
    color: var(--text-secondary);
}

.contact-info {
    padding: 1.5rem;
}

.contact-info i {
    font-size: 3rem;
    display: block;
}

.contact-info h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
}

/* Success Popup Modal - ZeusTrans Style */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.success-popup.show {
    display: flex;
    opacity: 1;
}

.success-popup-content {
    background: linear-gradient(135deg, var(--darker-bg), #1a1a1a);
    color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.success-popup.show .success-popup-content {
    transform: scale(1);
}

.success-popup-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.success-popup h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.success-popup p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.success-popup .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.success-popup .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Buttons - ZeusTrans Style */
.btn {
    border-radius: 8px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--gold-shadow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* Footer - ZeusTrans Style */
footer {
    background: var(--darker-bg);
    color: var(--white) !important;
    border-top: 1px solid var(--border-color);
}

footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

footer p, footer li, footer ul li, footer .list-unstyled li {
    color: var(--white) !important;
}

footer ul, footer .list-unstyled {
    color: var(--white) !important;
}

footer a, footer ul li a, footer .list-unstyled li a {
    color: var(--white) !important;
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Ensure bottom footer text is white */
footer .row p, footer .col-md-6 p, footer .text-md-end a {
    color: var(--white) !important;
}

/* Override any Bootstrap or other styles for footer text */
.bg-dark.text-white * {
    color: #ffffff !important;
}

footer.bg-dark * {
    color: #ffffff !important;
}

footer.bg-dark a {
    color: #ffffff !important;
}

footer.bg-dark p {
    color: #ffffff !important;
}

footer.bg-dark li {
    color: #ffffff !important;
}

footer.bg-dark ul {
    color: #ffffff !important;
}

/* Keep headings gold */
footer.bg-dark h5 {
    color: var(--primary-color) !important;
}

/* Bootstrap override with higher specificity */
.bg-dark .text-white,
.bg-dark.text-white,
.bg-dark .container *,
.bg-dark .row *,
.bg-dark .col-lg-4 *:not(h5),
.bg-dark .col-lg-2 *:not(h5),
.bg-dark .col-lg-3 *:not(h5),
.bg-dark .col-md-6 * {
    color: #ffffff !important;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

/* Animations - Cleaner and more readable */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .fleet-card {
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .fleet-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation - Cleaner and more readable */
.loading {
    opacity: 0;
    animation: fadeInUp 0.4s ease forwards;
}

/* Ensure elements are visible by default */
.service-card,
.fleet-card,
.testimonial-card,
.feature-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Ensure all service cards are always fully visible and readable */
.service-card,
.fleet-card,
.testimonial-card,
.feature-item {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Clean loading animation only for new elements */
.service-card.loading,
.fleet-card.loading,
.testimonial-card.loading,
.feature-item.loading {
    animation: fadeInUp 0.3s ease forwards;
}

/* Parallax Effect */
.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Flash Messages / Notifications */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.flash-messages .alert {
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    border: none;
    border-radius: 8px;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-success {
    background-color: var(--primary-gold);
    color: #000;
    border-left: 4px solid #FFD700;
    font-weight: 600;
}

.alert-danger {
    background-color: #dc3545;
    color: #fff;
    border-left: 4px solid #bd2130;
    font-weight: 600;
}
