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

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #2d3748;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles - Updated Colors */
.site-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .site-logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.company-tagline {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.employee-corner .employee-login-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.employee-corner .employee-login-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-1px);
}

/* Navigation */
.main-navigation {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-1px);
}

/* Footer Styles - Compact and Professional */
.site-footer {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 2rem 0 0;
    margin-top: 3rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-section h3 {
    color: #e2e8f0;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 0.4rem;
}

/* Company Info Section - Compact */
.company-info .company-description {
    color: #cbd5e0;
    font-weight: 500;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-info-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.contact-icon {
    font-size: 1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.contact-details {
    color: #cbd5e0;
    line-height: 1.4;
    font-size: 0.85rem;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-row .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

/* Global Presence Section - Compact */
.presence-grid {
    display: grid;
    gap: 0.6rem;
}

.presence-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.presence-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(2px);
}

.presence-item .flag {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.presence-info {
    flex: 1;
}

.presence-info strong {
    color: #e2e8f0;
    font-size: 0.8rem;
    display: block;
    line-height: 1.2;
}

.presence-info small {
    color: #a0aec0;
    font-size: 0.7rem;
}

/* Brands Section - Compact */
.brands-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.brand-tag {
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.brand-tag:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

.brand-tag.premium {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2d3748;
    font-weight: 600;
}

.brand-tag.featured {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
}

/* Services Section - Compact */
.services-grid {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
    font-size: 0.8rem;
    padding: 0.2rem 0;
    transition: color 0.3s ease;
}

.service-item:hover {
    color: #e2e8f0;
}

.service-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #4267B2;
}

.social-link.twitter:hover {
    background: #1DA1F2;
}

.social-link.instagram:hover {
    background: #E4405F;
}

.social-link.linkedin:hover {
    background: #0077B5;
}

/* Footer Bottom - Compact */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.copyright {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.footer-credits {
    font-size: 0.75rem;
    opacity: 0.8;
    line-height: 1.4;
}

.footer-section a {
    color: #90cdf4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #63b3ed;
    text-decoration: underline;
}

/* Mobile Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .site-footer {
        padding: 1.5rem 0 0;
        margin-top: 2rem;
    }
    
    .footer-section h3 {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.3rem;
    }
}

/* Enhanced Stats Section */
.stats-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="0.8" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.stat-card-enhanced {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.stat-card-enhanced:hover::before {
    transform: translateX(100%);
}

.stat-card-enhanced:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.stat-card-enhanced.featured {
    background: rgba(255,215,0,0.2);
    border-color: #ffd700;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.stat-trend {
    font-size: 0.9rem;
    color: #81c784;
    font-weight: 600;
    margin-top: 0.5rem;
}

.stats-footer {
    position: relative;
    z-index: 2;
}

.additional-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.mini-stat {
    text-align: center;
    padding: 1rem;
}

.mini-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.3rem;
}

.mini-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Enhanced Realistic World Map */
.world-map-container {
    padding: 0;
    margin: 3rem 0;
}

.world-map-wrapper {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
}

.map-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: none;
}

.map-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.map-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    opacity: 0.95;
}

.world-map {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    min-height: 450px;
}

.world-svg {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Enhanced shipping routes animation */
.shipping-routes path {
    filter: drop-shadow(0 0 6px currentColor);
}

.shipping-routes path:nth-child(1) {
    animation-delay: 0s;
}

.shipping-routes path:nth-child(2) {
    animation-delay: 0.8s;
}

.shipping-routes path:nth-child(3) {
    animation-delay: 1.6s;
}

.shipping-routes path:nth-child(4) {
    animation-delay: 2.4s;
}

.shipping-routes path:nth-child(5) {
    animation-delay: 3.2s;
}

.map-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
}

.pin-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -100%);
}

.pin-dot {
    width: 15px;
    height: 15px;
    background: #667eea;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.3s ease;
}

.pin-dot.headquarters {
    width: 20px;
    height: 20px;
    background: #ff6b6b;
    animation: pulse 2s infinite;
}

.pin-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #ff6b6b;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.pin-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.pin-flag {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.pin-label {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.map-pin:hover .pin-label {
    opacity: 1;
    transform: translateY(0);
}

.map-pin:hover .pin-dot {
    transform: scale(1.3);
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.legend-dot.headquarters {
    background: #ff6b6b;
}

.legend-dot.office {
    background: #667eea;
}

.legend-line {
    width: 20px;
    height: 2px;
    background: #667eea;
    position: relative;
}

.legend-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    animation: dash 2s infinite;
}

@keyframes dash {
    0% { left: 0; }
    100% { left: 12px; }
}

/* Enhanced Contact Page */
.contact-page {
    background: #f8fafc;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.header-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.header-content p {
    opacity: 0.9;
    font-size: 1rem;
}

.card-content {
    padding: 2rem;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.contact-details-grid {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.detail-icon {
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.detail-content {
    flex: 1;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.detail-value {
    color: #2d3748;
    line-height: 1.6;
}

.detail-value a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.detail-value a:hover {
    text-decoration: underline;
}

.global-offices-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.offices-grid-enhanced {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.office-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.office-card:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

.office-flag {
    font-size: 1.8rem;
}

.office-info {
    flex: 1;
}

.office-country {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.office-email {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}

.office-status {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
}

/* Enhanced Contact Form */
.contact-form-column {
    position: sticky;
    top: 2rem;
}

.form-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.form-header-enhanced {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-icon {
    font-size: 2.5rem;
    opacity: 0.9;
}

.form-title-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-title-content p {
    opacity: 0.9;
    font-size: 1rem;
}

.contact-form-enhanced {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.form-row-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group-enhanced {
    display: flex;
    flex-direction: column;
}

.form-group-enhanced.full-width {
    grid-column: 1 / -1;
}

.form-group-enhanced label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1rem;
}

.label-text {
    flex: 1;
}

.form-group-enhanced input,
.form-group-enhanced select,
.form-group-enhanced textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: white;
}

.form-group-enhanced input:focus,
.form-group-enhanced select:focus,
.form-group-enhanced textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.form-group-enhanced textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.submit-button-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.submit-button-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.button-arrow {
    transition: transform 0.3s ease;
}

.submit-button-enhanced:hover .button-arrow {
    transform: translateX(5px);
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.note-icon {
    color: #ffd700;
}

/* Tracking Section Styles - REMOVED (now in separate page) */
/*
.tracking-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.tracking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23667eea" opacity="0.05"><polygon points="0,0 0,100 1000,100"/></svg>');
    background-size: cover;
    z-index: 1;
}

.tracking-section .container {
    position: relative;
    z-index: 2;
}

.tracking-header {
    text-align: center;
    margin-bottom: 60px;
}

.tracking-header .section-title {
    font-size: 3rem;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 700;
}

.tracking-header .section-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.tracking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.tracking-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tracking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.tracking-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tracking-card.general {
    border: 2px solid transparent;
}

.tracking-card.shiprocket {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%) border-box;
}

.tracking-card.shiprocket::before {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.tracking-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.tracking-card.shiprocket .tracking-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.tracking-card:hover .tracking-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.tracking-card.shiprocket:hover .tracking-icon {
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.tracking-card h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 15px;
    font-weight: 600;
}

.tracking-card p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.6;
}

.track-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-btn.shiprocket {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.track-btn.shiprocket:hover {
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.tracking-features {
    margin-top: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    color: white;
}

.feature-item h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tracking-header .section-title {
        font-size: 2.5rem;
    }
    
    .tracking-card {
        padding: 30px 20px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .tracking-header .section-title {
        font-size: 2rem;
    }
    
    .tracking-header .section-subtitle {
        font-size: 1.1rem;
    }
    
    .tracking-card h3 {
        font-size: 1.5rem;
    }
    
    .tracking-card p {
        font-size: 1rem;
    }
}
/* End of commented tracking section */

/* Responsive Design Updates */
@media (max-width: 768px) {
    .brands-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row-enhanced {
        grid-template-columns: 1fr;
    }
    
    .map-legend {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .contact-form-column {
        position: static;
    }
}

/* Contact Page Styles */
.contact-page {
    background: #f8fafc;
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-main-section {
    padding: 4rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.card-header h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-content h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.info-details {
    flex: 1;
    line-height: 1.6;
}

.info-details a {
    color: #667eea;
    text-decoration: none;
}

.info-details a:hover {
    text-decoration: underline;
}

/* Global Offices */
.global-offices h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.flag {
    font-size: 1.5rem;
}

.office-details strong {
    color: #2d3748;
    display: block;
}

.office-details small {
    color: #718096;
    font-size: 0.85rem;
}

/* Contact Form Section */
.form-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    height: fit-content;
}

.form-header h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #718096;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.label-icon {
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.button-icon {
    font-size: 1rem;
}

/* Contact Stats */
.contact-stats {
    background: #f7fafc;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #718096;
    font-weight: 500;
}

/* Enhanced World Map Styles */
.world-map-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.world-map {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.world-svg {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -100%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.map-pin:hover {
    transform: translate(-50%, -100%) scale(1.2);
    z-index: 20;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background: #667eea;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    margin-bottom: 5px;
}

.pin-dot.headquarters {
    background: #ffd700;
    width: 20px;
    height: 20px;
    animation: pulse 2s infinite;
}

.pin-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.pin-flag {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3px;
}

.pin-label {
    font-size: 0.7rem;
    color: #2d3748;
    font-weight: 600;
    text-align: center;
    background: rgba(255,255,255,0.9);
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.headquarters-pin .pin-label {
    background: #ffd700;
    color: #2d3748;
}

/* Country Info Cards */
.country-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.country-info-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.country-info-card.active {
    opacity: 1;
    max-height: 500px;
    padding: 1.5rem;
}

.info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.country-flag-large {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.info-header h3 {
    color: #2d3748;
    margin: 0;
    display: flex;
    align-items: center;
}

.close-info {
    background: #f56565;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-info:hover {
    background: #e53e3e;
    transform: scale(1.1);
}

.info-section {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.contact-section {
    padding: 1rem;
    background: #e6fffa;
    border-radius: 10px;
    border-left: 4px solid #38b2ac;
}

.info-section strong,
.contact-section strong {
    color: #2d3748;
    display: inline-block;
    margin-bottom: 0.25rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stats-container-centered {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .brands-container {
        gap: 1rem;
    }
    
    .brand-item {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .world-map-container {
        padding: 1rem;
    }
    
    .pin-label {
        font-size: 0.6rem;
        padding: 1px 4px;
    }
    
    .pin-flag {
        font-size: 1rem;
    }
    
    .pin-dot {
        width: 14px;
        height: 14px;
    }
    
    .pin-dot.headquarters {
        width: 18px;
        height: 18px;
    }
    
    .country-info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .our-brands {
        grid-column: 2 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-row {
        grid-template-columns: 1fr;
    }
    
    .presence-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }
    
    .brands-compact {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .our-brands {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .presence-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-credits {
        font-size: 0.8rem;
    }
}

/* Legacy styles for compatibility */
.site-header .container, .site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo img {
    border-radius: 8px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #2a4d69;
    font-weight: bold;
}

.global-map img {
    margin-top: 1rem;
    border-radius: 12px;
}

.brands span {
    display: inline-block;
    margin: 0 0.2em;
    font-size: 1em;
    font-weight: 600;
}