/*
 * Theme Name: MATSUMOTOMARU
 * main.css for styling the theme
 */

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
    --color-primary: #e66687;
    /* The pink color */
    --color-secondary: #fce8ee;
    /* Light pink background */
    --color-text: #333333;
    --color-white: #ffffff;
    --font-en: 'Outfit', sans-serif;
    --font-jp: 'Zen Maru Gothic', sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */
body {
    margin: 0;
    padding: 0;
    font-family: var(--font-en), var(--font-jp);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.container-narrow {
    max-width: 900px;
}

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

.text-white {
    color: var(--color-white) !important;
}

.pattern-bg {
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 15px 15px;
}

/* ==========================================================================
   Typography
   ========================================================================== */
.section-title {
    font-family: var(--font-jp);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-sub {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 100%;
    margin: 0;
    padding: 0 0 0 40px;
    height: 80px;
}

.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-branding img.custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

.main-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 40px;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-navigation li {
    list-style: none;
}

.main-navigation a {
    font-weight: 500;
    font-size: 15px;
}

.header-booking {
    display: flex;
    align-items: stretch;
}

.btn-booking {
    font-family: var(--font-jp);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0px 40px;
    border-radius: 0;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    height: 100%;
    transition: opacity 0.3s;
}

.btn-booking:hover {
    background-color: #d15574;
    color: var(--color-white);
}

.icon-fish {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    margin: 5px 0;
    transition: 0.3s;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.section-hero {
    height: 100vh;
    background-image: url('../images/hero-bg.jpg');
    /* Need to add a placeholder or let user add */
    background-size: cover;
    background-position: center;
    background-color: #333;
    /* Fallback */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 80px;
    /* Offset for header */
}

/* Placeholder for missing hero image */
.section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    color: var(--color-white);
    font-size: 48px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.section-about {
    padding: 100px 0;
    position: relative;
    background-color: var(--color-white);
    background-image: radial-gradient(#e0e0e0 2px, transparent 2px);
    background-size: 20px 20px;
}

.about-inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    flex: 1;
}

.about-header .section-title {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 40px;
}

.about-catchphrase {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.6;
    margin-top: 20px;
}

.about-catchphrase span {
    color: var(--color-primary);
    display: inline-block;
    border-bottom: 4px solid var(--color-primary);
    padding-bottom: 2px;
    margin-bottom: 10px;
}

.about-text {
    flex: 1.2;
}

.about-text p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-note {
    position: relative;
    font-size: 15px;
    line-height: 2;
    margin-top: 30px;
}

.octopus-icon {
    position: absolute;
    right: 20%;
    bottom: -15px;
    width: 70px;
}

@media (max-width: 768px) {
    .octopus-icon {
        bottom: -55px;
    }
}

.about-btn-wrap {
    margin-top: 40px;
    text-align: center;
    padding-bottom: 20px;
}

.btn-about-reserve {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, opacity 0.3s ease;
}

.btn-about-reserve:hover {
    background-color: #d15574;
    color: var(--color-white);
    opacity: 1;
}

.btn-about-reserve .btn-fish-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: inline-block;
}


/* ==========================================================================
   Services Section (Card Section)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    background-color: var(--color-secondary);
    /* Fallback */
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(230, 102, 135, 0.6);
    /* Pink overlay */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 0.6;
}

.service-title {
    font-family: var(--font-jp);
    color: var(--color-white);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.section-pricing {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.section-pricing .title-sub {
    color: rgba(255, 255, 255, 0.8);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.price-card {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.price-icon img {
    width: 60px;
    margin: 0;
}

.price-details {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--color-text);
}

.price-amount {
    font-family: var(--font-en);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.price-extras {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.extra-item {
    flex: 1;
}

.extra-divider {
    width: 1px;
    height: 80px;
    background-color: #f1b3c5;
}

@media (max-width: 768px) {
    .extra-divider {
        width: 100px;
        height: 2px;
    }
}

.extra-title {
    font-family: var(--font-jp);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.extra-desc {
    font-size: 16px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.extra-desc .price-amount {
    font-size: 32px;
}

.extra-note {
    font-size: 12px;
    color: #666;
}

/* ==========================================================================
   Schedule Section
   ========================================================================== */
.section-schedule {
    padding: 0px 0;
}

.schedule-timeline {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.schedule-item {
    text-align: center;
    flex: 1;
}

.time-badge {
    font-family: var(--font-en);
    background-color: var(--color-primary);
    color: var(--color-white);
    display: inline-block;
    padding: 5px 30px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.time-badge::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: var(--color-primary) transparent transparent transparent;
}

.schedule-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.schedule-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.schedule-img {
    border-radius: 10px;
    margin: 0 auto;
    background-color: #eee;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ==========================================================================
   Charter Section
   ========================================================================== */
.section-charter {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.charter-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.charter-info {
    flex: 1;
    text-align: center;
}

.charter-info .section-title {
    align-items: flex-start;
    text-align: left;
    margin-bottom: 10px;
}

.charter-info .title-sub {
    color: rgba(255, 255, 255, 0.8);
}

.charter-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
}

.charter-boat-icon {
    text-align: center;
    margin-bottom: 40px;
}

.charter-boat-icon img {
    width: 140px;
    margin: 0 auto;
}

.charter-contact {
    text-align: left;
}

.charter-contact .contact-label {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
}

.charter-contact .tel {
    font-family: var(--font-en);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.charter-contact .tel span {
    font-size: 18px;
}

.charter-details {
    flex: 1.5;
    padding-left: 20px;
}

.charter-price-boxes {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.charter-price-box {
    background-color: var(--color-white);
    border-radius: 10px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .charter-price-box {
        flex-direction: column;
    }
}

.charter-price-box .badge-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.charter-price-box .capacity {
    font-size: 18px;
    color: var(--color-primary);
    font-weight: 500;
    opacity: 0.8;
}

.charter-price-box .amount {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
}

.charter-notes {
    font-size: 14px;
    text-align: left;
    line-height: 1.8;
}

.charter-notes p {
    margin: 0 0 10px 0;
}

/* ==========================================================================
   Instagram Section
   ========================================================================== */
.section-instagram {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.instagram-placeholder {
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 20px;
}

/* ==========================================================================
   Access Section
   ========================================================================== */
.section-access {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.access-inner {
    display: flex;
    background-color: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    gap: 40px;
}

.access-info {
    flex: 1;
}

.access-title {
    font-family: var(--font-jp);
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.access-block {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.8;
}

.access-block:last-child {
    margin-bottom: 0;
}

.access-block p {
    margin: 0;
}

.access-label {
    font-weight: 700;
    margin-bottom: 5px !important;
}

.access-weather {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-weather .weather-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-height: 400px;
    object-fit: contain;
    background-color: white;
    /* fallback for weather area if needed */
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    text-align: left;
    background-color: var(--color-white);
    border-top: 1px solid #eee;
}

.footer-inner {
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    text-align: left;
}

.footer-logo img {
    max-height: 50px;
}

.footer-tel {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.footer-navigation ul {
    display: flex;
    gap: 30px;
}

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

.footer-navigation a {
    font-size: 15px;
    font-weight: 500;
}

.footer-copy {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px;
    font-size: 12px;
    text-align: center;
}

/* ==========================================================================
   Animations Helper
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 1024px) {

    .about-inner,
    .charter-inner,
    .access-inner {
        flex-direction: column;
        gap: 30px;
    }

    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header-inner {
        padding: 0 20px;
        height: 70px;
    }

    .site-branding img.custom-logo {
        max-height: 40px;
    }

    .main-navigation {
        margin-right: 0;
    }

    .main-navigation ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--color-white);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
    }

    .main-navigation.toggled ul {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .menu-toggle {
        display: block;
    }

    .header-booking {
        display: none;
    }

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

    .footer-logo {
        text-align: center;
    }

    .footer-right {
        align-items: center;
    }

    .footer-navigation ul {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .price-cards {
        grid-template-columns: 1fr;
    }

    .price-extras {
        flex-direction: column;
        gap: 30px;
    }

    .schedule-timeline {
        flex-direction: column;
    }

    .hero-title {
        font-size: 32px;
    }
}

.footer-booking .btn-booking {
    padding: 10px 40px;
}

/* ==========================================================================
   Octopus Fishing Page
   ========================================================================== */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #333;
    position: relative;
    margin-top: 80px;
}

.tako-content {
    padding: 60px 20px;
}

.tako-section {
    margin-bottom: 80px;
}

.tako-sec-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    padding: 20px 0;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.tako-sec-title::before,
.tako-sec-title::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 10'%3E%3Cpath d='M0,5 Q5,0 10,5 T20,5' fill='none' stroke='%23e66687' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 20px 10px;
    background-repeat: repeat-x;
}

.tako-sec-title::before {
    top: 0;
}

.tako-sec-title::after {
    bottom: 0;
}

.tako-icon {
    width: 30px;
    height: auto;
}

.tako-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tako-feature {
    display: flex;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 20px;
}

.tako-feature-text {
    flex: 1;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tako-feature-text h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.tako-feature-text p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.tako-feature-img {
    flex: 1;
    background-color: #eee;
    min-height: 200px;
}

@media (max-width: 768px) {
    .tako-feature {
        flex-direction: column;
        gap: 20px;
    }

    .tako-feature-text h3 {
        text-align: center;
    }

    .tako-feature-img {
        min-height: 250px;
    }
}

.tako-cta {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 60px 20px;
    margin-top: 40px;
}

.tako-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(230, 102, 135, 0.85);
    /* Pink overlay */
}

.tako-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.tako-cta-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tako-cta-card h2 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tako-cta-desc {
    font-size: 14px;
    margin-bottom: 25px;
    color: var(--color-text);
}

.tako-cta-card .btn-furusato {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: opacity 0.3s;
}

.tako-cta-card .btn-furusato img {
    width: 20px;
    filter: brightness(0) invert(1);
    /* Makes the fish white */
}

.tako-cta-card .btn-furusato:hover {
    opacity: 0.8;
}

.cta-contact-text {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tako-cta-card .cta-tel {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tako-cta-card .cta-tel span {
    font-size: 16px;
    color: var(--color-primary);
}

/* ==========================================================================
   Seaweed Page
   ========================================================================== */
.seaweed-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.seaweed-feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.seaweed-feature-img {
    flex: 0 0 55%;
    background-color: #eee;
    height: 280px;
    overflow: hidden;
}

.seaweed-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seaweed-feature-text {
    flex: 1;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seaweed-feature-text h3 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.seaweed-feature-text p {
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 580px) {
    .seaweed-feature {
        flex-direction: column;
        gap: 20px;
    }

    .seaweed-feature-img {
        flex: none;
        width: 100%;
        height: 250px;
    }
}

/* ==========================================================================
   FAQ Page
   ========================================================================== */
.faq-content {
    padding-bottom: 80px;
}

.faq-page-title {
    font-family: var(--font-jp);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin: 50px 0 40px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid transparent;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    transition: background-color 0.2s ease;
    margin-bottom: 0;
}

.faq-question:hover {
    background-color: #d15574;
}

.faq-q-label {
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
}

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}


.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: var(--color-white);
}

.faq-answer p {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }

    .faq-page-title {
        font-size: 22px;
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Contact Card */
.contact-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 35px 40px;
    text-align: center;
    margin-bottom: 40px;
}

.contact-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 25px;
}

.contact-card-title span {
    font-size: 16px;
    font-weight: 400;
}

.contact-buttons {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.contact-btn-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-btn {
    display: block;
    width: 100%;
    padding: 14px 10px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-btn:hover {
    opacity: 0.85;
}

.contact-btn-pink {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.contact-tel {
    font-size: 16px;
    color: var(--color-primary);
    margin: 0;
}

.contact-tel strong {
    font-size: 24px;
    font-weight: 700;
}

.contact-holiday-bar {
    background-color: #e8e8e8;
    color: var(--color-text);
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 2px;
    margin-top: 5px;
}

/* Notes */
.contact-notes {
    padding: 0 10px;
    margin-bottom: 10px;
}

.contact-notes p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Info Section */
.contact-info-section {
    background-color: var(--color-primary);
    padding: 60px 20px;
}

.contact-info-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    padding: 40px;
}

.contact-info-left {
    flex: 1;
}

.contact-info-right {
    flex: 1.2;
}

.contact-info-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.contact-info-details {
    margin-bottom: 18px;
}

.contact-info-details p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-info-label {
    font-weight: 700;
    margin-bottom: 4px !important;
}

.contact-weather-note {
    font-size: 12px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 25px 20px;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-card-title {
        font-size: 15px;
    }

    .contact-info-inner {
        flex-direction: column;
        padding: 25px 20px;
    }
}