/*****************************************
Clean Professional Logistics Design
Inspired by modern logistics websites

Colors:
- Primary Navy: #1a365d (Professional, trustworthy)
- Primary Gray: #64748b (Modern text)
- Light Gray: #f8fafc (Clean backgrounds)
- White: #ffffff (Cards and sections)
- Border Gray: #e2e8f0 (Subtle borders)
- Dark Text: #1e293b (Headlines)
******************************************/

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #64748b;
}

/* Links */
a {
    color: #1a365d;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2d3748;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #1a365d;
    color: white;
    border-color: #1a365d;
}

.btn-primary:hover {
    background-color: #2d3748;
    border-color: #2d3748;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    color: #1a365d;
    border-color: #1a365d;
}

.btn-outline-primary:hover {
    background-color: #1a365d;
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-quote {
    background-color: #1a365d;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 600;
}

.btn-quote:hover {
    background-color: #2d3748;
    color: white !important;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-logo-icon {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo-text {
    height: 35px;
    width: auto;
    max-width: 180px;
    transition: all 0.3s ease;
}

.navbar-brand:hover .navbar-logo-icon,
.navbar-brand:hover .navbar-logo-text {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #64748b;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #1a365d;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Desktop optimization - reduce excessive white space */
@media (min-width: 992px) {
    .hero-section {
        padding: 4rem 0 2rem 0;
    }
}

.hero-content {
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-buttons .btn {
    min-width: 160px;
    text-align: center;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1a365d;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-height: 2.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image {
    position: relative;
    padding: 2rem 0 2rem 2rem;
    margin-top: 1rem;
}

.hero-image img {
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    top: 4rem;
    right: 2rem;
    background: #1a365d;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

/* Hero Carousel Styles */
.hero-carousel-container {
    position: relative;
    padding: 2rem 0 2rem 2rem;
    margin-top: 1rem;
}

.hero-carousel {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.hero-carousel-img {
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease-in-out;
}

/* Fix rotation for specific carousel images */
.hero-carousel .carousel-item:nth-child(1) .hero-carousel-img,
.hero-carousel .carousel-item:nth-child(3) .hero-carousel-img,
.hero-carousel .carousel-item:nth-child(4) .hero-carousel-img,
.hero-carousel .carousel-item:nth-child(5) .hero-carousel-img {
    transform: rotate(90deg);
    width: 500px;
    height: 500px;
    object-fit: cover;
}

.carousel-inner {
    border-radius: 1rem;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Carousel Controls */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    opacity: 1;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
    background-color: rgba(26, 54, 93, 0.8);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    background-size: 60% 60%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(26, 54, 93, 0.95);
    transform: scale(1.1);
}

/* Carousel Indicators */
.hero-carousel .carousel-indicators {
    bottom: 1.5rem;
    margin-bottom: 0;
}

.hero-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators button.active {
    background-color: #1a365d;
    border-color: #ffffff;
    transform: scale(1.2);
}

.hero-carousel .carousel-indicators button:hover {
    background-color: rgba(26, 54, 93, 0.7);
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    margin-bottom: 0 !important;
}

.page-header p.lead {
    margin-bottom: 0 !important;
}

/* Contact page specific styling */
body .page-header h1 {
    margin-bottom: 0.5rem !important;
}

body .page-header .lead {
    margin-bottom: 0 !important;
}

/* Contact page specific styling */
.contact-page-header h1 {
    margin-bottom: 0.5rem !important;
}

.contact-page-header .lead {
    margin-bottom: 0 !important;
}

/* News Section Styles */
.news-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.news-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.news-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.news-card.featured {
    border: 2px solid #1a365d;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1a365d;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.news-date,
.news-read-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-content h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.news-content h3 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #1a365d;
}

.news-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.read-more {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #2d3748;
}

/* Article Styles */
.article-header {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.article-meta {
    display: flex !important;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
    flex-wrap: wrap;
    align-items: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-category {
    background: #1a365d !important;
    color: white !important;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-date,
.article-read-time {
    display: flex !important;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-excerpt {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.article-image {
    margin-top: 2rem;
}

.article-image img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-content {
    padding: 4rem 0;
}

.article-content article {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h2 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem 0;
    color: #1e293b;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: #1e293b;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-tags {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: #1a365d;
    color: white;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-section .lead {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.toast-notification {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    margin-bottom: 1rem;
    max-width: 400px;
    border-left: 4px solid #10b981;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    border-left-color: #10b981;
}

.toast-notification.error {
    border-left-color: #ef4444;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-notification.success .toast-icon {
    background: #10b981;
    color: white;
}

.toast-notification.error .toast-icon {
    background: #ef4444;
    color: white;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.toast-message {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.toast-close:hover {
    color: #64748b;
}

/* Mobile responsive toast */
@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast-notification {
        max-width: none;
        margin-bottom: 0.5rem;
    }
}

.newsletter-form .form-control {
    border: none;
    padding: 1rem;
    border-radius: 0.5rem 0 0 0.5rem;
    background: white;
    color: #374151;
}

.newsletter-form .btn {
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 1rem 2rem;
    background: #10b981;
    border: 2px solid #10b981;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: #059669;
    border-color: #059669;
    color: white;
}

.newsletter-form .input-group {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

/* Related Articles */
.related-articles {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.related-articles h2 {
    margin-bottom: 2rem;
    text-align: center;
}

/* Mobile responsive news styles */
@media (max-width: 768px) {
    .news-section {
        padding: 3rem 0;
    }
    
    .article-header {
        padding: 6rem 0 2rem 0;
    }
    
    .article-header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .article-meta {
        gap: 0.75rem !important;
        margin-bottom: 0.75rem !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .article-category {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #1a365d !important;
        color: white !important;
    }
    
    .article-date,
    .article-read-time {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .article-content {
        padding: 2rem 0;
    }
    
    .article-content article {
        font-size: 1rem;
    }
    
    .newsletter-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 2rem 0;
    }
    
    .article-header {
        padding: 7rem 0 1.5rem 0;
    }
    
    .article-header h1 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .article-meta {
        gap: 0.5rem !important;
        margin-bottom: 0.5rem !important;
        font-size: 0.75rem !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-wrap: wrap !important;
    }
    
    .article-category {
        padding: 0.2rem 0.6rem !important;
        font-size: 0.7rem !important;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: #1a365d !important;
        color: white !important;
    }
    
    .article-date,
    .article-read-time {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.75rem !important;
    }
    
    .article-content {
        padding: 1.5rem 0;
    }
    
    .newsletter-section {
        padding: 1.5rem 0;
    }
}

/* Mobile specific for contact page */
@media (max-width: 768px) {
    .contact-page-header h1 {
        margin-bottom: 0.25rem !important;
    }
    
    .contact-page-header .lead {
        margin-bottom: 0 !important;
    }
}

/* Services */
.services-preview,
.services-grid {
    padding: 6rem 0;
    background-color: #f8fafc;
}

/* Mobile specific services section padding */
@media (max-width: 768px) {
    .services-preview,
    .services-grid {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .services-preview,
    .services-grid {
        padding: 1rem 0;
    }
}

.service-preview-card,
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.service-preview-card:hover,
.service-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-preview-card h3,
.service-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-preview-card p,
.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    color: #1a365d;
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: #2d3748;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.25rem 0;
    color: #64748b;
    font-size: 0.875rem;
}

.service-card.featured {
    border: 2px solid #1a365d;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: #1a365d;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* About Section */
.about-preview,
.about-detailed {
    padding: 6rem 0;
}

/* Mobile specific about section padding */
@media (max-width: 768px) {
    .about-preview,
    .about-detailed {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .about-preview,
    .about-detailed {
        padding: 1rem 0;
    }
}

.about-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #64748b;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background-color: #f8fafc;
}

.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: #1a365d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem auto;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

/* Mobile specific contact section padding */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1rem 0;
    }
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-form .form-control {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #1a365d;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-note {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0;
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.contact-icon {
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-details h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-details p {
    color: #64748b;
    margin: 0;
}

.availability {
    font-size: 0.75rem;
    color: #1a365d;
    font-weight: 500;
}

.business-hours {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.map-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background-color: white;
    color: #1a365d;
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: #f8fafc;
    border-color: #f8fafc;
    color: #1a365d;
}

/* Footer */
.footer {
    background-color: #1e293b;
    color: #94a3b8;
    padding: 4rem 0 2rem 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 1rem;
    margin-left: -15px;
    margin-right: auto;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer .col-lg-4:first-child {
    text-align: left;
}

.footer .col-lg-4:first-child p {
    margin-left: 0;
    padding-left: 0;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-contact li {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.author-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-company {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Social Media Icons */
.social-media h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp Integration */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.whatsapp-button:hover {
    background: #128c7e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 24px;
    height: 24px;
}

.whatsapp-text {
    font-size: 0.875rem;
}

.whatsapp-btn {
    background: #25d366;
    border-color: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
    min-width: 200px;
    justify-content: center;
    padding: 1rem 2rem;
    white-space: nowrap;
    font-size: 1rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-buttons .btn {
    min-width: 200px;
    text-align: center;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
    max-width: 250px;
    white-space: nowrap;
    font-size: 1rem;
}

/* Desktop spacing for navbar */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 2rem;
        margin: 0 0.25rem;
    }
    
    .navbar-nav {
        gap: 0.5rem;
    }
    
    .navbar-logo-icon {
        height: 50px;
    }
    
    .navbar-logo-text {
        height: 40px;
        max-width: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-logo-icon {
        height: 40px;
    }
    
    .navbar-logo-text {
        height: 30px;
        max-width: 140px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 3rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .hero-image {
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    /* Mobile Carousel Styles */
    .hero-carousel-container {
        padding: 1rem 0;
        margin-top: 1rem;
    }
    
    .hero-carousel-img {
        height: 300px;
    }
    
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-direction: row;
        align-items: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 0.5rem;
    }
    
    .hero-badge {
        top: 3rem;
        right: 1.5rem;
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        border-radius: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem !important;
    }
    
    .page-header .lead {
        margin-bottom: 0 !important;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        margin-bottom: 0;
        min-width: auto;
        padding: 1rem 1.5rem;
        max-width: none !important;
        flex: 1 1 100% !important;
    }
    
    .cta-buttons .btn {
        width: 100% !important;
        margin-bottom: 0;
        min-width: auto;
        padding: 1rem 1.5rem;
        max-width: none !important;
        flex: 1 1 100% !important;
    }
    
    /* Ensure all CTA buttons are full width on mobile */
    .btn-lg {
        width: 100% !important;
        margin-bottom: 0.5rem;
        max-width: none !important;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100% !important;
        max-width: none !important;
        flex: 1 1 100% !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 0;
        min-width: auto;
        padding: 1rem 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-button {
        padding: 0.75rem 1rem;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        text-align: left;
    }
    
    /* Ensure all CTA buttons are full width on small mobile */
    .btn-lg {
        width: 100% !important;
        margin-bottom: 0.5rem;
        max-width: none !important;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100% !important;
        max-width: none !important;
        flex: 1 1 100% !important;
    }
    
    .page-header h1 {
        margin-bottom: 0.25rem !important;
    }
    
    .page-header .lead {
        margin-bottom: 0 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-badge {
        top: 2rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 1.25rem;
    }
    
    /* Extra Small Mobile Carousel Styles */
    .hero-carousel-container {
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }
    
    .hero-carousel-img {
        height: 250px;
    }
    
    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .hero-carousel .carousel-indicators {
        bottom: 1rem;
    }
    
    .hero-carousel .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 2px;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .stat-item {
        flex: 1;
        min-width: 0;
        padding: 0.25rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
        min-height: 2em;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .service-preview-card,
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}