/* RoadLink - Industrial Modern Design */
:root {
    --primary-blue: #0A2647;
    --secondary-blue: #144272;
    --accent-orange: #FF6500;
    --light-orange: #FF8C42;
    --dark-bg: #05192D;
    --light-bg: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-light: #6C757D;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--light-bg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
}

/* Navbar */
.navbar {
    background: rgba(10, 38, 71, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.navbar-brand i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.brand-text {
    letter-spacing: 2px;
}

.brand-text .accent {
    color: var(--accent-orange);
}

.nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 101, 0, 0.4);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-blue) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(255,101,0);stop-opacity:0.1"/><stop offset="100%" style="stop-color:rgb(10,38,71);stop-opacity:0.05"/></linearGradient></defs><rect width="1000" height="1000" fill="url(%23g)"/></svg>');
    opacity: 0.3;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.road-line {
    position: absolute;
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--accent-orange), transparent);
    animation: roadMove 3s linear infinite;
}

.road-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.road-line:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.road-line:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

@keyframes roadMove {
    0% { top: -200px; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    color: var(--white);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 101, 0, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--accent-orange);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 101, 0, 0.5);
    color: var(--white);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--accent-orange);
}

/* Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 50px;
    left: 20px;
}

.floating-card:nth-child(2) {
    top: 200px;
    right: 20px;
    animation-delay: 1s;
}

.floating-card:nth-child(3) {
    bottom: 100px;
    left: 50px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.card-icon.orange {
    background: linear-gradient(135deg, #FF8C42, #FFB65E);
}

.card-icon.blue {
    background: linear-gradient(135deg, var(--secondary-blue), #2E5A88);
}

.card-content h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 10px;
    background: var(--accent-orange);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(15px); opacity: 0; }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 38, 71, 0.3);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    color: var(--accent-orange);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
}

.stat-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 101, 0, 0.1), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Sections */
.about-section,
.services-section,
.why-choose-section,
.services-detail-section,
.how-it-works-section,
.pricing-section,
.tracking-section,
.contact-section,
.dashboard-section {
    padding: 5rem 0;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 101, 0, 0.1), rgba(255, 140, 66, 0.1));
    color: var(--accent-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 900;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.service-icon-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.service-icon.orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
}

.service-icon.blue {
    background: linear-gradient(135deg, #144272, #2E5A88);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(10, 38, 71, 0.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 1rem;
}

.service-bg-icon {
    position: absolute;
    bottom: -50px;
    right: -50px;
    font-size: 15rem;
    color: rgba(10, 38, 71, 0.03);
    z-index: 0;
}

/* Feature Boxes */
.feature-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

.feature-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.feature-icon-bg.orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
}

.feature-icon-bg.blue {
    background: linear-gradient(135deg, #144272, #2E5A88);
}

.feature-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-light);
    margin: 0;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-blue));
    padding: 8rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding-top: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
}

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

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
}

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

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

.footer-contact li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-orange);
}

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

.copyright {
    opacity: 0.8;
    margin: 0;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-left: 2rem;
}

.footer-legal a:hover {
    color: var(--accent-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-visual { height: 300px; }
    .floating-card { padding: 1rem; font-size: 0.85rem; }
    .stat-number { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

/* Service Detail Cards */
.service-detail-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.service-detail-icon.orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
}

.service-detail-icon.blue {
    background: linear-gradient(135deg, #144272, #2E5A88);
}

.service-detail-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-detail-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #E9ECEF;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.service-features i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* Process Steps */
.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 101, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.process-step h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-light);
    margin: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-orange);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    opacity: 0.8;
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.period {
    font-size: 1.1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    color: var(--accent-orange);
}

.btn-pricing {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 101, 0, 0.4);
    color: var(--white);
}

/* Tracking */
.tracking-search {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.tracking-search h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tracking-search p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.tracking-input-group {
    display: flex;
    gap: 1rem;
}

.tracking-input-group .form-control {
    padding: 1rem 1.5rem;
    border: 2px solid #E9ECEF;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.tracking-input-group .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 101, 0, 0.15);
}

.btn-track {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    white-space: nowrap;
}

.shipment-card,
.delivery-status,
.live-tracking {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.shipment-card h4,
.delivery-status h4,
.live-tracking h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shipment-card h4 i {
    color: var(--accent-orange);
}

.detail-item {
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
}

.detail-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.detail-item .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Status Timeline */
.status-timeline {
    position: relative;
    padding-left: 3rem;
}

.status-item {
    position: relative;
    padding: 1.5rem 0;
}

.status-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 50px;
    width: 2px;
    height: 100%;
    background: #E9ECEF;
}

.status-item:last-child::before {
    display: none;
}

.status-icon {
    position: absolute;
    left: -50px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #E9ECEF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #6C757D;
    transition: all 0.3s;
}

.status-item.completed .status-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: var(--white);
}

.status-item.active .status-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.status-content h5 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.status-content p {
    color: var(--text-light);
    margin: 0;
}

.map-placeholder {
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    height: 400px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--accent-orange);
}

.map-info {
    background: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-info i {
    font-size: 1.2rem;
    color: var(--accent-orange);
}

/* Contact & Dashboard */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form .form-control {
    padding: 1rem;
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 101, 0, 0.15);
}

.btn-submit {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 101, 0, 0.4);
}

.contact-info-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #E9ECEF;
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.dashboard-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-orange);
}

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

.dashboard-icon.orange {
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
}

.dashboard-icon.blue {
    background: linear-gradient(135deg, #144272, #2E5A88);
}

.dashboard-card h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.dashboard-card p {
    color: var(--text-light);
    margin: 0;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.about-shape {
    position: absolute;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite reverse;
}

.about-image {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    color: var(--accent-orange);
    position: relative;
    z-index: 10;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 20;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), var(--light-orange));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    margin: 0;
}
