/* Global Styles */
:root {
    --primary-color: #18185B;
    --secondary-color: #1a1c1e;
    --text-dark: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

/* Header Top */
.header-top {
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.header-top a {
    color: #fff;
    margin-left: 15px;
    transition: opacity 0.3s;
}

.header-top a:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 0;
}

.navbar-brand img {
    height: 60px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    padding: 20px 18px !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: var(--secondary-color);
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    margin-top: 0;
}

.dropdown-item {
    color: #fff;
    padding: 12px 20px;
    transition: all 0.3s;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
    padding-left: 25px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.massivetractors.com/wp-content/uploads/2019/12/pic1.jpg') center/cover;
    opacity: 0.1;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header .subtitle {
    font-size: 18px;
    color: #ffd700;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.breadcrumb-item {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #ffd700;
}

.breadcrumb-item.active {
    color: #ffd700;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* Content Section */
.content-section {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 25px;
}

.content-wrapper p:first-of-type {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}

.content-wrapper strong {
    color: var(--text-dark);
}

/* Feature Highlights */
.feature-highlights {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.feature-highlight-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.feature-highlight-box:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-highlight-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-highlight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-highlight-box p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background-color: #ffd700;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #ffd700;
}

.btn-cta:hover {
    background-color: transparent;
    color: #ffd700;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #1a1c1e;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #ffd700;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 30px;
    text-align: center;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .page-header .subtitle {
        font-size: 16px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .content-wrapper p {
        font-size: 15px;
    }

    .cta-section h2 {
        font-size: 28px;
    }
}
