/* ===================================
   Find Us Across Sydney Metro Section
   Professional Responsive Design
   Matches existing theme colors and styling
   =================================== */

/* Section Container */
.find-us-metro-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.find-us-metro-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.find-us-metro-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 74, 148, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.find-us-metro-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.find-us-metro-header {
    text-align: center;
    margin-bottom: 60px;
}

.find-us-metro-title {
    font-size: 42px;
    font-weight: 700;
    color: #38b6ff;
    margin-bottom: 15px;
    font-family: var(--cleanin-font-two);
    line-height: 1.2;
}

.find-us-metro-subtitle {
    font-size: 18px;
    color: #606060;
    font-family: var(--cleanin-font);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Content Grid */
.find-us-metro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Office Info Card */
.find-us-office-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.find-us-office-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Office Card Header */
.office-card-header {
    background: linear-gradient(135deg, #004a94 0%, #38b6ff 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.office-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-card-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.office-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--cleanin-font-two);
    line-height: 1.3;
    margin: 0;
}

/* Office Card Body */
.office-card-body {
    padding: 35px 30px;
}

.office-info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.office-info-item:first-child {
    padding-top: 0;
}

.office-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.office-info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #38b6ff 0%, #004a94 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-info-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.office-info-content {
    flex: 1;
}

.office-info-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #38b6ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.office-info-text {
    font-size: 16px;
    color: #606060;
    line-height: 1.6;
    margin: 0;
}

.office-info-text a {
    color: #004a94;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.office-info-text a:hover {
    color: #38b6ff;
    text-decoration: underline;
}

/* Office Hours Styling */
.office-hours-item {
    padding: 20px 0;
}

.office-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.office-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.office-hours-row:hover {
    background: #e8f4ff;
}

.office-hours-day {
    font-weight: 600;
    color: #004a94;
    font-size: 15px;
}

.office-hours-time {
    color: #606060;
    font-size: 15px;
}

/* Office Card Footer */
.office-card-footer {
    padding: 0 30px 30px;
}

.find-us-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #38b6ff 0%, #004a94 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(56, 182, 255, 0.3);
    font-family: var(--cleanin-font-two);
}

.find-us-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(56, 182, 255, 0.5);
    color: #ffffff;
}

.find-us-cta-button:active {
    transform: translateY(0);
}

.find-us-cta-button svg {
    width: 22px;
    height: 22px;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

/* Map Container */
.find-us-map-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.find-us-map-wrapper {
    position: relative;
    flex: 1;
    min-height: 550px;
}

.find-us-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Map Overlay Badge */
.map-overlay-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #38b6ff 0%, #004a94 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #004a94;
    font-family: var(--cleanin-font-two);
    margin-bottom: 2px;
}

.badge-text span {
    font-size: 14px;
    color: #606060;
}

/* View Larger Map Link */
.view-larger-map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    background: #f8f9fa;
    color: #004a94;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-top: 1px solid #e5e5e5;
}

.view-larger-map-link:hover {
    background: #38b6ff;
    color: #ffffff;
}

.view-larger-map-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.view-larger-map-link:hover svg {
    transform: translate(3px, -3px);
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Tablets and Small Desktops (1024px) */
@media (max-width: 1024px) {
    .find-us-metro-title {
        font-size: 36px;
    }

    .find-us-metro-subtitle {
        font-size: 16px;
    }

    .find-us-metro-content {
        gap: 30px;
    }

    .office-card-title {
        font-size: 22px;
    }

    .find-us-map-wrapper {
        min-height: 500px;
    }

    .find-us-map-container {
        min-height: 550px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    .find-us-metro-section {
        padding: 60px 0;
    }

    .find-us-metro-header {
        margin-bottom: 40px;
    }

    .find-us-metro-title {
        font-size: 32px;
    }

    .find-us-metro-subtitle {
        font-size: 16px;
    }

    .find-us-metro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .office-card-header {
        padding: 25px;
        flex-direction: column;
        text-align: center;
    }

    .office-card-icon {
        width: 55px;
        height: 55px;
    }

    .office-card-title {
        font-size: 20px;
    }

    .office-card-body {
        padding: 30px 25px;
    }

    .office-info-item {
        flex-direction: column;
        gap: 12px;
    }

    .office-info-icon {
        width: 40px;
        height: 40px;
    }

    .office-info-icon svg {
        width: 22px;
        height: 22px;
    }

    .find-us-map-container {
        min-height: 450px;
    }

    .find-us-map-wrapper {
        min-height: 400px;
    }

    .map-overlay-badge {
        padding: 15px 20px;
        gap: 12px;
    }

    .badge-icon {
        width: 40px;
        height: 40px;
    }

    .badge-icon svg {
        width: 22px;
        height: 22px;
    }

    .badge-text strong {
        font-size: 15px;
    }

    .badge-text span {
        font-size: 13px;
    }
}

/* Mobile Devices (576px) */
@media (max-width: 576px) {
    .find-us-metro-section {
        padding: 50px 0;
    }

    .find-us-metro-container {
        padding: 0 15px;
    }

    .find-us-metro-header {
        margin-bottom: 35px;
    }

    .find-us-metro-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .find-us-metro-subtitle {
        font-size: 15px;
    }

    .find-us-metro-content {
        gap: 25px;
    }

    .office-card-header {
        padding: 20px;
    }

    .office-card-icon {
        width: 50px;
        height: 50px;
    }

    .office-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .office-card-title {
        font-size: 18px;
    }

    .office-card-body {
        padding: 25px 20px;
    }

    .office-info-item {
        padding: 15px 0;
    }

    .office-info-label {
        font-size: 12px;
    }

    .office-info-text {
        font-size: 15px;
    }

    .office-hours-row {
        padding: 10px 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .office-hours-day,
    .office-hours-time {
        font-size: 14px;
    }

    .office-card-footer {
        padding: 0 20px 25px;
    }

    .find-us-cta-button {
        padding: 16px 25px;
        font-size: 16px;
    }

    .find-us-cta-button svg {
        width: 20px;
        height: 20px;
    }

    .find-us-map-container {
        min-height: 400px;
    }

    .find-us-map-wrapper {
        min-height: 350px;
    }

    .map-overlay-badge {
        top: 15px;
        left: 15px;
        padding: 12px 16px;
        gap: 10px;
    }

    .badge-icon {
        width: 36px;
        height: 36px;
    }

    .badge-icon svg {
        width: 20px;
        height: 20px;
    }

    .badge-text strong {
        font-size: 14px;
    }

    .badge-text span {
        font-size: 12px;
    }

    .view-larger-map-link {
        padding: 12px;
        font-size: 13px;
    }

    .view-larger-map-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Extra Small Mobile (400px) */
@media (max-width: 400px) {
    .find-us-metro-title {
        font-size: 24px;
    }

    .find-us-metro-subtitle {
        font-size: 14px;
    }

    .office-card-title {
        font-size: 16px;
    }

    .office-info-text {
        font-size: 14px;
    }

    .find-us-cta-button {
        font-size: 15px;
        padding: 14px 20px;
    }

    .map-overlay-badge {
        position: static;
        margin: 15px;
    }
}

/* Print Styles */
@media print {
    .find-us-metro-section::before,
    .find-us-metro-section::after {
        display: none;
    }

    .find-us-office-card,
    .find-us-map-container {
        box-shadow: none;
        border: 1px solid #e5e5e5;
    }

    .find-us-cta-button {
        display: none;
    }

    .find-us-map-iframe {
        display: none;
    }

    .map-overlay-badge {
        position: static;
        margin: 20px;
    }
}
