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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
}

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

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-contact span {
    color: #fff;
    font-size: 14px;
}

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

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

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    color: #fff;
    text-decoration: none;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 30px;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Tracking Form */
.tracking-form-wrapper {
    max-width: 500px;
}

.tracking-form .form-group {
    display: flex;
    gap: 10px;
}

.tracking-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.tracking-form .btn {
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.tracking-form .btn:hover {
    background: #004299;
}

.tracking-result {
    margin-top: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    color: #333;
    display: none;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 30px;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #fff;
}

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

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

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

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    color: #666;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 10px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #004299;
}

/* Footer Styles */
.site-footer {
    background: #1a1a1a;
    color: #fff;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-description {
    color: #999;
    margin: 20px 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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

.footer-menu,
.services-list,
.contact-info {
    list-style: none;
    padding: 0;
}

.footer-menu li,
.services-list li {
    margin-bottom: 10px;
}

.footer-menu a,
.services-list a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover,
.services-list a:hover {
    color: var(--primary-color);
}

.contact-info li {
    color: #999;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

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

.footer-bottom {
    padding: 20px 0;
    background: #111;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #999;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

/* Page Header Styles */
.page-header {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 140px; /* Adjust based on your header height */
    color: #fff;
}

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

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
}

.breadcrumbs a,
.breadcrumbs span {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a {
    opacity: 0.9;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.breadcrumbs .separator {
    margin: 0 5px;
    opacity: 0.5;
}

.breadcrumbs .current {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumbs i {
    margin-right: 5px;
    font-size: 14px;
}

/* Responsive Page Header */
@media (max-width: 991px) {
    .page-header {
        margin-top: 120px;
        min-height: 250px;
    }
    
    .page-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .page-header {
        margin-top: 100px;
        min-height: 200px;
    }
    
    .page-header-content {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .breadcrumbs {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-header {
        min-height: 180px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .breadcrumbs {
        flex-wrap: wrap;
    }
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.archive-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.archive-item:hover {
    transform: translateY(-5px);
}

.archive-item .post-thumbnail {
    height: 200px;
    overflow: hidden;
}

.archive-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.archive-item:hover .post-thumbnail img {
    transform: scale(1.1);
}

.archive-item .post-content {
    padding: 25px;
}

.archive-item .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.archive-item .entry-title a {
    color: #333;
    text-decoration: none;
}

.archive-item .entry-title a:hover {
    color: var(--primary-color);
}

.archive-item .entry-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.archive-item .entry-meta span {
    margin-right: 15px;
}

.archive-item .entry-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.archive-item .entry-summary {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Search Results */
.search-results-count {
    background: #f5f5f5;
    padding: 15px 25px;
    border-radius: 5px;
    margin: 30px 0;
    font-size: 18px;
    color: #333;
}

.search-results-grid {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.search-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.search-item .entry-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.search-item .entry-title a {
    color: #333;
    text-decoration: none;
}

.search-item .entry-title a:hover {
    color: var(--primary-color);
}

/* Error 404 */
.error-404 {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 120px;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.3;
}

.error-404 h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.error-404 p {
    color: #666;
    margin-bottom: 30px;
    font-size: 18px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.error-search {
    margin-top: 30px;
}

.error-search h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Entry Meta */
.entry-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 20px;
}

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

/* Responsive */
@media (max-width: 767px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
    
    .error-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .entry-meta span {
        display: block;
        margin-bottom: 5px;
    }
}


/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Header on homepage - transparent */
.home .site-header,
.front-page .site-header {
    background: transparent;
}

.home .site-header .header-top,
.front-page .site-header .header-top {
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home .site-header .main-navigation a,
.front-page .site-header .main-navigation a {
    color: #fff;
}

.home .site-header .main-navigation a:hover,
.front-page .site-header .main-navigation a:hover {
    color: var(--primary-color);
}

.home .site-header .site-title a,
.front-page .site-header .site-title a {
    color: #fff;
}

/* Header on other pages - dark background */
body:not(.home):not(.front-page) .site-header {
    background: #1a1a1a;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body:not(.home):not(.front-page) .site-header .header-top {
    background: #0a0a0a;
    border-bottom: 1px solid #333;
}

body:not(.home):not(.front-page) .site-header .header-main {
    background: #FFFF;
}

body:not(.home):not(.front-page) .site-header .main-navigation a {
    color: #1a1a1a;
}

body:not(.home):not(.front-page) .site-header .main-navigation a:hover {
    color: var(--primary-color);
}

body:not(.home):not(.front-page) .site-header .site-title a {
    color: #fff;
}

body:not(.home):not(.front-page) .site-header .btn-track {
    background: var(--primary-color);
    color: #fff;
}

body:not(.home):not(.front-page) .site-header .btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header-top {
    padding: 10px 0;
    transition: background 0.3s;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-contact span {
    color: #fff;
    font-size: 14px;
}

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

.header-main {
    padding: 20px 0;
    transition: background 0.3s;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    text-decoration: none;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 30px;
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

/* Active menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_parent > a {
    color: var(--primary-color) !important;
    position: relative;
}

.main-navigation .current-menu-item > a:after,
.main-navigation .current_page_item > a:after,
.main-navigation .current_page_parent > a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Track Package Button */
.track-button-wrapper {
    margin-left: 20px;
}

.btn-track {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Homepage button */
.home .btn-track,
.front-page .btn-track {
    background: var(--primary-color);
    color: #fff;
}

.home .btn-track:hover,
.front-page .btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Other pages button */
body:not(.home):not(.front-page) .btn-track {
    background: var(--primary-color);
    color: #fff;
}

body:not(.home):not(.front-page) .btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-track i {
    font-size: 14px;
}

.btn-track:hover {
    transform: translateY(-2px);
}

.btn-track:active {
    transform: translateY(0);
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.home .menu-toggle,
.front-page .menu-toggle {
    color: #000;
}

body:not(.home):not(.front-page) .menu-toggle {
    color: #000;
}

/* Sticky header */
.site-header.sticky {
    position: fixed;
    background: #1a1a1a !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.sticky .header-top {
    background: #0a0a0a !important;
}

.site-header.sticky .header-main {
    background: #1a1a1a !important;
}

.site-header.sticky .main-navigation a,
.site-header.sticky .site-title a,
.site-header.sticky .menu-toggle {
    color: #fff !important;
}

.site-header.sticky .btn-track {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.site-header.sticky .btn-track:hover {
    background: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.site-header.hidden {
    transform: translateY(-100%);
}

/* Responsive styles */
@media (max-width: 991px) {
    .track-button-wrapper {
        margin-left: 10px;
    }
    
    .btn-track span {
        display: none;
    }
    
    .btn-track {
        padding: 10px 15px;
    }
    
    .btn-track i {
        font-size: 16px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1a1a1a !important;
        padding: 80px 20px 20px;
        transition: right 0.3s;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .main-navigation.toggled {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 15px 0;
    }
    
    .main-navigation a {
        color: #fff !important;
        font-size: 18px;
    }
    
    .header-contact {
        justify-content: center;
    }
    
    .header-contact span {
        font-size: 12px;
    }
    
    .track-button-wrapper {
        margin-left: auto;
        margin-right: 10px;
    }
    
    .btn-track {
        padding: 8px 12px;
    }
    
    .site-header.sticky .main-navigation {
        background: #1a1a1a !important;
    }
}

/* Page header adjustment */
.page-header {
    margin-top: 140px; /* Keep this for pages with header */
}

/* Adjust for mobile */
@media (max-width: 991px) {
    .page-header {
        margin-top: 120px;
    }
}

@media (max-width: 767px) {
    .page-header {
        margin-top: 100px;
    }
}


/* Track Package Button */
.track-button-wrapper {
    margin-left: 20px;
}

.btn-track {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Filled style (default) */
.btn-track {
    background: var(--primary-color);
    color: #fff;
}

.btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Outline style */
.btn-track.btn-outline {
    background: transparent;
    border: 2px solid;
}

.home .btn-track.btn-outline,
.front-page .btn-track.btn-outline {
    border-color: #fff;
    color: #fff;
}

.home .btn-track.btn-outline:hover,
.front-page .btn-track.btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

body:not(.home):not(.front-page) .btn-track.btn-outline {
    border-color: #fff;
    color: #fff;
}

body:not(.home):not(.front-page) .btn-track.btn-outline:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Text only style */
.btn-track.btn-text {
    background: transparent;
    border: none;
    padding: 10px 15px;
}

.home .btn-track.btn-text,
.front-page .btn-track.btn-text {
    color: #fff;
}

.home .btn-track.btn-text:hover,
.front-page .btn-track.btn-text:hover {
    color: var(--primary-color);
    background: transparent;
    transform: translateY(-2px);
}

body:not(.home):not(.front-page) .btn-track.btn-text {
    color: #fff;
}

body:not(.home):not(.front-page) .btn-track.btn-text:hover {
    color: var(--primary-color);
    background: transparent;
    transform: translateY(-2px);
}

.btn-track i {
    font-size: 14px;
}

.btn-track:hover {
    transform: translateY(-2px);
}

.btn-track:active {
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 991px) {
    .track-button-wrapper {
        margin-left: 10px;
    }
    
    .btn-track span {
        display: none; /* Hide text on tablet, show only icon */
    }
    
    .btn-track {
        padding: 10px 15px;
    }
    
    .btn-track i {
        font-size: 16px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .track-button-wrapper {
        margin-left: auto;
        margin-right: 10px;
    }
    
    .btn-track {
        padding: 8px 12px;
    }
}


/* Header Styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.3s, box-shadow 0.3s;
}

/* Header on homepage - transparent */
.home .site-header,
.front-page .site-header {
    background: transparent;
}

.home .site-header .header-top,
.front-page .site-header .header-top {
    background: rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.home .site-header .main-navigation a,
.front-page .site-header .main-navigation a {
    color: #fff;
}

.home .site-header .main-navigation a:hover,
.front-page .site-header .main-navigation a:hover {
    color: var(--primary-color);
}

.home .site-header .site-title a,
.front-page .site-header .site-title a {
    color: #fff;
}

/* Header on other pages - dark background */
body:not(.home):not(.front-page) .site-header {
    background: #1a1a1a;
    position: fixed;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

body:not(.home):not(.front-page) .site-header .header-top {
    background: #0a0a0a;
    border-bottom: 1px solid #333;
}

body:not(.home):not(.front-page) .site-header .header-main {
    background: #FFF;
}

body:not(.home):not(.front-page) .site-header .main-navigation a {
    color: #1a1a1a;
}

body:not(.home):not(.front-page) .site-header .main-navigation a:hover {
    color: var(--primary-color);
}

body:not(.home):not(.front-page) .site-header .site-title a {
    color: #fff;
}

body:not(.home):not(.front-page) .site-header .btn-track {
    background: var(--primary-color);
    color: #fff;
}

body:not(.home):not(.front-page) .site-header .btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.header-top {
    padding: 10px 0;
    transition: background 0.3s;
}

.header-contact {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-contact span {
    color: #fff;
    font-size: 14px;
}

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

.header-main {
    padding: 20px 0;
    transition: background 0.3s;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding img {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.site-title a {
    text-decoration: none;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-left: 30px;
    position: relative;
}

.main-navigation a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

/* Active menu item */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_parent > a {
    color: var(--primary-color) !important;
    position: relative;
}

.main-navigation .current-menu-item > a:after,
.main-navigation .current_page_item > a:after,
.main-navigation .current_page_parent > a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Track Package Button */
.track-button-wrapper {
    margin-left: 20px;
}

.btn-track {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

/* Homepage button */
.home .btn-track,
.front-page .btn-track {
    background: var(--primary-color);
    color: #fff;
}

.home .btn-track:hover,
.front-page .btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Other pages button */
body:not(.home):not(.front-page) .btn-track {
    background: var(--primary-color);
    color: #fff;
}

body:not(.home):not(.front-page) .btn-track:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-track i {
    font-size: 14px;
}

.btn-track:hover {
    transform: translateY(-2px);
}

.btn-track:active {
    transform: translateY(0);
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.home .menu-toggle,
.front-page .menu-toggle {
    color: #fff;
}

body:not(.home):not(.front-page) .menu-toggle {
    color: #000;
}

/* Sticky header */
.site-header.sticky {
    position: fixed;
    background: #1a1a1a !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.sticky .header-top {
    background: #0a0a0a !important;
}

.site-header.sticky .header-main {
    background: #1a1a1a !important;
}

.site-header.sticky .main-navigation a,
.site-header.sticky .site-title a,
.site-header.sticky .menu-toggle {
    color: #fff !important;
}

.site-header.sticky .btn-track {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.site-header.sticky .btn-track:hover {
    background: transparent !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.site-header.hidden {
    transform: translateY(-100%);
}

/* Responsive styles */
@media (max-width: 991px) {
    .track-button-wrapper {
        margin-left: 10px;
    }
    
    .btn-track span {
        display: none;
    }
    
    .btn-track {
        padding: 10px 15px;
    }
    
    .btn-track i {
        font-size: 16px;
        margin: 0;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1a1a1a !important;
        padding: 80px 20px 20px;
        transition: right 0.3s;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .main-navigation.toggled {
        right: 0;
    }
    
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin: 15px 0;
    }
    
    .main-navigation a {
        color: #fff !important;
        font-size: 18px;
    }
    
    .header-contact {
        justify-content: center;
    }
    
    .header-contact span {
        font-size: 12px;
    }
    
    .track-button-wrapper {
        margin-left: auto;
        margin-right: 10px;
    }
    
    .btn-track {
        padding: 8px 12px;
    }
    
    .site-header.sticky .main-navigation {
        background: #1a1a1a !important;
    }
}

/* Page header adjustment */
.page-header {
    margin-top: 140px; /* Keep this for pages with header */
}

/* Adjust for mobile */
@media (max-width: 991px) {
    .page-header {
        margin-top: 120px;
    }
}

@media (max-width: 767px) {
    .page-header {
        margin-top: 100px;
    }
}
/* About Page Styles */

/* Section Subtitle */
.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Our Story Section */
.about-story-section {
    padding: 80px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content {
    padding-right: 30px;
}

.story-content .section-title {
    font-size: 36px;
    margin-bottom: 25px;
    color: #333;
    line-height: 1.3;
}

.story-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.story-highlights {
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.highlight-item i {
    font-size: 30px;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-item div {
    flex: 1;
}

.highlight-item strong {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.highlight-item span {
    color: #666;
    font-size: 14px;
}

.story-image {
    position: relative;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--primary-color);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,86,179,0.3);
    animation: float 3s ease-in-out infinite;
}

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

.experience-badge .years {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    opacity: 0.9;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f2f5 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card,
.vision-card,
.values-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 40px;
    color: #fff;
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.8;
}

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

.values-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #666;
}

.values-list li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* About Stats Section */
.about-stats-section {
    padding: 60px 0;
    background: #fff;
}

.about-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.about-stats-section .stat-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s;
}

.about-stats-section .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-stats-section .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-stats-section .stat-label {
    color: #666;
    font-size: 16px;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.team-section .section-header h2,
.team-section .section-header p {
    color: #fff;
}

.team-section .section-header h2:after {
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-card:hover .member-image img {
    transform: scale(1.1);
}

.member-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,86,179,0.9), transparent);
    padding: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    transition: bottom 0.3s;
}

.team-card:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s;
}

.member-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 5px;
}

.member-info span {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: #fff;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cert-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.cert-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.2);
}

.cert-item:hover i,
.cert-item:hover h4,
.cert-item:hover p {
    color: #fff;
}

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

.cert-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.cert-item p {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

/* About Testimonials Section */
.about-testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 14px;
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,86,179,0.9), rgba(0,86,179,0.9)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.about-cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        padding-right: 0;
    }
    
    .experience-badge {
        right: 20px;
    }
    
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .about-story-section,
    .mission-vision-section,
    .team-section,
    .certifications-section,
    .about-testimonials-section,
    .about-cta-section {
        padding: 60px 0;
    }
    
    .story-content .section-title {
        font-size: 28px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-section .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        position: static;
        margin-top: 20px;
        width: 100%;
        animation: none;
    }
    
    .about-cta-section h2 {
        font-size: 32px;
    }
}

/* Services Page Styles */

/* Services Intro */
.services-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Main Services Grid */
.main-services {
    padding: 80px 0;
    background: #fff;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-detailed-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s;
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,86,179,0.2);
}

.service-detailed-card:hover::before {
    width: 100%;
    opacity: 0.05;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #004299);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,86,179,0.3);
}

.service-icon-large i {
    font-size: 40px;
    color: #fff;
}

.service-header h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
}

.service-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #555;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: gap 0.3s;
}

.service-cta:hover {
    gap: 15px;
    color: #004299;
}

/* Benefits Section */
.service-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.service-benefits .section-header h2,
.service-benefits .section-subtitle {
    color: #fff;
}

.service-benefits .section-header h2:after {
    background: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 40px;
    color: #fff;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.benefit-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Industry Solutions */
.industry-solutions {
    padding: 80px 0;
    background: #fff;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.industry-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.industry-item:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.2);
}

.industry-item:hover i,
.industry-item:hover h4,
.industry-item:hover p {
    color: #fff;
}

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

.industry-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.industry-item p {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

/* Process Section */
.service-process {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 1;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin: 0 auto 20px;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid var(--primary-color);
}

.step-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.step-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.service-faq {
    padding: 80px 0;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-cta .cta-box {
    background: linear-gradient(135deg, var(--primary-color), #004299);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    position: sticky;
    top: 120px;
}

.faq-cta .cta-box i {
    font-size: 60px;
    margin-bottom: 20px;
}

.faq-cta .cta-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.faq-cta .cta-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.faq-cta .cta-box .btn-primary {
    background: #fff;
    color: var(--primary-color);
}

.faq-cta .cta-box .btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* Services CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/services-cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}

.services-cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 991px) {
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-cta .cta-box {
        position: static;
    }
    
    .intro-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .services-intro,
    .main-services,
    .service-benefits,
    .industry-solutions,
    .service-process,
    .service-faq,
    .services-cta-section {
        padding: 60px 0;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detailed-card {
        padding: 30px 20px;
    }
    
    .services-cta-section h2 {
        font-size: 32px;
    }
}

/* Contact Page Styles */

/* Contact Introduction */
.contact-intro {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
}

.contact-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro .intro-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-intro .intro-text {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

/* Contact Cards */
.contact-cards {
    padding: 60px 0 80px;
    background: #fff;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #004299);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,86,179,0.15);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #004299);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0,86,179,0.3);
}

.card-icon i {
    font-size: 35px;
    color: #fff;
}

.contact-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.card-detail {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
}

.card-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
}

.card-link i {
    transition: transform 0.3s;
}

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

.card-link:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.form-intro {
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.contact-form .form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .form-checkbox input {
    width: auto;
}

.contact-form .form-checkbox label {
    margin-bottom: 0;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-submit i {
    transition: transform 0.3s;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.map-container {
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.business-hours {
    padding: 30px;
}

.business-hours h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list .day {
    color: #666;
    font-weight: 500;
}

.hours-list .time {
    color: #333;
    font-weight: 600;
}

.emergency-note {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.emergency-note i {
    font-size: 20px;
}

/* Departments Section */
.departments-section {
    padding: 80px 0;
    background: #fff;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.department-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.department-card:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,86,179,0.2);
}

.department-card:hover i,
.department-card:hover h3,
.department-card:hover a,
.department-card:hover p {
    color: #fff;
}

.department-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.department-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.department-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.department-card a:hover {
    text-decoration: underline;
}

.department-card p {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

/* Social Connect */
.social-connect {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.social-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.social-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    background: #fff;
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    color: #3b5998;
}

.social-link.twitter:hover {
    color: #1da1f2;
}

.social-link.linkedin:hover {
    color: #0077b5;
}

.social-link.instagram:hover {
    color: #e4405f;
}

.social-link i {
    font-size: 20px;
}

.social-link span {
    font-weight: 500;
}

/* FAQ Teaser */
.contact-faq {
    padding: 80px 0;
    background: #fff;
}

.faq-teaser {
    background: linear-gradient(135deg, var(--primary-color), #004299);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
}

.faq-teaser-content {
    padding: 60px;
}

.faq-teaser-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.faq-teaser-content p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.faq-teaser-content .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.faq-teaser-content .btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

.faq-teaser-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
}

.faq-teaser-image i {
    font-size: 120px;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 991px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-links-large {
        flex-wrap: wrap;
    }
    
    .faq-teaser {
        grid-template-columns: 1fr;
    }
    
    .faq-teaser-image {
        display: none;
    }
    
    .contact-intro .intro-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .contact-intro,
    .contact-cards,
    .contact-form-section,
    .departments-section,
    .social-connect,
    .contact-faq {
        padding: 60px 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-wrapper h2 {
        font-size: 28px;
    }
    
    .faq-teaser-content {
        padding: 40px 20px;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Track Package Page Styles */

/* Track Hero Section */
.track-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.track-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.track-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.track-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Main Tracking Form */
.tracking-main-form {
    margin-bottom: 30px;
}

.tracking-form-large .form-group {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tracking-form-large input {
    flex: 1;
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    border-radius: 50px;
    background: transparent;
}

.tracking-form-large input:focus {
    outline: none;
}

.tracking-form-large button {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.tracking-help {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin-top: 15px;
}

/* Quick Actions */
.tracking-quick-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: all 0.3s;
}

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

.quick-action i {
    font-size: 16px;
}

/* Tracking Result Section */
.tracking-result-section {
    padding: 60px 0;
    background: #f5f7fa;
}

.tracking-result-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.status-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.status-badge.in-transit {
    background: #fff3cd;
    color: #856404;
}

.status-badge.delivered {
    background: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background: #f8d7da;
    color: #721c24;
}

.tracking-actions {
    display: flex;
    gap: 10px;
}

.tracking-actions button {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.tracking-actions button:hover {
    background: #f5f5f5;
    border-color: var(--primary-color);
}

/* Progress Tracker */
.tracking-progress {
    margin: 40px 0;
    position: relative;
}

.progress-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    position: relative;
}

.progress-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 35px;
    bottom: -20px;
    width: 2px;
    background: #e0e0e0;
}

.progress-step.completed:not(:last-child)::before {
    background: var(--primary-color);
}

.step-indicator {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.progress-step.completed .step-indicator {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.progress-step.active .step-indicator {
    border-color: var(--primary-color);
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,86,179,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0,86,179,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,86,179,0); }
}

.step-info {
    flex: 1;
}

.step-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.step-date {
    font-size: 13px;
    color: #666;
}

.step-location {
    display: block;
    font-size: 13px;
    color: var(--primary-color);
    margin-top: 3px;
}

/* Package Details */
.package-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.package-details h3 {
    margin-bottom: 20px;
    color: #333;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    color: #333;
    font-weight: 600;
}

/* Timeline */
.tracking-timeline {
    margin-top: 30px;
}

.tracking-timeline h3 {
    margin-bottom: 20px;
    color: #333;
}

.timeline-list {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 35px;
    bottom: -15px;
    width: 2px;
    background: #e0e0e0;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    z-index: 2;
}

.timeline-content {
    flex: 1;
}

.timeline-date {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 3px;
}

.timeline-location {
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.timeline-status {
    color: #666;
    font-size: 14px;
}

/* How Tracking Works */
.how-tracking-works {
    padding: 80px 0;
    background: #fff;
}

.tracking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.tracking-step {
    text-align: center;
    position: relative;
}

.tracking-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 20px;
}

.tracking-step .step-icon {
    width: 100px;
    height: 100px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid var(--primary-color);
}

.tracking-step .step-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.tracking-step h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.tracking-step p {
    color: #666;
    line-height: 1.6;
}

/* Recent Trackings */
.recent-trackings {
    padding: 80px 0;
    background: #f5f7fa;
}

.recent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.recent-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.recent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,86,179,0.15);
}

.recent-number {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.recent-status {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.recent-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.recent-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.recent-link i {
    transition: transform 0.3s;
}

.recent-link:hover i {
    transform: translateX(5px);
}

/* Update Section */
.update-section {
    padding: 80px 0;
    background: #fff;
}

.update-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.update-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.update-card:hover {
    transform: translateY(-10px);
}

.update-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.update-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.update-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.update-card p {
    color: #666;
    margin-bottom: 30px;
}

.update-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-form input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.update-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Tracking FAQ */
.tracking-faq {
    padding: 80px 0;
    background: #f5f7fa;
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

/* Need Help Section */
.need-help {
    padding: 60px 0;
    background: #fff;
}

.help-box {
    background: linear-gradient(135deg, var(--primary-color), #004299);
    border-radius: 20px;
    padding: 60px;
    color: #fff;
}

.help-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.help-content i {
    font-size: 60px;
    margin-bottom: 20px;
}

.help-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.help-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.help-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.help-buttons .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.help-buttons .btn-outline:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 991px) {
    .track-title {
        font-size: 36px;
    }
    
    .tracking-steps,
    .recent-grid,
    .update-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tracking-form-large .form-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
    }
    
    .tracking-form-large button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .track-hero,
    .how-tracking-works,
    .recent-trackings,
    .update-section,
    .tracking-faq,
    .need-help {
        padding: 60px 0;
    }
    
    .track-title {
        font-size: 28px;
    }
    
    .tracking-steps,
    .recent-grid,
    .update-grid {
        grid-template-columns: 1fr;
    }
    
    .tracking-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .tracking-actions {
        width: 100%;
        justify-content: flex-start;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .tracking-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quick-action {
        justify-content: center;
    }
}