/* ================================================
   MINING SOLUTIONS - Professional Mining Industry Website
   ================================================ */

/* ========================================
   GLOBAL STYLES
   ======================================== */
:root {
    --primary-color: #5C3E9E;
    --secondary-color: #1a1a1a;
    --accent-color: #6d4ab6;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #2c2c2c;
    --white: #ffffff;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ========================================
   HEADER STYLES
   ======================================== */
.mining-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: #5C3E9E;
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.contact-info span {
    margin-right: 25px;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

.header-main {
    padding: 15px 0;
}

.navbar-brand .brand-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 0;
    letter-spacing: 2px;
}

.navbar-brand .brand-text span {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--secondary-color);
    font-weight: 600;
    padding: 10px 20px !important;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
    background-image: url('../images/background/mining-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.feature-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-box p {
    color: #666;
    font-size: 14px;
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */
.categories-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.category-card {
    background: var(--white);
    padding: 40px 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(92, 62, 158, 0.2);
}

.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge i {
    margin-right: 5px;
}

.category-stats {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 13px;
    color: #666;
}

.category-stats i {
    color: var(--primary-color);
    margin-right: 5px;
}

.category-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    min-height: 48px;
}

.category-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    min-height: 84px;
}

.btn-category {
    background: var(--secondary-color);
    color: var(--white);
    padding: 12px 30px;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-category:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-image {
    position: relative;
}

.about-image-placeholder {
    position: relative;
    background: linear-gradient(135deg, #5C3E9E 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 60px 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(92, 62, 158, 0.3);
    overflow: hidden;
}

.about-image-placeholder::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"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.mining-icons-grid {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    z-index: 1;
}

.mining-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mining-icon:hover {
    background: rgba(200, 152, 30, 0.2);
    border-color: #c8981e;
    color: #c8981e;
    transform: scale(1.1);
}

.about-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    text-align: center;
    z-index: 2;
    color: white;
}

.about-overlay-text h3 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-overlay-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 10px 0;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ========================================
   PAGE HEADER
   ======================================== */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2d1b4e 0%, #5C3E9E 50%, #6d4ab6 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(109, 74, 182, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 62, 158, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.8);
}

.page-header h1 {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.breadcrumb {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 14px;
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white);
}

/* ========================================
   CATEGORY PAGES
   ======================================== */
.category-description {
    padding: 80px 0;
    background: var(--white);
}

.category-description h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.category-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Documents Download Section */
.documents-download {
    padding: 40px 0;
    border-top: 2px solid #f8f9fa;
}

.documents-download h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.documents-download h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.document-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    border: 2px solid transparent;
    margin-bottom: 20px;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(92, 62, 158, 0.15);
    border-color: var(--primary-color);
    text-decoration: none;
}

.document-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(92, 62, 158, 0.3);
}

.document-info {
    flex: 1;
    text-align: left;
}

.document-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.document-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.download-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.document-card:hover .download-btn {
    background: var(--accent-color);
    transform: translateX(5px);
}

.download-btn i {
    margin-right: 5px;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.product-card {
    background: var(--white);
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    min-height: 44px;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.product-price {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ========================================
   CATEGORY FEATURES
   ======================================== */
.category-features {
    padding: 80px 0;
    background: var(--white);
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

/* ========================================
   CATEGORY CTA
   ======================================== */
.category-cta {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.category-cta h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.category-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.contact-info-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-info-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.contact-info-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.contact-info-box i.fa-globe,
.contact-info-box i.fa-envelope,
.contact-info-box i.fa-map-marker,
.contact-info-box i.fa-phone {
    color: var(--primary-color);
    margin-right: 8px;
    width: 16px;
}

.contact-info-box strong {
    color: var(--secondary-color);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-form-wrapper {
    background: var(--light-bg);
    padding: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--secondary-color);
}

.form-control {
    border: 2px solid #ddd;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

select.form-control {
    appearance: menulist;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
    background-color: white;
    cursor: pointer;
    height: auto;
    min-height: 48px;
    padding: 12px 35px 12px 20px;
    font-size: 14px;
    line-height: 1.5;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%235C3E9E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
}

select.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(92, 62, 158, 0.25);
    outline: none;
}

select.form-control option {
    padding: 12px;
    background-color: white;
    color: #333;
    font-size: 14px;
}

select.form-control option:checked {
    background-color: var(--primary-color);
    color: white;
}

.select-subject {
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    padding: 0;
}

.map-info {
    background: var(--light-bg);
    padding: 30px;
    border-bottom: 3px solid var(--primary-color);
}

.map-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.map-info .coordinates {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.map-info .coordinates strong {
    color: var(--primary-color);
    font-weight: 600;
}

.map-info .coordinates i {
    color: var(--primary-color);
    margin-right: 8px;
}

.map-placeholder {
    width: 100%;
    height: 450px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-content-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content-section h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.mission-vision-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.mission-box {
    background: var(--white);
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.mission-box h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.mission-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.values-section {
    padding: 80px 0;
    background: var(--white);
}

.value-box {
    text-align: center;
    padding: 40px 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.value-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-box p {
    font-size: 14px;
    color: #666;
}

.team-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-image {
    margin-bottom: 20px;
}

.team-image-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.team-member h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-position {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.about-cta {
    padding: 80px 0;
    background: var(--secondary-color);
    color: var(--white);
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* ========================================
   FOOTER
   ======================================== */
.mining-footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-widget h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-transform: uppercase;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    margin-right: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a i {
    margin-right: 8px;
    color: var(--primary-color);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
}

.contact-list i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-list a {
    color: #aaa;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 9999;
    display: none;
    box-shadow: 0 5px 20px rgba(92, 62, 158, 0.3);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(92, 62, 158, 0.5);
}

/* ========================================
   DROPDOWN MENU ENHANCEMENT
   ======================================== */
.dropdown-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color);
}

/* ========================================
   NAVBAR ACTIVE STATE
   ======================================== */
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link .badge {
    position: relative;
    top: -2px;
    margin-left: 5px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    padding: 3px 7px;
    border-radius: 10px;
}

.btn-register {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px !important;
    border-radius: 5px;
    margin-left: 10px;
}

.btn-register:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons .btn {
        margin: 10px 5px;
        padding: 12px 25px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

