/*
Theme Name: OceanWP_Child
Author: 
Description: Your description goes here
Version: 1.0
Template: oceanwp

This is the child theme for OceanWP theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: #3a3a3a;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left {
    flex: 1;
}

.top-bar-right {
    text-align: right;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #c9a961;
}

.main-header {
    background-color: #fff;
    padding: 15px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-section {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: auto;
}

.logo-section img {
    max-height: 60px;
    width: auto;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu>li>a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    display: block;
    transition: color 0.3s;
}

.nav-menu>li>a:hover {
    color: #c9a961;
}

.nav-menu>li.current-menu-item>a {
    color: #c9a961;
    border-bottom: 2px solid #c9a961;
    padding-bottom: 6px;
}

/* ===== DESKTOP SUBMENU : DROPDOWN + FLYOUT ===== */

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 8px;
    position: absolute;
    top: calc(100% + 14px);
    left: -12px;
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    min-width: 230px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 999;
}

.nav-menu ul::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

.nav-menu ul::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #c9a961;
    border-radius: 10px 10px 0 0;
}

.nav-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu ul li {
    position: relative;
    border: none;
}

.nav-menu ul a {
    position: relative;
    color: #4a4a4a;
    text-decoration: none;
    display: block;
    padding: 11px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-menu ul a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: #c9a961;
    border-radius: 2px;
    transform: translateY(-50%);
    transition: height 0.22s ease;
}

.nav-menu ul a:hover,
.nav-menu ul li:hover>a {
    background-color: #faf6ee;
    color: #a8873f;
    padding-left: 16px;
}

.nav-menu ul a:hover::before,
.nav-menu ul li:hover>a::before {
    height: 18px;
}

.nav-menu ul ul {
    top: -8px;
    left: calc(100% + 6px);
    transform: translateX(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

.nav-menu ul ul::before {
    top: 0;
    bottom: 0;
    left: -10px;
    right: auto;
    width: 10px;
    height: auto;
}

.nav-menu ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== CHEVRON ARROW ===== */

.nav-menu .menu-item-has-children>a {
    position: relative;
    padding-right: 16px;
}

.nav-menu .menu-item-has-children>a::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-70%) rotate(45deg);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-menu ul .menu-item-has-children>a {
    padding-right: 30px;
}

.nav-menu ul .menu-item-has-children>a::after {
    right: 14px;
    opacity: 0.45;
    transform: translateY(-50%) rotate(-45deg);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu ul li:hover>a::after {
    opacity: 1;
    transform: translateY(-50%) rotate(-45deg) translate(2px, 2px);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* ===== CITY DROPDOWN ===== */

.city-wrap {
    position: relative;
}

.city-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    background-color: #c9a961;
    color: #fff;
    border: none;
    padding: 11px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    font-family: inherit;
}

.city-btn:hover {
    background-color: #b39450;
}

.city-caret {
    width: 7px;
    height: 7px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.28s ease;
}

.city-wrap.open .city-caret {
    transform: translateY(1px) rotate(-135deg);
}

.city-panel {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: 330px;
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border-top: 3px solid #c9a961;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 999;
}

.city-wrap.open .city-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-panel-head {
    font-size: 13px;
    font-weight: 700;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 12px 10px;
}

.city-list,
.city-sublist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.city-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 12px;
    border-radius: 9px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.city-link:hover {
    background-color: #faf6ee;
}

.city-thumb {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #eee;
}

.city-name {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.city-link:hover .city-name {
    color: #a8873f;
}

.city-arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.28s ease;
    flex-shrink: 0;
}

.city-item.open .city-arrow {
    transform: translateY(1px) rotate(-135deg);
    border-color: #c9a961;
}

.city-sublist {
    display: none;
    margin: 2px 0 6px 62px;
    border-left: 2px solid #eee;
    padding-left: 12px;
}

.city-item.open .city-sublist {
    display: block;
}

.city-sublist a {
    display: block;
    padding: 9px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.city-sublist a:hover {
    background-color: #faf6ee;
    color: #a8873f;
}

/* ===== HAMBURGER ===== */

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 10px 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 1024px) {
    .header-container {
        gap: 15px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-menu>li>a {
        font-size: 14px;
    }

    .city-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-container {
        gap: 10px;
        padding: 0 15px;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        z-index: 102;
        position: relative;
        padding: 10px 8px;
        margin-left: 8px;
    }

    .logo-section {
        min-width: 120px;
        flex-shrink: 0;
    }

    .logo-section img {
        max-height: 45px;
    }

    .header-right {
        display: flex;
        margin-left: auto;
        gap: 0;
    }

    .city-btn {
        padding: 9px 16px;
        font-size: 13px;
        gap: 7px;
    }

    .city-panel {
        width: calc(100vw - 30px);
        max-width: 340px;
        right: -8px;
        max-height: 70vh;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 280px;
        background-color: #fff;
        display: block;
        flex: none;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        overflow-anchor: none;
        box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 100;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s;
    }

    .main-nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav * {
        overflow-anchor: none;
    }

    .nav-menu {
        display: block;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 15px 0 60px;
    }

    .nav-menu li {
        position: static;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu>li>a {
        color: #333;
        padding: 15px 20px;
        font-size: 14px;
    }

    .nav-menu>li>a:hover {
        background-color: #f9f9f9;
        color: #c9a961;
    }

    .nav-menu ul {
        position: static;
        display: none;
        max-height: none;
        min-width: 0;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background-color: #f9f9f9;
    }

    .nav-menu ul::before,
    .nav-menu ul::after,
    .nav-menu ul a::before {
        display: none;
    }

    .nav-menu ul ul {
        background-color: #f0f0f0;
        left: auto;
        top: auto;
    }

    .nav-menu ul ul ul {
        background-color: #e8e8e8;
        left: auto;
        top: auto;
    }

    .nav-menu li.active>ul {
        display: block;
    }

    .nav-menu li:hover>ul {
        display: none;
    }

    .nav-menu li.active:hover>ul {
        display: block;
    }

    .nav-menu ul a {
        padding: 12px 40px;
        font-size: 13px;
        color: #333;
        border-radius: 0;
    }

    .nav-menu ul a:hover,
    .nav-menu ul li:hover>a {
        background-color: #efefef;
        color: #c9a961;
        padding-left: 40px;
    }

    .nav-menu ul ul a {
        padding: 10px 60px;
        font-size: 12px;
    }

    .nav-menu ul ul ul a {
        padding: 8px 80px;
        font-size: 11px;
    }

    .nav-menu .menu-item-has-children>a {
        padding-right: 45px !important;
    }

    .nav-menu .menu-item-has-children>a::after,
    .nav-menu ul .menu-item-has-children>a::after,
    .nav-menu ul li:hover>a::after {
        right: 22px;
        width: 7px;
        height: 7px;
        opacity: 0.7;
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.3s ease;
    }

    .nav-menu li.active>a::after,
    .nav-menu ul li.active>a::after,
    .nav-menu ul li.active:hover>a::after {
        transform: translateY(-20%) rotate(-135deg);
    }
}

@media (max-width: 480px) {
    .header-container {
        gap: 8px;
        padding: 0 12px;
        position: relative;
    }

    .logo-section {
        min-width: 100px;
        flex-shrink: 1;
    }

    .logo-section img {
        max-height: 38px;
    }

    .menu-toggle {
        display: flex;
        z-index: 102;
        position: relative;
        padding: 10px 4px;
        margin-left: 6px;
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
    }

    .header-right {
        display: flex;
        margin-left: auto;
    }

    .city-btn {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .city-thumb {
        width: 42px;
        height: 42px;
    }

    .city-name {
        font-size: 14px;
    }

    .city-sublist {
        margin-left: 54px;
    }
}
/* ===== FOOTER ===== */

.site-footer {
    background-color: #1a1a1a;
    color: #b5b5b5;
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-top {
    padding: 60px 20px 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
    gap: 50px;
}

.footer-col {
    min-width: 0;
}

.footer-logo img {
    max-height: 58px;
    width: auto;
    display: block;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-logo-text {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: Georgia, serif;
}

.footer-text {
    margin: 0 0 22px;
    color: #9a9a9a;
    font-size: 14px;
}

.footer-title {
    position: relative;
    margin: 0 0 22px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: #c9a961;
    border-radius: 2px;
}

.footer-plus {
    display: none;
}

.footer-collapse {
    display: block;
}

.footer-menu,
.footer-contact,
.fcity-sub {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 11px;
}

.footer-menu a {
    position: relative;
    display: inline-block;
    color: #b5b5b5;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: #c9a961;
    transform: translateY(-50%);
    transition: width 0.25s ease;
}

.footer-menu a:hover {
    color: #c9a961;
    padding-left: 16px;
}

.footer-menu a:hover::before {
    width: 10px;
}

/* ===== FOOTER CITY ACCORDION ===== */

.footer-cities li {
    margin-bottom: 6px;
}

.fcity-row {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 30px;
    padding: 4px 0;
}

.fcity-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

.fcity-toggle:hover {
    background: rgba(201, 169, 97, 0.25);
}

.fcity-toggle i {
    width: 6px;
    height: 6px;
    border-right: 2px solid #c9a961;
    border-bottom: 2px solid #c9a961;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.28s ease;
}

.fcity.open .fcity-toggle i {
    transform: translateY(1px) rotate(-135deg);
}

.fcity-sub {
    display: none;
    margin: 4px 0 10px 14px;
    padding-left: 12px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.fcity.open .fcity-sub {
    display: block;
}

.fcity-sub li {
    margin-bottom: 8px;
}

.fcity-sub a {
    position: relative;
    display: inline-block;
    color: #8f8f8f;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.fcity-sub a:hover {
    color: #c9a961;
    padding-left: 6px;
}

/* ===== CONTACT ===== */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(201, 169, 97, 0.14);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-icon svg {
    width: 16px;
    height: 16px;
    fill: #c9a961;
}

.contact-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #c9a961;
    font-weight: 600;
}

.footer-contact a,
.contact-value {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 14px;
    word-break: break-word;
    transition: color 0.25s ease;
}

.footer-contact a:hover {
    color: #c9a961;
}

/* ===== SOCIAL ===== */

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: #cfcfcf;
    transition: fill 0.25s ease;
}

.social-link:hover {
    background: #c9a961;
    transform: translateY(-2px);
}

.social-link:hover svg {
    fill: #fff;
}

/* ===== BOTTOM BAR ===== */

.footer-bottom {
    background-color: #141414;
    padding: 20px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #8a8a8a;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.footer-legal a {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: #c9a961;
}

@media (max-width: 1024px) {
    .footer-top .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* ===== MOBILE ACCORDION ===== */

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 20px 25px;
    }

    .footer-top .footer-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-about {
        margin-bottom: 30px;
    }

    .footer-col:not(.footer-about) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .footer-col:not(.footer-about) .footer-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 18px 0;
        cursor: pointer;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        user-select: none;
    }

    .footer-col:not(.footer-about) .footer-title::after {
        display: none;
    }

    .footer-plus {
        position: relative;
        display: block;
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    .footer-plus::before,
    .footer-plus::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        background: #c9a961;
        border-radius: 2px;
        transform: translate(-50%, -50%);
        transition: transform 0.28s ease, opacity 0.28s ease;
    }

    .footer-plus::before {
        width: 15px;
        height: 2px;
    }

    .footer-plus::after {
        width: 2px;
        height: 15px;
    }

    .footer-col.open .footer-plus::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }

    .footer-col:not(.footer-about) .footer-collapse {
        display: none;
        padding: 0 0 20px;
    }

    .footer-col.open .footer-collapse {
        display: block;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-legal {
        gap: 18px;
    }
}

