/* ========================================
   Reset & Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   Container
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    /* Reduced from 20px for mobile */
}

@media (min-width: 769px) {
    .container {
        padding: 0 30px;
        /* Tablet/Desktop padding */
    }
}

/* ========================================
   Section Spacing (Whitespace)
======================================== */
.section {
    margin-bottom: 80px;
    padding: 60px 0;
}

@media (min-width: 769px) {
    .section {
        margin-bottom: 120px;
        padding: 80px 0;
    }
}

/* ========================================
   Section Header
======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #003366;
    margin-bottom: 0;
    /* Reduced from 5px */
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.section-title span.en {
    font-size: 0.85rem;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 2px;
    /* Reduced from 5px */
}

@media (min-width: 769px) {
    .section-title {
        font-size: 2.8rem;
    }

    .section-title span.en {
        font-size: 1rem;
    }
}

/* ========================================
   Header
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 0 #DC143C, 4px 4px 0 #003366;
    transition: all 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

/* Navigation */
.nav {
    display: none;
}

.nav-cta-sp {
    display: none;
    /* Hide on desktop */
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    color: #003366;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #DC143C);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

@media (min-width: 769px) {
    .nav {
        display: block;
    }
}

/* Header CTA */
.header-cta {
    display: none;
    padding: 10px 20px;
    background: linear-gradient(135deg, #DC143C, #FF6347);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.header-cta i,
.header-cta .header-cta-icon,
.header-cta .sns-icon,
.header-cta img {
    color: #fff !important;
    filter: brightness(0) invert(1) !important;
    font-size: 1.1rem;
}

.header-cta-text {
    color: #fff;
}

@media (min-width: 769px) {
    .header-cta {
        display: flex;
        align-items: center;
    }
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #003366;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-container {
        position: relative;
        justify-content: center;
        /* Center logo */
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .hamburger {
        margin-left: auto;
        /* Push to right if absolute position is not used */
        position: relative;
        z-index: 1001;
    }

    .nav {
        display: block;
        /* Fix: Override display: none */
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 80px;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list a {
        display: block;
        padding: 20px 30px;
        font-size: 1.1rem;
        color: #003366;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    /* Disable hover underline on mobile */
    .nav-list a::after {
        display: none;
    }

    /* Mobile Menu CTA Buttons */
    .nav-cta-sp {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 30px 20px;
        margin-top: 20px;
    }

    .nav-cta-sp a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 15px;
        border-radius: 50px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-btn-phone {
        background: linear-gradient(135deg, #DC143C, #FF6347);
        color: #fff !important;
        box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
    }

    .nav-btn-insta {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        color: #fff !important;
        box-shadow: 0 8px 20px rgba(204, 35, 102, 0.2);
    }

    .nav-cta-sp i {
        font-size: 1.2rem;
        color: #fff !important;
        filter: brightness(0) invert(1) !important;
        /* Ensure icons are white */
    }
}

/* ========================================
   First View (FV)
======================================== */
.fv {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 60px;
}

.fv-swiper {
    width: 100%;
    height: 100%;
}

.fv-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.fv-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   Combined Banner & CTA Section
======================================== */
.combined-banner {
    margin: -60px auto 80px;
    position: relative;
    z-index: 20;
}

.banner-cta-wrapper {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    min-height: 180px;
    max-height: 180px;
}

.banner-left {
    flex: 1.2;
    overflow: hidden;
}

.banner-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #fdfdfd;
}

.banner-cta-btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.btn-phone {
    background: linear-gradient(135deg, #DC143C, #FF6347);
    color: #fff;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
}

.banner-cta-btn i,
.banner-cta-btn .cta-icon,
.banner-cta-btn .sns-icon,
.banner-cta-btn img {
    color: #fff !important;
    filter: brightness(0) invert(1) !important;
}

.btn-insta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(204, 35, 102, 0.25);
}

@media (max-width: 768px) {
    .combined-banner {
        margin-top: -30px;
    }

    .banner-cta-wrapper {
        flex-direction: column;
        max-height: none;
    }

    .banner-left {
        height: 180px;
    }

    .banner-right {
        padding: 25px 15px;
        /* Reduced padding */
    }
}

/* ========================================
   Third View (TV) - Introduction
======================================== */
.tv-content {
    display: grid;
    gap: 40px;
}

@media (min-width: 769px) {
    .tv-content {
        grid-template-columns: 40% 60%;
        gap: 60px;
        align-items: center;
    }
}

.tv-image img {
    border-radius: 4px 100px 4px 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    font-size: 1.1rem;
    padding: 15px 20px 15px 55px;
    /* Added left padding for icon */
    background: linear-gradient(135deg, #FFF9E6, #FFE4E1);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.feature-list li::before {
    content: '\f00c';
    /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-color: #fff;
    border: 2px solid #FFD700;
    border-radius: 4px;
    color: #DC143C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.feature-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* ========================================
   About Section (Broken Grid)
======================================== */
.about-content {
    display: grid;
    gap: 40px;
}

@media (min-width: 769px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: stretch;
    }
}

.about-text.overlap-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px 0 0 20px;
}

.about-image-wrapper {
    height: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 20px 20px 0;
}

@media (max-width: 768px) {

    .about-text.overlap-box,
    .about-image-wrapper img {
        border-radius: 20px;
    }

    .about-text.overlap-box {
        padding: 30px 15px;
        /* Reduced padding */
    }
}

.overlap-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.about-subtitle {
    font-size: 1.8rem;
    font-weight: 900;
    color: #DC143C;
    margin-bottom: 20px;
    line-height: 1.5;
}

.about-description {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

/* ========================================
   Gallery Section
======================================== */
.gallery-swiper {
    position: relative;
    padding: 0 50px;
}

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev,
.swiper-button-next {
    color: #DC143C;
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #FFD700;
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========================================
   Service Section
======================================== */
.service-grid {
    display: grid;
    gap: 60px;
}

.service-item {
    display: grid;
    gap: 30px;
}

@media (min-width: 769px) {
    .service-item {
        grid-template-columns: 45% 55%;
        align-items: center;
    }

    .service-item:nth-child(even) {
        grid-template-columns: 55% 45%;
    }

    .service-item:nth-child(even) .service-image {
        order: 2;
    }

    .service-item:nth-child(even) .service-content {
        order: 1;
    }
}

.service-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    max-width: 85%;
    /* Slightly reduced size */
    margin: 0 auto;
    display: block;
}

.service-item:hover .service-image img {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 0 #DC143C;
    margin-bottom: 10px;
}

.service-title-sub {
    font-size: 1.5rem;
    font-weight: 900;
    color: #003366;
    margin-bottom: 15px;
}

.service-text {
    font-size: 1.05rem;
    line-height: 2;
    color: #555;
}

/* ========================================
   Menu Section (New Table Layout)
======================================== */
.menu {
    position: relative;
    background-color: #f9f9f9;
    padding: 80px 0;
}

/* ========================================
   Menu Section (2-Column Alternating)
======================================== */
.menu-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 60px;
    gap: 0;
}

.menu-row:nth-child(even) {
    flex-direction: row-reverse;
}

.menu-image-col,
.menu-table-col {
    flex: 1;
    min-width: 300px;
    height: auto;
}

.menu-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-table-col {
    background: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ensure round corners for rows */
.menu-row:first-of-type .menu-image-col img {
    border-radius: 20px 0 0 0;
}

.menu-row:first-of-type .menu-table-col {
    border-radius: 0 20px 0 0;
}

.menu-row:last-of-type .menu-table-col {
    border-radius: 0 0 0 20px;
}

.menu-row:last-of-type .menu-image-col img {
    border-radius: 0 0 20px 0;
}

@media (max-width: 768px) {

    .menu-row,
    .menu-row:nth-child(even) {
        flex-direction: column;
    }

    .menu-image-col {
        height: 250px;
    }

    .menu-image-col img,
    .menu-table-col {
        border-radius: 0 !important;
    }

    .menu-table-col {
        padding: 30px 15px;
        /* Reduced from 40px 20px */
    }
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table tr {
    border-bottom: 1px dashed #ddd;
}

.menu-table tr:last-child {
    border-bottom: none;
}

.menu-table td {
    padding: 15px 10px;
}

.menu-item-name {
    font-weight: 700;
    color: #333;
    font-size: 1.1rem;
}

.menu-item-price {
    text-align: right;
    font-weight: 900;
    color: #DC143C;
    font-size: 1.2rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .menu-category-container {
        padding: 25px 15px;
    }

    .menu-item-name {
        font-size: 1rem;
    }

    .menu-item-price {
        font-size: 1.1rem;
    }
}

/* ========================================
   Price Section
======================================== */
.price-content {
    max-width: 900px;
    margin: 0 auto;
}

.price-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.price-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.price-details {
    padding: 40px;
}

.price-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #003366;
    margin-bottom: 15px;
}

.price-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #FFF9E6, #FFE4E1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.price-portion {
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 900;
    color: #DC143C;
}

/* ========================================
   Voice Section
======================================== */
.voice-intro {
    text-align: center;
    margin-bottom: 50px;
}

.voice-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.voice-link {
    display: inline-block;
    color: #DC143C;
    font-weight: 700;
    border-bottom: 2px solid #DC143C;
    transition: all 0.3s ease;
}

.voice-link:hover {
    color: #003366;
    border-bottom-color: #003366;
}

.voice-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 769px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

.voice-item {
    background: #fff;
    padding: 25px 15px;
    /* Reduced from 30px */
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 15px;
    /* Slightly reduced gap */
    align-items: flex-start;
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .voice-item {
        padding: 30px;
        gap: 20px;
    }
}

.voice-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.voice-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.voice-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* ========================================
   Contact / Access Section
======================================== */
.contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    /* Match heights */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 25px 15px;
        /* Reduced from 30px 20px */
    }
}

.access-table {
    width: 100%;
    border-collapse: collapse;
}

.access-table th,
.access-table td {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: top;
}

.access-table th {
    width: 100px;
    color: #003366;
    font-weight: 700;
}

.access-table tr:last-child th,
.access-table tr:last-child td {
    border-bottom: none;
}

.info-list {
    display: grid;
    gap: 20px;
}

.info-list dt {
    font-weight: 700;
    color: #003366;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-list dd {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

/* SNS Centering */
.sns-center-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.sns-btn {
    display: inline-flex;
    /* Not full width */
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #E1306C, #F56040);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sns-btn i,
.sns-btn .sns-icon,
.sns-btn img {
    color: #fff !important;
    filter: brightness(0) invert(1) !important;
    font-size: 1.2rem;
}

.sns-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
}

.info-list dd a {
    color: #DC143C;
    font-weight: 700;
}

.info-list dd a:hover {
    text-decoration: underline;
}

.contact-map {
    display: flex;
    width: 100%;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    /* Fill parent flex box */
    border: none;
    display: block;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: linear-gradient(135deg, #003366, #001a33);
    color: #fff;
    padding: 40px 0 20px;
    /* Reduced padding on mobile */
}

@media (min-width: 769px) {
    .footer {
        padding: 60px 0 30px;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 2px 2px 0 #DC143C;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-nav a {
    color: #fff;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: #FFD700;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Fixed CTA (SP only)
======================================== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    z-index: 999;
    display: flex;
    justify-content: center;
}

@media (min-width: 769px) {
    .fixed-cta {
        display: none;
    }
}

.fixed-cta-btn {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: row;
    /* Match navbar horizontal layout */
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    /* Match navbar pill shape */
    font-weight: 700;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fixed-cta-phone {
    background: linear-gradient(135deg, #DC143C, #FF6347);
    color: #fff !important;
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.fixed-cta-phone:active {
    transform: scale(0.98);
}

.fixed-cta-icon,
.fixed-cta-btn i,
.fixed-cta-btn img {
    font-size: 1.2rem;
    color: #fff !important;
    filter: brightness(0) invert(1) !important;
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #003366;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

@media (min-width: 769px) {
    .back-to-top {
        bottom: 30px;
        right: 30px;
    }
}

/* ========================================
   Utility Classes
======================================== */
.soft-shadow {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.asymmetric-img {
    border-radius: 4px 100px 4px 4px;
}

.two-column {
    display: grid;
    gap: 40px;
}

@media (min-width: 769px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* ========================================
   Right-Click Prevention
======================================== */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}