/* ==========================================================================
   MBWPT Theme - Page-Specific Styles
   
   This file contains styles that are NOT in input.css (Tailwind source).
   For component styles, use input.css instead.
   
   Loading order: style.css → tailwind.css → main.css → dropdown-overlay.css
   ========================================================================== */

/* Contact Map iframes */
iframe {
    max-width: 100%;
}

/* ========================================================================
   Carousel Pagination Dots
   ======================================================================== */
.carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d5db;
    opacity: 1;
    margin: 0 6px !important;
}

.carousel-pagination .swiper-pagination-bullet-active {
    background: #000000;
}

/* ========================================================================
   Page Section Styles
   ======================================================================== */

/* Page Header Section */
.page-header-section {
    position: relative;
}

/* Content Image Section */
.content-image-section .prose p:first-child {
    margin-top: 0;
}

.content-image-section .prose p:last-child {
    margin-bottom: 0;
}

/* Feature Cards Grid */
.feature-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Vision Mission Section */
.vision-mission-section .prose p:first-child {
    margin-top: 0;
}

/* Organization Chart */
.organization-chart-section .chart-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.organization-chart-section .chart-image img {
    min-width: 320px;
    max-width: 600px;
}

@media (min-width: 768px) {
    .organization-chart-section .chart-image img {
        min-width: 800px;
        max-width: none;
    }
}

/* Client List */
.client-list-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta-section .contact-form input:focus,
.contact-cta-section .contact-form textarea:focus,
.contact-cta-section .contact-form select:focus {
    border-color: #0038a5;
    box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

/* Service Card Hover */
.service-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

/* ========================================================================
   Hero Slideshow
   ======================================================================== */
.hero-slideshow {
    position: relative;
}

.hero-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

@media (max-width: 767px) {
    :root {
        --text-xs: 0.875rem;
        --text-xs--line-height: 1.4;
        --text-sm: 0.9375rem;
        --text-sm--line-height: 1.5;
    }
}
