/* Base Reset & Variables */
:root {
    --primary-text: #333333;
    --secondary-text: #666666;
    --bg-color: #ffffff;
    --bg-light: #f9f9f9;

    /* Logo Brand Colors */
    --brand-yellow: #fff100;
    --brand-green: #1f8dc4; /* Darker blue */
    --brand-blue: #2ea6e3;
    --brand-pink: #f5a623; /* Orange for highlights */

    /* Accent & Utility */
    --accent-color: #2ea6e3;
    /* Main CTA color */
    --nav-height: 80px;
    --font-heading: 'Zen Kaku Gothic New', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary-text);
    line-height: 1.8;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

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

a:hover {
    opacity: 0.7;
}

ul {
    list-style: none;
}

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

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

.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.br-sp {
    display: none;
}

.br-pc {
    display: block;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--brand-blue);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    font-family: var(--font-heading);
}

/* Button Styles */
.btn-hero {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: var(--primary-text);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-hero i {
    margin-left: 10px;
    color: var(--brand-blue);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    border: 1px solid var(--primary-text);
    padding: 12px 36px;
    border-radius: 0;
    /* Square for stylish look */
    font-size: 14px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
    background: transparent;
    transition: color 0.3s;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-text);
    z-index: -1;
    transition: width 0.3s ease;
}

.btn-secondary:hover {
    color: #fff;
    opacity: 1;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--brand-green);
    color: white;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-contact:hover {
    background-color: #176a94;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo img {
    height: 48px;
    /* Adjust according to actual logo */
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item a {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-text);
    position: relative;
}

.nav-item a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--brand-blue);
    transition: width 0.3s;
}

.nav-item a:not(.btn-contact):hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align content */
    padding-left: 10%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Add a stylish gradient overlay that fades from white to transparent */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    /* Increased width */
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 40%,
            rgba(255, 255, 255, 0.8) 60%,
            rgba(255, 255, 255, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    /* Increased from 600px */
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--primary-text);
    margin-bottom: 40px;
}

.hero-title-main {
    display: block;
    font-size: 56px;
    /* Slightly reduced from 64px to prevent overflow */
    font-weight: 700;
    line-height: 1.3;
    /* Increased line-height for better readability */
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    /* Adjusted letter spacing */
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Add a subtle drop shadow to help readability on mixed backgrounds if needed, 
       but text-fill-color: transparent makes text-shadow tricky. 
       Relying on stronger white background instead. */
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.5));
}

.hero-title-sub {
    display: block;
    font-size: 20px;
    font-weight: 500;
    /* Increased weight */
    color: #333;
    /* Darker than secondary-text */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    /* Glow to separate from background */
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Concept Section */
.concept {
    background-color: var(--bg-color);
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 340px;
    /* Give text more space, fix image width */
    gap: 40px;
    /* Reduce gap slightly to save width */
    align-items: center;
}

.concept-text p {
    margin-bottom: 24px;
    font-size: 16px;
    color: var(--secondary-text);
}

.concept-lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 2.4;
    /* Increased from 1.8 */
    color: var(--primary-text) !important;
}

.highlight {
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 1.2em;
    border-bottom: 2px solid rgba(245, 166, 35, 0.3);
}

.btn-inline-partner {
    display: inline-block;
    background-color: #fff;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px 8px;
    font-size: 0.95em;
    vertical-align: middle;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-inline-partner:hover {
    background-color: var(--brand-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 166, 227, 0.25);
}

.btn-inline-partner i {
    font-size: 0.85em;
    margin-left: 6px;
}

.sp-break {
    display: none;
}

/* Large Logo Mark Design */
.concept-image-inner {
    display: grid;
    /* Ratio based on the logo image provided: left cols narrower, right cols wider */
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: 1fr 1.2fr;
    width: 320px;
    /* Increased size slightly */
    height: 320px;
    margin: 0 auto;
    gap: 15px;
    /* Larger gap for the white line to move through */
    transform: none;
    /* Remove rotation */
    position: relative;
    /* Add a container for the moving line */
    overflow: hidden;
    padding: 10px;
    /* Padding for the line to move around */
}

/* Moving White Line Animation Container */
.concept-image-inner::before {
    display: none;
}

/* Vertical Moving White Line Removed */
.concept-image-inner::after {
    display: none;
}

.concept-overlay-text {
    display: none;
    /* Remove text as requested/implied by "logo mark" focus */
}

.decorative-box {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    /* Sharper corners like the actual logo */
    opacity: 1;
    /* Solid colors */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.decorative-box:hover {
    transform: scale(1.02);
}

.box-yellow {
    background-color: var(--brand-yellow);
    grid-column: 1;
    grid-row: 1;
}

.box-green {
    background-color: var(--brand-green);
    grid-column: 2;
    grid-row: 1;
}

.box-blue {
    background-color: var(--brand-blue);
    grid-column: 1;
    grid-row: 2;
}

.box-pink {
    background-color: var(--brand-pink);
    grid-column: 2;
    grid-row: 2;
}

@keyframes moveLight {
    0% {
        transform: translate(-30%, -30%);
    }

    25% {
        transform: translate(30%, -10%);
    }

    50% {
        transform: translate(10%, 30%);
    }

    75% {
        transform: translate(-30%, 10%);
    }

    100% {
        transform: translate(-30%, -30%);
    }
}





/* Service Section */
.service {
    background-color: var(--bg-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: var(--brand-blue);
    margin-bottom: 25px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-text);
}

.service-card p {
    font-size: 14px;
    color: var(--secondary-text);
}

.service-area {
    margin-top: 50px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-area h4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-area h4 i {
    color: var(--brand-blue);
    margin-right: 10px;
    font-size: 20px;
}

.service-area p {
    font-size: 15px;
    color: var(--secondary-text);
}


/* Listings Section */
.listings {
    background-color: var(--bg-color);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.listing-card {
    cursor: pointer;
}

.listing-img-box {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #eee;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.listing-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    background-color: #f0f0f0;
    transition: transform 0.4s;
}

.listing-card:hover .listing-placeholder {
    transform: scale(1.05);
}

.listing-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--brand-pink);
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
}

.listing-name {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.listing-price {
    font-size: 20px;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.listing-desc {
    font-size: 14px;
    color: var(--secondary-text);
    margin-bottom: 15px;
}

.listing-features {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
}

.listing-features li {
    display: flex;
    align-items: center;
}

.listing-features li::before {
    content: '•';
    margin-right: 5px;
    color: var(--brand-green);
}

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

/* Contact Section */
.contact {
    padding-bottom: 0;
}

.contact-box {
    display: flex;
    background-color: var(--bg-light);
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
}

.contact-left {
    flex: 1;
    padding: 60px;
    background-color: #fff;
}

.contact-right {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1f8dc4 100%);
    color: white;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05);
}

.contact-info {
    margin-top: 40px;
}

.contact-info .tel {
    font-size: 32px;
    color: var(--brand-blue);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.contact-info .hours {
    color: var(--secondary-text);
    font-size: 14px;
}

/* Contact Form override */
.form-group {
    margin-bottom: 20px;
}

.contact-right label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    opacity: 0.9;
}

.contact-right input,
.contact-right textarea,
.contact-right select {
    width: 100%;
    padding: 14px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-right select option {
    background-color: #fff;
    color: #333;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
    color: #aaa;
}

.contact-right input:focus,
.contact-right textarea:focus,
.contact-right select:focus {
    outline: none;
    background: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #fff100, #ffea00);
    color: #333;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(255, 241, 0, 0.4);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 241, 0, 0.6);
    background: linear-gradient(45deg, #ffea00, #fff100);
}

.btn-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 241, 0, 0.4);
}

/* Footer */
.footer {
    background-color: #fff;
    color: var(--primary-text);
    padding: 60px 0 30px;
    border-top: 1px solid #eee;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    /* Reset background since footer is now white */
    background-color: transparent;
    padding: 0;
    display: inline-block;
}

.footer-logo img {
    width: 150px;
    height: auto;
}

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

.footer-nav a {
    font-size: 14px;
    color: var(--secondary-text);
    font-weight: 500;
}

.footer-nav a:hover {
    color: var(--brand-blue);
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    color: #999;
}


/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0.5;
    }

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

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

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* Mobile Menu Styling */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        /* Override display:none from previous generic rule if needed, or ensure flex is set */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease-in-out;
        z-index: 999;
    }

    .nav.active {
        right: 0;
        display: flex;
    }

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

    .nav-item a {
        font-size: 20px;
        color: var(--primary-text);
    }

    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
        width: 30px;
        height: 20px;
    }

    .hamburger span {
        display: block;
        position: absolute;
        height: 2px;
        width: 100%;
        background: var(--primary-text);
        border-radius: 9px;
        opacity: 1;
        left: 0;
        transition: .25s ease-in-out;
    }

    .hamburger span:nth-child(1) {
        top: 0px;
    }

    .hamburger span:nth-child(2) {
        top: 9px;
    }

    .hamburger span:nth-child(3) {
        top: 18px;
    }

    .hamburger.active span:nth-child(1) {
        top: 9px;
        transform: rotate(135deg);
    }

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


    .hamburger.active span:nth-child(3) {
        top: 9px;
        transform: rotate(-135deg);
    }
}

/* Concept Boxes */
.concept-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.concept-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--brand-blue);
    font-weight: 700;
}

.check-list li {
    font-size: 13px;
    color: var(--secondary-text);
    margin-bottom: 5px;
}

.mechanism-box {
    border-left: 4px solid var(--brand-green);
}

.confirm-box {
    border-left: 4px solid var(--brand-pink);
}

/* Partner Section */
.partner {
    background-color: var(--bg-color);
    /* Maintain flow */
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-text);
}

.partner-card {
    background: #fff;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

.partner-info {
    padding: 40px;
    text-align: center;
}

.partner-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.partner-company {
    color: var(--secondary-text);
    margin-bottom: 20px;
}

.partner-divider {
    border: none;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.partner-details {
    margin-bottom: 30px;
    font-size: 15px;
}

.partner-details p {
    margin-bottom: 10px;
}

.partner-details i {
    color: var(--brand-blue);
    width: 20px;
    margin-right: 10px;
}

.partner-contact {
    background: transparent;
    /* Removed light blue background */
    padding: 0 30px 40px;
}

.partner-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1a2d42;
    /* Dark navy from image */
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    padding: 15px 50px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, background-color 0.2s;
    text-decoration: none;
}

.partner-tel i {
    color: #e91e63;
    /* Pinkish phone icon accent */
    margin-right: 15px;
    font-size: 20px;
}

.partner-tel:hover {
    transform: translateY(-2px);
    background-color: #2c4a6b;
    opacity: 1;
    /* Override general a:hover */
}

.tel-note {
    background: #fff9e6;
    /* Light yellow background */
    border: 2px solid #ffcc00;
    /* Yellow border */
    border-radius: 8px;
    padding: 25px;
    display: block;
    /* Full width inside container */
    max-width: 600px;
    margin: 0 auto;
}

.tel-note p {
    color: #d32f2f;
    /* Reddish text for emphasis */
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 5px;
}

.tel-note strong {
    color: #d32f2f;
    font-size: 18px;
    display: block;
    margin: 5px 0;
}

.small-note {
    font-size: 13px;
    color: #666;
    display: block;
    margin-top: 10px;
    font-weight: 400;
}

@media (max-width: 900px) {
    .sp-break {
        display: inline;
    }

    .contact-box {
        grid-template-columns: 1fr;
        display: block;
    }

    .contact-left,
    .contact-right {
        padding: 40px;
    }

    .service-grid,
    .listing-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-left: 0;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-bg::after {
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
    }

    .footer-logo img {
        width: 150px;
        height: auto;
    }

    /* Concept Section Mobile */
    .concept-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .concept-text {
        order: 2;
        text-align: left;
    }

    .concept-lead {
        font-size: 16px;
        line-height: 2.2;
    }

    .concept-image {
        display: flex;
        justify-content: center;
    }

    .concept-image-inner {
        width: 100%;
        max-width: 320px;
    }

    .hero-title-main {
        font-size: 26px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .hero-title-sub {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .br-sp {
        display: block;
    }

    .br-pc {
        display: none;
    }

    /* Footer Mobile */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        /* Or center */
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        /* Stack links vertically */
        gap: 15px;
        align-items: flex-start;
    }
}

/* Contact Specific Updates */
.contact-desc {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--secondary-text);
}

.tel-note-msg {
    color: #d32f2f;
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 5px;
}

.tel-note-strong {
    color: #d32f2f;
    font-size: 18px;
    display: block;
    margin: 10px 0;
    /* Add margin around the highlight text */

}

.form-only-notice {
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--secondary-text);
}

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

.contact-note {
    font-size: 14px;
    color: var(--secondary-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Page Top Button */
.pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: -60px; /* Hidden initially */
    width: 50px;
    height: 50px;
    background-color: var(--brand-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: bottom 0.4s ease, background-color 0.3s, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.pagetop.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}

.pagetop:hover {
    background-color: var(--brand-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .pagetop {
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    .pagetop.show {
        bottom: 20px;
    }
}