/* ============================================
   SwiftCourier - Main Stylesheet
   Brand Colors:
   - Primary (Deep Blue): #0B3C5D
   - Secondary (Red): #E63946
   - Accent: #FFFFFF
   - Background: #F4F6F8
   - Text: #2B2D42
   ============================================ */

:root {
    --primary: #0B3C5D;
    --primary-dark: #082a42;
    --primary-light: #0d4a73;
    --secondary: #E63946;
    --secondary-dark: #c62d39;
    --secondary-light: #ff4d5a;
    --accent: #FFFFFF;
    --background: #F4F6F8;
    --background-alt: #e8ecf0;
    --text: #2B2D42;
    --text-light: #6c757d;
    --text-muted: #8d99ae;
    --border: #dee2e6;
    --shadow: rgba(11, 60, 93, 0.1);
    --shadow-lg: rgba(11, 60, 93, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.main-header .navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent) !important;
    font-weight: 800;
    font-size: 1.5rem;
}

.brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 8px;
    color: var(--accent);
}

.brand-icon i {
    font-size: 1.25rem;
}

.brand-text {
    color: var(--accent);
}

.brand-accent {
    color: var(--secondary);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--background);
    color: var(--primary);
}

.header-actions .btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.header-actions .btn i {
    font-size: 1rem;
}

.btn-cta {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--accent) !important;
}

.btn-cta:hover {
    background: var(--secondary-dark) !important;
    border-color: var(--secondary-dark) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--accent);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.hero-title span {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
}

.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ============================================
   PAGE HEADERS
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--accent);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    justify-content: center;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 5rem 0;
}

.section-light {
    background: var(--accent);
}

.section-gray {
    background: var(--background);
}

.section-dark {
    background: var(--primary);
    color: var(--accent);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header h2 {
    color: var(--accent);
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   CARDS
   ============================================ */

.service-card {
    background: var(--accent);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--shadow-lg);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.service-card-icon i {
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-card .btn-link {
    color: var(--secondary);
    font-weight: 600;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.service-card .btn-link:hover {
    color: var(--secondary-dark);
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 1.5rem;
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    background: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--secondary);
}

.feature-card-icon i {
    font-size: 1.75rem;
}

.feature-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Solution Cards */
.solution-card {
    background: var(--accent);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.solution-card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-card ul li {
    padding: 0.375rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card {
    text-align: center;
    max-width: 300px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-light);
}

/* ============================================
   COVERAGE MAP
   ============================================ */

.coverage-section {
    background: var(--accent);
}

.coverage-map {
    background: var(--background);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
}

.coverage-map svg {
    max-width: 100%;
    height: auto;
}

.coverage-countries {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.coverage-country h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coverage-country ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.coverage-country ul li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--accent);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
}

.cta-section .btn-light {
    color: var(--secondary);
}

/* ============================================
   FORMS
   ============================================ */

.form-section {
    background: var(--accent);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(11, 60, 93, 0.1);
}

.input-group-text {
    background: var(--background);
    border: 2px solid var(--border);
    border-right: none;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Coming Soon Alert */
.coming-soon-alert {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    border: none;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.coming-soon-alert h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.coming-soon-alert i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ============================================
   FAQ
   ============================================ */

.faq-category {
    margin-bottom: 2rem;
}

.faq-category h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.accordion-item {
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--text);
    background: var(--accent);
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background: var(--background);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border);
}

.accordion-body {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */

.office-card {
    background: var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
}

.office-card.headquarters {
    border-color: var(--secondary);
    border-width: 2px;
}

.office-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.office-card .badge {
    background: var(--secondary);
    font-size: 0.7rem;
    font-weight: 600;
}

.office-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-info li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
}

.office-info li i {
    color: var(--secondary);
    margin-top: 0.25rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--accent);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--accent);
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 4px 20px var(--shadow);
}

.value-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--accent);
}

.value-card h4 {
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--text-light);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-content {
    background: var(--accent);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.legal-content h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--text);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content .last-updated {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

/* Prohibited Items */
.prohibited-category {
    margin-bottom: 2rem;
}

.prohibited-category h3 {
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.prohibited-category ul {
    list-style: none;
    padding: 0;
}

.prohibited-category ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.prohibited-category ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* ============================================
   404 PAGE
   ============================================ */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: var(--primary);
    color: var(--accent);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent) !important;
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social 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(--accent);
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--secondary);
}

.footer-heading {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    background: var(--primary-dark);
    padding: 1.25rem 0;
}

.copyright {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-regions {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-regions span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .navbar-collapse {
        background: var(--primary);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }
    
    .header-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .page-header h1 {
        font-size: 1.875rem;
    }
    
    .coverage-countries {
        gap: 2rem;
    }
    
    .footer-regions {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .error-code {
        font-size: 5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--accent);
}

.btn-outline-secondary {
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--accent);
}

/* ============================================
   PROFESSIONAL HERO SLIDER
   ============================================ */

.hero-slider-pro {
    position: relative;
    overflow: hidden;
}

.hero-slide-pro {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.min-vh-85 {
    min-height: 85vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.92) 0%, rgba(11, 60, 93, 0.85) 50%, rgba(11, 60, 93, 0.75) 100%);
}

.hero-overlay.overlay-red {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.88) 0%, rgba(11, 60, 93, 0.92) 60%, rgba(11, 60, 93, 0.85) 100%);
}

.hero-overlay.overlay-dark {
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.92) 0%, rgba(11, 60, 93, 0.9) 50%, rgba(11, 60, 93, 0.85) 100%);
}

/* Hero Content */
.hero-content-pro {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-badge.badge-urgent {
    background: rgba(230, 57, 70, 0.3);
    border-color: rgba(230, 57, 70, 0.5);
}

.hero-badge.badge-business {
    background: rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title-pro {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #E63946 0%, #ff6b6b 50%, #E63946 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc-pro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #E63946 0%, #d62839 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #d62839 0%, #c41e2a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
    color: #fff;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.trust-item i {
    color: #E63946;
    font-size: 1.1rem;
}

/* Feature Pills */
.hero-features-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    color: #fff;
}

.feature-pill i {
    color: #E63946;
}

/* Logo Pills */
.hero-logos {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logos-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.logo-items {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.logo-pill {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.375rem 0.875rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #fff;
    font-weight: 500;
}

/* Hero Visual Elements */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.floating-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.floating-card.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    left: 5%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Delivery Timer */
.delivery-timer {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border-top-color: var(--secondary);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.timer-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin: 0.5rem 0;
}

.timer-sub {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* Stats Dashboard */
.stats-dashboard {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 320px;
}

.dash-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1rem;
}

.dash-header i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.dash-header span {
    font-weight: 600;
    color: var(--text);
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dash-stat {
    text-align: center;
}

.dash-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.dash-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Carousel Navigation */
.carousel-nav-pro {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.carousel-nav-pro .carousel-control-prev,
.carousel-nav-pro .carousel-control-next {
    position: static;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-nav-pro .carousel-control-prev:hover,
.carousel-nav-pro .carousel-control-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
}

.carousel-nav-pro .carousel-control-prev i,
.carousel-nav-pro .carousel-control-next i {
    font-size: 1.25rem;
    color: #fff;
}

.carousel-nav-pro .carousel-indicators {
    position: static;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.carousel-nav-pro .carousel-indicators button {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.carousel-nav-pro .carousel-indicators button.active {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-nav-pro .carousel-indicators button.active .indicator-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--secondary);
    animation: progress 6s linear forwards;
}

@keyframes progress {
    from { width: 0; }
    to { width: 100%; }
}

/* Stats Section */
.stats-section-pro {
    background: var(--primary);
    padding: 3rem 0;
    position: relative;
}

.stats-section-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary-light) 50%, var(--secondary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card-pro {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
}

.stat-card-pro .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card-pro .stat-icon i {
    font-size: 1.75rem;
    color: var(--secondary);
}

.stat-card-pro .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-card-pro .stat-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PAGE HEADER WITH BACKGROUND IMAGE
   ============================================ */

/* Responsive Hero Slider */
@media (max-width: 1199.98px) {
    .hero-title-pro {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .hero-slide-pro {
        min-height: 70vh;
    }
    
    .min-vh-85 {
        min-height: 70vh;
    }
    
    .hero-title-pro {
        font-size: 2.5rem;
    }
    
    .hero-desc-pro {
        font-size: 1.1rem;
    }
    
    .carousel-nav-pro {
        bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slide-pro {
        min-height: auto;
    }
    
    .min-vh-85 {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-title-pro {
        font-size: 2rem;
    }
    
    .hero-desc-pro {
        font-size: 1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-badges {
        gap: 1rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
    
    .hero-features-row {
        gap: 0.5rem;
    }
    
    .feature-pill {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .carousel-nav-pro {
        bottom: 1rem;
        gap: 0.5rem;
    }
    
    .carousel-nav-pro .carousel-control-prev,
    .carousel-nav-pro .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav-pro .carousel-indicators button {
        width: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card-pro {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .stat-card-pro .stat-icon {
        width: 50px;
        height: 50px;
    }
    
    .stat-card-pro .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-card-pro .stat-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title-pro {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================
   COVERAGE SECTION PRO
   ============================================ */

.coverage-section-pro {
    background: var(--background);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.coverage-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.coverage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.coverage-card-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.coverage-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.coverage-card-highlight .coverage-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.country-flag img,
.route-icon {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.route-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.country-info h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.coverage-card-highlight .country-info h3 {
    color: #fff;
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: #28a745;
    font-weight: 500;
}

.coverage-badge i {
    font-size: 0.875rem;
}

.coverage-badge.badge-premium {
    color: #ffc107;
}

.coverage-card-body {
    padding: 1.5rem;
}

.coverage-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.coverage-stat {
    text-align: center;
}

.coverage-stat .stat-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.coverage-card-highlight .coverage-stat .stat-num {
    color: var(--secondary);
}

.coverage-stat .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coverage-card-highlight .coverage-stat .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.major-cities {
    margin-bottom: 1.5rem;
}

.major-cities h5 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--background);
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text);
}

.city-tag i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.delivery-times {
    display: flex;
    gap: 1rem;
}

.delivery-time {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--background);
    padding: 0.75rem;
    border-radius: 8px;
}

.delivery-time i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.delivery-time strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text);
}

.delivery-time span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Route Visual */
.route-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.route-point {
    text-align: center;
}

.route-point img {
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.route-point span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
}

.route-line {
    font-size: 1.5rem;
    color: var(--secondary);
}

.route-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.route-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.route-feature i {
    color: var(--secondary);
}

/* Responsive Coverage */
@media (max-width: 991.98px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-card-highlight {
        order: -1;
    }
}

@media (max-width: 575.98px) {
    .coverage-stats {
        gap: 1rem;
    }
    
    .delivery-times {
        flex-direction: column;
    }
}

/* ============================================
   SERVICE HERO IMAGES
   ============================================ */

.service-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-hero-image:hover img {
    transform: scale(1.05);
}

.service-image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-image-badge i {
    font-size: 1.1rem;
}

.service-image-badge.badge-urgent {
    background: linear-gradient(135deg, #E63946 0%, #c62828 100%);
    animation: pulse-badge 2s infinite;
}

.service-image-badge.badge-global {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
}

.service-image-badge.badge-ecommerce {
    background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%);
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(230, 57, 70, 0.7);
    }
}

@media (max-width: 991.98px) {
    .service-hero-image img {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .service-hero-image img {
        height: 250px;
    }
    
    .service-image-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        bottom: 1rem;
        left: 1rem;
    }
}

/* ============================================
   PROFESSIONAL CONTACT PAGE
   ============================================ */

.contact-hero-pro {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.92) 0%, rgba(11, 60, 93, 0.85) 100%);
    z-index: 2;
}

.contact-hero-pro .container {
    z-index: 3;
    padding: 4rem 0;
}

.breadcrumb-light .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb-light .breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-light .breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.contact-hero-title-pro {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.contact-hero-subtitle-pro {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature .feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.hero-feature .feature-text {
    text-align: left;
}

.hero-feature .feature-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
}

.hero-feature .feature-text span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.min-vh-50 {
    min-height: 50vh;
}

/* Quick Contact Cards */
.contact-quick-section {
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    padding-bottom: 3rem;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.contact-quick-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.quick-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.quick-card-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.contact-quick-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-quick-card > p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.quick-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.quick-link:hover {
    background: var(--background);
    color: var(--primary-dark);
}

/* Contact Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-card-header {
    margin-bottom: 2rem;
}

.form-card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-card-header h3 i {
    color: var(--secondary);
}

.form-card-header p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-form-pro .form-control,
.contact-form-pro .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1rem 1rem 1rem;
    transition: all 0.3s ease;
}

.contact-form-pro .form-control:focus,
.contact-form-pro .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 60, 93, 0.1);
}

.contact-form-pro .form-floating label {
    color: var(--text-light);
}

.contact-form-pro .btn-cta {
    position: relative;
    overflow: hidden;
}

.contact-form-pro .btn-arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.contact-form-pro .btn-cta:hover .btn-arrow {
    transform: translateX(5px);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, #c62828 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.info-card-content h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.875rem;
    border-bottom: 1px dashed var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    color: var(--text-light);
}

.hours-list li strong {
    color: var(--text);
}

.support-badge {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card-content address {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.info-card-content address strong {
    color: var(--text);
}

.social-links-pro {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #000; }
.social-link.linkedin { background: #0a66c2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Offices Grid */
.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.office-card-pro {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.office-card-pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.office-card-pro.headquarters {
    border: 2px solid var(--secondary);
}

.hq-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.office-flag img {
    border-radius: 4px;
}

.office-card-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.office-country {
    font-size: 0.875rem;
    color: var(--text-light);
}

.office-card-body {
    padding: 1.5rem;
}

.office-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.office-details li i {
    color: var(--secondary);
    margin-top: 0.2rem;
}

.office-details li a {
    color: var(--text);
    text-decoration: none;
}

.office-details li a:hover {
    color: var(--primary);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-wrapper {
    position: relative;
    height: 450px;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.map-info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 280px;
}

.map-info-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.map-info-card h4 i {
    color: var(--secondary);
}

.map-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Contact Page */
@media (max-width: 1199.98px) {
    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .contact-hero-title-pro {
        font-size: 2.5rem;
    }
    
    .contact-hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-hero-pro {
        min-height: 400px;
    }
    
    .contact-hero-title-pro {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle-pro {
        font-size: 1rem;
    }
    
    .contact-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
    }
    
    .hero-stat {
        justify-content: center;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        padding: 1rem;
    }
    
    .map-info-card {
        max-width: 100%;
    }
    
    .map-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .contact-map {
        height: 300px;
    }
}

/* ============================================
   PROFESSIONAL FAQ PAGE
   ============================================ */

.faq-search-section {
    margin-top: -2rem;
    position: relative;
    z-index: 10;
    padding-bottom: 2rem;
}

.faq-search-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-search-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.faq-search-card h3 i {
    color: var(--secondary);
}

.faq-search-card > .row > .col-lg-6:first-child p {
    color: var(--text-light);
    margin: 0;
}

.faq-search-box {
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.1rem;
}

.faq-search-box .form-control {
    padding: 1rem 1rem 1rem 3.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-search-box .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(11, 60, 93, 0.1);
}

.faq-content-section {
    background: var(--background);
}

.faq-category-pro {
    margin-bottom: 2.5rem;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.faq-category-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.question-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.accordion-pro {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion-item-pro {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.accordion-item-pro:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.accordion-button-pro {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button-pro:hover {
    background: var(--background);
}

.accordion-button-pro .question-icon {
    color: var(--secondary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.accordion-button-pro .question-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.accordion-button-pro .accordion-arrow {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.accordion-button-pro:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-button-pro:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.accordion-button-pro:not(.collapsed) .question-icon,
.accordion-button-pro:not(.collapsed) .question-text,
.accordion-button-pro:not(.collapsed) .accordion-arrow {
    color: #fff;
}

.accordion-body-pro {
    padding: 1.5rem;
    background: #fff;
    border-top: 1px solid var(--border);
}

.answer-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.answer-feedback {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--border);
}

.answer-feedback span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Sidebar */
.faq-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-help-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.help-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.help-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.faq-help-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.faq-help-card > p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.help-contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.help-option:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateX(5px);
}

.help-option i {
    font-size: 1.25rem;
    color: var(--secondary);
}

.help-option div {
    text-align: left;
}

.help-option strong {
    display: block;
    font-size: 0.9rem;
}

.help-option span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.faq-links-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-links-card h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.faq-links-card h5 i {
    color: var(--secondary);
}

.quick-action-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-action:hover {
    background: var(--background);
    color: var(--primary);
}

.quick-action:hover .action-icon {
    background: var(--primary);
    color: #fff;
}

.quick-action:hover .bi-arrow-right {
    transform: translateX(3px);
}

.quick-action .action-icon {
    width: 36px;
    height: 36px;
    background: var(--background);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-action span {
    flex: 1;
    font-weight: 500;
}

.quick-action .bi-arrow-right {
    color: var(--text-light);
    transition: transform 0.3s ease;
}

/* Responsive FAQ */
@media (max-width: 991.98px) {
    .faq-sidebar {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .faq-search-card {
        text-align: center;
    }
    
    .faq-search-card .col-lg-6:first-child {
        margin-bottom: 1rem;
    }
    
    .faq-category-header {
        flex-direction: column;
        text-align: center;
    }
}

.page-header {
    background: linear-gradient(135deg, rgba(11, 60, 93, 0.92) 0%, rgba(11, 60, 93, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80') center/cover;
    color: var(--accent);
    padding: 5rem 0 4rem;
    text-align: center;
}

/* ============================================
   RESPONSIVE HERO SLIDER
   ============================================ */

@media (max-width: 991.98px) {
    .hero-slide {
        min-height: 60vh;
    }
    
    .min-vh-75 {
        min-height: 60vh;
    }
    
    .hero-slider .hero-title {
        font-size: 2.25rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-indicators {
        bottom: 80px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .min-vh-75 {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .hero-slider .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-slider .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-slider .hero-buttons {
        flex-direction: column;
    }
    
    .hero-slider .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .hero-stats-bar .stat-value {
        font-size: 1.75rem;
    }
    
    .hero-stats-bar .stat-label {
        font-size: 0.75rem;
    }
}
