/* Kingspok Limited - Main Stylesheet */

:root {
    --primary-blue: #003366;
    --secondary-gold: #FFD700;
    --accent-white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #F5F5F5;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-dark);
    background: #fff;
    margin: 0;
    padding: 0;
    border: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
header {
    background-color: var(--primary-blue);
    color: var(--accent-white);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-gold);
}

.logo span {
    color: var(--accent-white);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--accent-white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), url('images/kingstelEscape.jpg')) no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--accent-white);
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    background-color: var(--secondary-gold);
    color: var(--primary-blue);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn:hover {
    background-color: var(--accent-white);
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.10);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--accent-white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--accent-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.location-card {
    background-color: var(--accent-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-10px);
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.location-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.location-info i {
    margin-right: 10px;
    color: var(--secondary-gold);
    width: 20px;
    text-align: center;
}

/* Page Hero (for all pages) */
.page-hero {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('images/aboutimage.png') no-repeat center center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--accent-white);
    margin-top: 60px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid, .about-grid, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--primary-blue);
        transition: left 0.3s;
        padding-top: 30px;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    nav ul li {
        margin: 15px 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .page-hero, .hero {
        height: 250px;
    }
    .page-hero h1, .hero h1 {
        font-size: 32px;
    }
}

/* --- About Page --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0;
}
.about-content h2 {
    color: var(--primary-blue);
    margin: 25px 0 15px;
    font-size: 28px;
}
.about-content p {
    margin-bottom: 20px;
}
.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}
.value-item {
    text-align: center;
    padding: 25px 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}
.value-item i {
    font-size: 40px;
    color: var(--secondary-gold);
    margin-bottom: 15px;
}
.value-item h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}
.presence-section {
    background-color: #f5f5f5;
    padding: 60px 0;
}
.presence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.presence-card {
    background-color: var(--accent-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.presence-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 22px;
    display: flex;
    align-items: center;
}
.presence-card h3 i {
    margin-right: 10px;
    color: var(--secondary-gold);
}
.team-section {
    margin: 80px 0;
    text-align: center;
}
.team-section h2 {
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-size: 32px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.team-member {
    background-color: var(--accent-white);
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--secondary-gold);
}
.team-member h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}
.team-member p {
    color: #666;
    margin-bottom: 15px;
}
.member-social a {
    color: var(--primary-blue);
    font-size: 18px;
    margin: 0 5px;
}
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
    margin: 60px 0;
}
.stat-card {
    padding: 30px 20px;
    background-color: var(--primary-blue);
    color: var(--accent-white);
    border-radius: 8px;
}
.stat-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--secondary-gold);
}

/* --- Services Page --- */
.services-section {
    padding: 80px 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.service-card {
    background-color: var(--accent-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.service-icon {
    font-size: 60px;
    color: var(--secondary-gold);
    margin-bottom: 25px;
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}
.service-card p {
    margin-bottom: 25px;
}
.service-cta {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--secondary-gold);
    padding-bottom: 5px;
}
.process-section {
    background-color: #f9f9f9;
    padding: 80px 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.process-step {
    text-align: center;
    position: relative;
}
.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 40px;
    right: -30px;
    width: 30px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23003366'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center center;
    opacity: 0.5;
}
.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: var(--accent-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: 700;
    margin: 0 auto 20px;
}
.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.cta-section {
    background-color: var(--primary-blue);
    color: var(--accent-white);
    padding: 80px 0;
    text-align: center;
}
.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* --- Testimonials Page --- */
.testimonials-section {
    padding: 80px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background-color: var(--accent-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}
.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 60px;
    color: rgba(0, 51, 102, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}
.rating {
    color: var(--secondary-gold);
    margin-bottom: 20px;
    font-size: 18px;
}
.testimonial-content {
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
}
.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid var(--secondary-gold);
}
.author-info h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}
.author-info p {
    color: #666;
    font-size: 14px;
}
.clients-section {
    margin: 80px 0;
    text-align: center;
}
.clients-section h2 {
    color: var(--primary-blue);
    margin-bottom: 40px;
    font-size: 32px;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}
.clients-grid img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    height: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.clients-grid img:hover {
    filter: grayscale(0%);
}
.testimonial-cta {
    text-align: center;
    padding: 60px 0;
    background-color: #f5f5f5;
    border-radius: 8px;
    margin: 60px 0;
}
.testimonial-cta h2 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 32px;
}
.testimonial-cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* --- Contact Page --- */
.office-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}
.tab-btn {
    padding: 10px 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s;
}
.tab-btn:hover {
    color: var(--secondary-gold);
}
.tab-btn.active {
    border-bottom-color: var(--secondary-gold);
    color: var(--secondary-gold);
}
.office-content {
    display: none;
}
.office-content.active {
    display: block;
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}
.info-item i {
    font-size: 24px;
    color: var(--secondary-gold);
    margin-right: 20px;
    margin-top: 5px;
}
.info-content h3 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}
.hours-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}
.hours-section h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-size: 24px;
}
.hours-table {
    width: 100%;
}
.hours-table tr {
    border-bottom: 1px solid #eee;
}
.hours-table tr:last-child {
    border-bottom: none;
}
hours-table td {
    padding: 12px 0;
}
hours-table td:first-child {
    font-weight: 500;
}
.map-section {
    margin: 60px 0;
}
.map-container {
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-blue);
    color: var(--accent-white);
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-gold);
}
.footer-column p, .footer-column a {
    color: #ccc;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}
.footer-column a:hover {
    color: var(--secondary-gold);
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--accent-white);
    font-size: 20px;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--secondary-gold);
}
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
}

/* --- Responsive Styles (extend as needed) --- */
@media (max-width: 992px) {
    .contact-grid, .about-grid, .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .process-step:not(:last-child):after {
        display: none;
    }
}
@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--primary-blue);
        transition: left 0.3s;
        padding-top: 30px;
    }
    nav.active {
        left: 0;
    }
    nav ul {
        flex-direction: column;
        padding: 0 20px;
    }
    nav ul li {
        margin: 15px 0;
    }
    .mobile-menu-btn {
        display: block;
    }
    .page-hero, .hero {
        height: 250px;
    }
    .page-hero h1, .hero h1 {
        font-size: 32px;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .office-tabs {
        flex-direction: column;
    }
    .tab-btn {
        text-align: left;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    .tab-btn.active {
        border-left-color: var(--secondary-gold);
        border-bottom: none;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .values-list {
        grid-template-columns: 1fr;
    }
}

/* --- Hero Slider Styles --- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.hero-slider .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: var(--accent-white);
}
.hero-slider h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    min-height: 60px;
}
.hero-slider p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.hero-slider-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid var(--secondary-gold);
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
}
.hero-slider-dots .dot.active {
    background: var(--secondary-gold);
    border: 2px solid var(--primary-blue);
}
/* Auto Writer Effect */
.auto-writer {
    border-right: 2px solid var(--secondary-gold);
    padding-right: 4px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    min-width: 200px;
}
@media (max-width: 768px) {
    .hero-slider {
        height: 350px;
    }
    .hero-slider h1 {
        font-size: 28px;
        min-height: 40px;
    }
    .hero-slider p {
        font-size: 16px;
    }
}

/* --- FAQ Section Styles --- */
.faq-section {
    background: #f9f9f9;
    padding: 60px 0;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 24px 28px;
    margin-bottom: 28px;
    border-left: 5px solid var(--secondary-gold);
    transition: box-shadow 0.3s;
}
.faq-item:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.10);
}
.faq-item h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}
.faq-item p {
    color: #444;
    font-size: 16px;
    margin: 0;
}
.faq-item a {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width: 600px) {
    .faq-item {
        padding: 16px 12px;
    }
    .faq-item h3 {
        font-size: 17px;
    }
    .faq-item p {
        font-size: 15px;
    }
}

/* --- Section Alternation & Dividers --- */
.section-bg-alt {
    background: #f5f7fa;
}
.section-divider {
    width: 100%;
    height: 32px;
    background: linear-gradient(to right, #fff 0%, #FFD700 50%, #fff 100%);
    border: none;
    margin: 0;
}

/* --- Section Spacing --- */
section {
    padding-top: 60px;
    padding-bottom: 60px;
}
@media (max-width: 600px) {
    section {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

/* --- Fade-in Animation --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}
.fade-in.visible {
    opacity: 1;
    transform: none;
} 

/* --- Responsive Hero Section for Contact Page --- */
.page-hero {
    width: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('images/aboutimage.png') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    margin-bottom: 32px;
}
.page-hero .container {
    padding: 40px 20px;
}

/* --- Container Sizing --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

/* --- Responsive Logo --- */
.logo img {
    max-width: 100%;
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
} 

/* --- Office Hours Table Styling --- */
.hours-section {
    margin: 32px 0 0 0;
    text-align: center;
}
.hours-section h3 {
    margin-bottom: 16px;
    color: #003366;
    font-size: 1.3rem;
    font-weight: 700;
}
.hours-table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
    background: #f8fafc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
@media (min-width: 900px) {
    .hours-table {
        width: 80%;
        max-width: none;
    }
}
.hours-table tr {
    border-bottom: 1px solid #e0e7ef;
}
.hours-table tr:last-child {
    border-bottom: none;
}
.hours-table td {
    padding: 12px 18px;
    font-size: 1.05rem;
    color: #003366;
    text-align: left;
}
.hours-table td:first-child {
    font-weight: 600;
    width: 50%;
}
.hours-table td:last-child {
    text-align: right;
    color: #555;
}
@media (max-width: 600px) {
    .hours-table td {
        padding: 10px 8px;
        font-size: 0.98rem;
    }
    .hours-section {
        margin: 18px 0 0 0;
    }
} 

/* --- Trust & Experience Bar --- */
.trust-bar {
    background: var(--primary-blue) !important;
    color: var(--secondary-gold);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.10);
    margin: 32px 0 32px 0;
    width: 100vw;
    min-width: 0;
    border-radius: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    padding-left: 0;
    padding-right: 0;
}
.trust-bar-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 180px;
    margin: 12px 0;
    text-align: center;
}
.trust-bar .trust-stat, .trust-bar .trust-label {
    color: #fff;
}
.trust-bar i {
    color: var(--secondary-gold);
} 