/*
Theme Name: DLS Logistics
Theme URI: https://d-l-s.co.za
Author: King Arthur Jacobs Designs
Description: Custom logistics theme for DLS
Version: 4.5
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Header */
.site-header {
    background: #ffffff;
    padding: 0px 0;
    position: relative;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    width: 100%;
}

.header-inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.logo-area {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.logo-link {
    display: block;
    line-height: 0;
}

.logo-link img {
    max-height: 80px;
    width: auto;
    display: block;
    padding: 5px 0;
}

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

.main-nav ul li {
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #0a1a3a;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #00b4d8;
}

/* Parcel Perfect Button in Navigation */
.main-nav ul li:last-child a {
    background: #00b4d8;
    color: white !important;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav ul li:last-child a:hover {
    background: #0a1a3a;
    color: white !important;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #0a1a3a;
}

/* Hero Sections */
.hero, .page-hero {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}

.hero h1, .page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.hero h1 span, .page-hero h1 span {
    color: #00b4d8;
}

.hero p, .page-hero p {
    font-size: 18px;
    color: white;
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #00b4d8;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #0a1a3a;
    transform: translateY(-2px);
    color: white;
}

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

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #0a1a3a;
}

.section-title span {
    color: #00b4d8;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 18px;
}

/* Homepage Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0a1a3a;
}

.service-card h3 span {
    color: #00b4d8;
}

.service-card p {
    color: #555;
    font-size: 14px;
}

/* Why Choose Us */
.why-choose {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.why-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.why-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0a1a3a;
}

.why-item h3 span {
    color: #00b4d8;
}

.why-item p {
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Parcel Perfect Section */
.parcel-perfect-section {
    padding: 60px 0;
}

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

.parcel-perfect-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a1a3a;
}

.parcel-perfect-content h2 span {
    color: #00b4d8;
}

.parcel-perfect-content p {
    color: #555;
    margin-bottom: 25px;
}

.parcel-features {
    margin-bottom: 25px;
}

.parcel-feature {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.parcel-feature span {
    font-size: 24px;
    min-width: 40px;
}

.parcel-feature h4 {
    font-size: 16px;
    margin-bottom: 3px;
    color: #0a1a3a;
}

.parcel-feature p {
    margin-bottom: 0;
    font-size: 13px;
    color: #666;
}

.parcel-perfect-image {
    text-align: center;
}

.parcel-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
}

.parcel-badge {
    margin-top: 15px;
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.parcel-badge span {
    font-size: 10px;
    color: #666;
    display: block;
}

.parcel-badge strong {
    color: #0a1a3a;
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    background: #0a1a3a;
    text-align: center;
    padding: 50px 40px;
    margin: 40px auto;
    border-radius: 24px;
    max-width: 1000px;
}

.cta-section .container {
    padding: 0;
}

.cta-section h2 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
}

.cta-section h2 span {
    color: #00b4d8;
}

.cta-section p {
    color: white;
    margin-bottom: 25px;
    opacity: 0.9;
    text-align: center;
}

.cta-section .btn {
    background: #00b4d8;
}

.cta-section .btn:hover {
    background: white;
    color: #0a1a3a;
}

/* Services Page Detailed */
.services-detailed {
    padding: 60px 0;
}

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

.service-detailed-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
    text-align: center;

}

.service-detailed-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.service-detailed-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0a1a3a;
}

.service-detailed-item h3 span {
    color: #00b4d8;
    font-size: 18px;
    display: block;
    margin-top: 5px;
}

.service-detailed-item p {
    color: #555;
    margin-bottom: 20px;
}

.service-detailed-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
}

.service-detailed-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
    text-align: left;
}

.service-detailed-item ul li:before {
    content: "✓";
    color: #00b4d8;
    position: absolute;
    left: 0;
}

.why-choose-detailed {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.why-detailed-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.why-detailed-icon {
    font-size: 35px;
    margin-bottom: 15px;
}

.why-detailed-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0a1a3a;
}

.why-detailed-item h3 span {
    color: #00b4d8;
}

.why-detailed-item p {
    color: #555;
    text-align: center;
}

/* Our Network */
.our-network {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.network-content ul {
    list-style: none;
    margin-top: 20px;
}

.network-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
}

.network-content ul li:before {
    content: "✓";
    color: #00b4d8;
    position: absolute;
    left: 0;
}

.network-countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.country-badge {
    background: white;
    padding: 12px 20px;
    border-radius: 40px;
    text-align: center;
    font-weight: 500;
    color: #0a1a3a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.country-badge:hover {
    background: #00b4d8;
    color: white;
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0a1a3a;
}

.story-content h2 span {
    color: #00b4d8;
}

.story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Meet The Team Section */
.team-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.team-image-wrapper {
    max-width: 1000px;
    margin: 0 auto 25px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
}

.team-description {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0a1a3a;
}

.value-item h3 span {
    color: #00b4d8;
}

.value-item p {
    color: #666;
    font-size: 14px;
    text-align: center;
}

/* Mission & Vision */
.mission-vision {
    padding: 60px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission, .vision {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
}

.mission h3, .vision h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #0a1a3a;
}

.mission h3 span, .vision h3 span {
    color: #00b4d8;
}

.mission ul, .vision ul {
    list-style: none;
    padding: 0;
}

.mission li, .vision li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
}

.mission li:before, .vision li:before {
    content: "✓";
    color: #00b4d8;
    position: absolute;
    left: 0;
}

/* Foundation Section */
.foundation-section {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.foundation-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0a1a3a;
}

.foundation-content h2 span {
    color: #00b4d8;
}

.foundation-content p {
    color: #444;
    margin-bottom: 20px;
}

.foundation-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.stat {
    text-align: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #00b4d8;
}

.stat-label {
    font-size: 12px;
    color: #666;
}

.foundation-image {
    text-align: center;
}

.foundation-image img {
    width: 70%;
    max-width: 350px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Timeline Section */
.timeline-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.timeline-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-image {
    width: 100%;
    height: auto;
    display: block;
}

/* BEE Section */
.bee-section {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.bee-logo {
    max-height: 50px;
    width: auto;
    margin-bottom: 20px;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

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

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0a1a3a;
}

.contact-form-wrapper h2 span {
    color: #00b4d8;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b4d8;
}

.contact-info-side {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.method-icon {
    font-size: 28px;
    min-width: 45px;
}

.contact-method h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #0a1a3a;
}

.contact-method a {
    color: #00b4d8;
    text-decoration: none;
}

.method-note {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.contact-locations {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.contact-locations h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #0a1a3a;
}

.contact-locations .google-map {
    margin: 15px 0 10px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-locations .google-map iframe,
.contact-locations .google-map .wp-gmap-embed {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 12px;
}

.contact-locations .map-address {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Hubs Section */
.hubs-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.hub-item {
    background: white;
    padding: 12px 20px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.hub-item:hover {
    border-color: #00b4d8;
    transform: translateY(-2px);
}

.hub-code {
    font-weight: 700;
    color: #0a1a3a;
    font-size: 14px;
    margin-right: 8px;
}

.hub-name {
    font-size: 13px;
    color: #666;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 16px;
    margin: 0;
    color: #0a1a3a;
}

.faq-toggle {
    font-size: 22px;
    color: #00b4d8;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px 25px;
    color: #666;
    font-size: 14px;
    border-top: 1px solid #eee;
}

.faq-answer p {
    margin: 0;
    padding-top: 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.site-footer {
    background: #0a1a3a;
    color: #aaa;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

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

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.5;
}

.footer-logo-img {
    max-height: 45px;
    width: auto;
    margin-bottom: 15px;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
}

.footer-col a:hover {
    color: #00b4d8;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

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

.social-link:hover {
    background: #00b4d8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 11px;
    color: #777;
}

.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

/* Mobile Responsive - Centered */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .main-nav ul li:last-child a {
        display: inline-block;
    }
    
    .header-inner {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .hero, .page-hero {
        height: 250px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 32px;
        text-align: center !important;
    }
    
    .hero p, .page-hero p {
        font-size: 16px;
        text-align: center !important;
    }
    
    .hero-content {
        padding: 0 15px;
        text-align: center !important;
        width: 100%;
    }
    
    .page-hero .container {
        text-align: center !important;
        padding: 0 15px;
    }
    
    .container {
        padding: 40px 20px;
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
        text-align: center !important;
    }
    
    .section-subtitle {
        font-size: 16px;
        text-align: center !important;
    }
    
    .parcel-perfect-grid,
    .story-grid,
    .mv-grid,
    .foundation-grid,
    .contact-grid,
    .network-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detailed-grid,
    .why-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hubs-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }
    
    .cta-section {
        margin: 40px 20px;
        padding: 40px 20px;
    }
    
    .cta-section h2 {
        font-size: 24px;
        text-align: center !important;
    }
    
    .cta-section p {
        text-align: center !important;
    }
    
    .foundation-image img {
        width: 80%;
    }
    
    .team-description {
        font-size: 15px;
        text-align: center !important;
        padding: 0 20px;
    }
    
    .service-card {
        text-align: center !important;
    }
    
    .service-card p {
        text-align: center !important;
    }
    
    .why-item {
        text-align: center !important;
    }
    
    .why-item p {
        text-align: center !important;
    }
    
    .contact-info-side {
        text-align: center !important;
    }
    
    .contact-method {
        text-align: center !important;
        justify-content: center;
    }
    
    .contact-form-wrapper {
        text-align: center !important;
    }
    
    .contact-form-wrapper h2,
    .contact-form-wrapper p {
        text-align: center !important;
    }
    
    .foundation-content {
        text-align: center !important;
    }
    
    .foundation-stats {
        justify-content: center;
    }
    
    .value-item {
        text-align: center !important;
    }
    
    .mv-grid {
        text-align: center !important;
    }
    
    .mission ul, .vision ul {
        text-align: left !important;
        display: inline-block;
        margin: 0 auto;
    }
    
    .mission li, .vision li {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .hero, .page-hero {
        height: 200px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 24px;
        text-align: center !important;
    }
    
    .hero p, .page-hero p {
        font-size: 14px;
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
        padding: 0 15px;
    }
    
    .container {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 24px;
        text-align: center !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .hubs-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }
    
    .foundation-image img {
        width: 90%;
    }
}

/* Homepage service cards - static like Why Us */
.homepage .service-card {
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
}

.homepage .service-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-bottom-color: #00b4d8;
}
/* Homepage hero heading - keep on one line */
.homepage .hero h1 {
    white-space: nowrap;
}