/* style.css - Complete Stylesheet for Al Burq Logistics */
:root {
    /* Primary Colors */
    --primary-color: #1a2980;
    --primary-light: #26d0ce;
    --primary-dark: #0d1b5e;
    --secondary-color: #FFD700;
    --accent-color: #4CAF50;
    --accent-light: #81C784;
    
    /* Neutral Colors */
    --dark-color: #333333;
    --gray-dark: #666666;
    --gray: #999999;
    --gray-light: #e0e0e0;
    --light-color: #f5f7fb;
    --white: #ffffff;
    
    /* Status Colors */
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Spacing & Layout */
    --radius: 8px;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

/* Buttons - Enhanced with Amazing Effects */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
    z-index: 0;
}

.btn:hover::before {
    width: 350px;
    height: 350px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #1e88e5 0%, #0d47a1 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.35);
}

.btn-primary:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.6);
    background: linear-gradient(135deg, #0d47a1 0%, #1e88e5 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.96);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.35);
    font-weight: 700;
}

.btn-secondary:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.6);
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(0.96);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 2.5px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: inset 0 0 15px rgba(30, 136, 229, 0.15);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(30, 136, 229, 0.6);
    border-color: var(--primary-color);
}

.btn-success {
    background: linear-gradient(135deg, #26a69a 0%, #1b5e20 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(38, 166, 154, 0.35);
}

.btn-success:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(38, 166, 154, 0.6);
}

.btn-success:active {
    transform: translateY(-2px) scale(0.96);
}

.btn-danger {
    background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.35);
}

.btn-danger:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(244, 67, 54, 0.6);
}

.btn-danger:active {
    transform: translateY(-2px) scale(0.96);
}

.btn-info {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.35);
}

.btn-info:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.6);
}

.btn-info:active {
    transform: translateY(-2px) scale(0.96);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--gray-dark);
    letter-spacing: 2px;
}

.logo-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 2px;
}

.header-contact {
    display: flex;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
}

/* Navigation */
.main-nav {
    background: var(--primary-color);
    padding: 0;
}

/* Align nav contents with header */
.main-nav .container {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu {
    flex: 1;
    gap: 6px;
    white-space: nowrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.nav-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    padding-left: 20px;
}

.nav-menu li {
    margin: 0 4px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(26, 41, 128, 0.8));
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 200px 20px 0;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.quick-tracking {
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.tracking-box {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.tracking-input-group {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.tracking-input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
}

.tracking-note {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 10px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
}

.stat-label {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-description {
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-color);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-dark);
}

.service-features i {
    color: var(--accent-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

/* Live Tracking Preview */
.live-tracking-preview {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-color), white);
}

.tracking-widget {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tracking-map-placeholder {
    padding: 40px;
    text-align: center;
    background: var(--light-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tracking-map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Map placeholder and markers used by live tracking */
.map-placeholder {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(180deg, #e8f4f8 0%, #f5f7fb 100%);
    overflow: hidden;
}

.map-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-placeholder .vehicle-marker {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: left 1s linear, top 1s linear, transform 0.25s ease;
    z-index: 10;
    font-size: 1rem;
    color: var(--primary-color);
}

.map-placeholder .vehicle-marker.moving { color: var(--primary-color); }
.map-placeholder .vehicle-marker.idle { color: var(--warning-color); }
.map-placeholder .vehicle-marker.maintenance { color: var(--danger-color); }

.vehicle-tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    white-space: nowrap;
    display: none;
    z-index: 20;
}

.map-placeholder .vehicle-marker:hover .vehicle-tooltip { display: block; }

.map-legend {
    position: absolute;
    right: 12px;
    top: 12px;
    background: rgba(255,255,255,0.95);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    z-index: 30;
}

.tracking-stats-widget {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tracking-stat {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius);
}

.tracking-stat i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Quick Quote Section */
.quick-quote-section {
    padding: 80px 0;
    background: white;
}

.quote-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: var(--light-color);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.quote-content {
    padding: 40px;
}

.quote-result {
    padding: 40px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-placeholder {
    text-align: center;
}

.result-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.7;
}

.quote-success {
    text-align: center;
}

.quote-amount {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
    color: var(--secondary-color);
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label .required {
    color: var(--danger-color);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 41, 128, 0.1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.contact-item div {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-extra {
    display: flex;
    gap: 20px;
}

.footer-extra a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-extra a:hover {
    color: var(--secondary-color);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Page Hero (for other pages) */
.page-hero {
    padding: 150px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    text-align: center;
    margin-top: 80px;
}

.breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 30px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.data-table tr:hover {
    background: var(--light-color);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-completed {
    background: #cce5ff;
    color: #004085;
}

/* Cards */
.card {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Admin Dashboard Styles */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    margin-top: 80px;
}

.sidebar {
    width: 250px;
    background: var(--primary-dark);
    color: white;
    position: fixed;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.sidebar-nav {
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.nav-item:hover,
.nav-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left: 4px solid var(--secondary-color);
}

.main-content {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
    background: var(--light-color);
    min-height: calc(100vh - 80px);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.stat-label {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Form Modal */
.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.form-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px;
    background: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--radius) var(--radius) 0 0;
}

.modal-body {
    padding: 30px;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-action {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit {
    background: var(--primary-color);
    color: white;
}

.btn-delete {
    background: var(--danger-color);
    color: white;
}

.btn-view {
    background: var(--info-color);
    color: white;
}

/* Search and Filter */
.search-filter {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Invoice Styles */
.invoice-preview {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin: 30px 0;
}

.invoice-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--gray-light);
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.invoice-table th,
.invoice-table td {
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
}

.invoice-table th {
    background: var(--light-color);
    font-weight: 600;
}

.invoice-table .total-row {
    background: var(--light-color);
    font-weight: 600;
}

.invoice-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--gray-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .quote-container,
    .tracking-widget {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .sidebar {
        width: 70px;
    }
    
    .sidebar-header span,
    .nav-item span {
        display: none;
    }
    
    .main-content {
        margin-left: 70px;
    }
    
    .nav-item {
        justify-content: center;
        padding: 15px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content {
        padding: 150px 20px 0;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .invoice-footer {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tracking-input-group {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
}