/* 
  Kansai Chauffeur Premium Japanese Theme UI 
  Colors: Charcoal Black, Gold, Cream White
*/

:root {
    /* VIP Strict Dark Mode Palette */
    --color-charcoal: #0E0E0E;
    --color-charcoal-light: #1A1A1A;
    --color-gold: #C9A24D;
    --color-gold-hover: #E3C77A;
    --color-gold-light: #E3C77A;
    --color-cream: #1A1A1A;
    --color-text: #cccccc;
    --color-text-dark: #f0f0f0;

    /* Typography Update */
    --font-heading: 'Playfair Display', 'Noto Sans JP', 'Noto Sans KR', serif;
    --font-body: 'Inter', 'Noto Sans JP', 'Noto Sans KR', sans-serif;



    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Social Colors */
    --color-whatsapp: #25D366;
    --color-line: #06C755;
    --color-wechat: #07C160;
    --color-kakao: #FEE500;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-charcoal);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 90px 0;
}

.bg-cream {
    background-color: var(--color-cream);
}

.text-light {
    color: #fff !important;
}

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

/* Section Titles */
.section-title {
    font-size: 2.2rem;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
    /* For JP SemiBold */
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: var(--color-gold);
    margin-top: 15px;
}

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

.section-title.center::after {
    margin: 15px auto 0;
}

.section-subtitle.center {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin: -1.5rem 0 3rem 0;
}

.jp-title {
    font-size: 1.1rem;
    color: #888;
    display: block;
    margin-top: 5px;
    letter-spacing: 2px;
}

/* Buttons & Utils */
.btn-gold {
    display: inline-block;
    background-color: var(--color-gold);
    color: #111;
    padding: 12px 28px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    font-size: 1rem;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.bg-dark-outline {
    background: rgba(0, 0, 0, 0.05);
    border-color: #333;
    color: #333;
}

.bg-dark-outline:hover {
    background-color: var(--color-line);
    color: #fff;
    border-color: var(--color-line);
}

/* Floating CTA Bar */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cta-item {
    flex: 1;
    text-align: center;
    padding: 15px 0;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-quote {
    background-color: var(--color-charcoal);
}

.btn-quote:hover {
    background-color: #000;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
}

.btn-line {
    background-color: var(--color-line);
}

.btn-line:hover {
    background-color: #05b14c;
}

.btn-kakao {
    background-color: var(--color-kakao);
    color: #3b1e1e;
    /* Dark brown/black custom to Kakao */
}

.btn-kakao:hover {
    background-color: #f4dc00;
    color: #3b1e1e;
}

@media (min-width: 993px) {
    body {
        padding-bottom: 0;
    }

    .floating-cta {
        bottom: 30px;
        right: 30px;
        left: auto;
        width: auto;
        flex-direction: column;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .cta-item {
        padding: 15px 25px;
        font-size: 0.95rem;
        justify-content: flex-start;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-gold);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-links a {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.lang-selector select {
    background: transparent;
    color: #fff;
    border: 1px solid #555;
    padding: 5px;
    outline: none;
    border-radius: 3px;
    cursor: pointer;
}

.lang-selector select option {
    background-color: var(--color-charcoal);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1493976040374-85c8e12f0c0e?q=80&w=2070&auto=format&fit=crop') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-cream);
    max-width: 900px;
    padding: 0 20px;
}

.hero-content .subtitle {
    color: var(--color-gold);
    letter-spacing: 3px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hero-content .title {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-content .description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-gold);
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-hero-gold:hover {
    background-color: #A68235;
    /* Darker Gold for hover effect */
    color: #000;
    transform: translateY(-2px);
}

.btn-line-outline {
    display: inline-block;
    border: 1px solid var(--color-line);
    color: var(--color-line);
    padding: 12px 28px;
    border-radius: 2px;
    transition: var(--transition);
    background: rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    font-weight: 700;
}

.btn-line-outline:hover {
    background-color: var(--color-line);
    color: #fff;
    transform: translateY(-2px);
}

/* Services (4 Cards) */
.services {
    background-color: var(--color-charcoal);
}

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

.service-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #eee;
    transition: var(--transition);
    background: var(--color-cream);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--color-gold);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.ko-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
    display: block;
    margin-top: 5px;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Vehicles Section */
.fleet {
    background-color: var(--color-charcoal);
}

.fleet-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.card-dark {
    background-color: var(--color-charcoal-light);
    border: 1px solid #333;
    transition: var(--transition);
    border-radius: 4px;
    overflow: hidden;
}

.card-dark:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.fleet-img-wrapper {
    height: 280px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-img {
    color: #666;
    font-size: 1.2rem;
}

.fleet-info {
    padding: 35px;
    color: #ddd;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.fleet-header h4 {
    font-size: 1.8rem;
    color: var(--color-gold);
}

.fleet-price {
    font-size: 1.1rem;
    color: #fff;
}

.fleet-price strong {
    color: var(--color-gold);
    font-size: 1.4rem;
}

.fleet-badge {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold);
    font-size: 0.85rem;
    margin-bottom: 20px;
    border-radius: 20px;
}

.fleet-info p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #aaa;
}

.fleet-spec li {
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #ddd;
    display: flex;
    align-items: baseline;
}

.fleet-spec i {
    color: var(--color-gold);
    margin-right: 12px;
    width: 15px;
    text-align: center;
}

/* Rates Info Section */
.rates-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.rates-text {
    flex: 1.5;
}

.rates-desc {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
}

.rates-notice-box {
    background: var(--color-charcoal-light);
    border-left: 4px solid var(--color-gold);
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.rates-notice-box p {
    margin-bottom: 15px;
    color: #eee;
}

.rates-factors {
    padding-left: 10px;
}

.rates-factors li {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.rates-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.rates-img-box {
    flex: 1;
    height: 350px;
    background: var(--color-charcoal-light);
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.02);
}

.rates-visual {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #eee;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 5px;
}

/* Itineraries */
.courses {
    background-color: var(--color-charcoal);
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.course-item {
    display: flex;
    background: var(--color-cream);
    border: 1px solid #eaeaea;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 4px;
}

.course-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

.course-thumb {
    width: 300px;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.course-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: #000;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 2px;
}

.course-desc {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.course-desc h4 {
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.course-route {
    font-size: 0.95rem;
    color: var(--color-gold-hover);
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-desc p:last-child {
    color: #555;
    line-height: 1.7;
}

/* Simulated BG for now */
.osaka-bg {
    background-image: url('/images/destinations/OSAKA.png');
}

.kyoto-bg {
    background-image: url('/images/destinations/KYOTO.png');
}

.nara-bg {
    background-image: url('/images/destinations/NARA.png');
}

.kobe-bg {
    background-image: url('/images/destinations/KOBE.png');
}

.custom-course-banner {
    max-width: 950px;
    margin: 40px auto 0;
    background: linear-gradient(135deg, var(--color-charcoal) 0%, #222 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--color-gold);
}

.custom-course-banner h4 {
    font-size: 1.4rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

/* FAQ & Policy Accordion */
.faq-grid {
    display: flex;
    gap: 50px;
}

.faq-accordion-wrap {
    flex: 1.5;
}

.accordion {
    margin-bottom: 40px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.accordion-toggle {
    display: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    font-size: 1.05rem;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--color-gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 0 20px 0;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.accordion-toggle:checked+.accordion-header i {
    transform: rotate(180deg);
}

.accordion-toggle:checked+.accordion-header+.accordion-content {
    max-height: 500px;
}

.policy-box {
    background: var(--color-charcoal-light);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 4px;
}

.policy-box h4 {
    color: #b73232;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-list li {
    margin-bottom: 10px;
    color: #444;
    font-size: 0.95rem;
    padding-left: 15px;
    position: relative;
}

.policy-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #999;
}

.faq-visual {
    flex: 1;
    min-height: 400px;
    background: var(--color-charcoal-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-visual-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #ccc;
    text-align: center;
}

/* About Section */
.about {
    background-color: var(--color-charcoal);
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    height: 500px;
    position: relative;
    background: #222;
}

.pattern-bg {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--color-gold);
    z-index: 1;
}

.about-logo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    font-size: 4rem;
    text-align: center;
}

.about-text {
    flex: 1.2;
    color: #ddd;
}

.company-name {
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.mission-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #aaa;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 20px;
    color: #bbb;
    line-height: 1.8;
}

.about-features li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-features strong {
    color: var(--color-gold);
    font-size: 1.05rem;
}

.company-info-list p {
    margin-bottom: 8px !important;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.messenger-box {
    flex: 1;
    background: var(--color-charcoal-light);
    padding: 40px;
    border-top: 4px solid var(--color-gold);
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.messenger-box h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
    font-weight: 600;
}

.messenger-box>p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #fff;
    transition: var(--transition);
}

.messenger-btn i {
    font-size: 2.2rem;
}

.messenger-btn.whatsapp {
    background-color: var(--color-whatsapp);
}

.messenger-btn.whatsapp:hover {
    background-color: #1ebd56;
    transform: translateX(5px);
}

.messenger-btn.line {
    background-color: var(--color-line);
}

.messenger-btn.line:hover {
    background-color: #05b14b;
    transform: translateX(5px);
}

.messenger-btn.wechat {
    background-color: var(--color-wechat);
}

.messenger-btn.wechat:hover {
    background-color: #06a552;
    transform: translateX(5px);
}

.messenger-btn.kakao {
    background-color: var(--color-kakao);
    color: #3b1e1e;
}

.messenger-btn.kakao:hover {
    background-color: #f4dc00;
    transform: translateX(5px);
}

.msg-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.msg-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.form-box {
    flex: 2;
    background: var(--color-charcoal-light);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ddd;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    background: #222;
    color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
    background: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.2);
}

.submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    color: #777;
    padding: 70px 0 30px;
    border-top: 3px solid var(--color-gold);
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-info .logo {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: #eee;
}

.company-details {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
}

.footer-links {
    flex: 1;
    min-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    color: #eee;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a:hover {
    color: var(--color-gold);
}

.footer-contact {
    flex: 1;
    min-width: 250px;
    color: #aaa;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--color-gold);
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid-2 {
        grid-template-columns: 1fr;
    }

    .rates-flex,
    .faq-grid,
    .about-grid,
    .contact-grid {
        flex-direction: column;
    }

    .rates-img-box,
    .faq-visual {
        display: none;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-charcoal);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        text-align: center;
        margin: 0 !important;
    }

    .nav-links>a {
        padding: 15px;
        border-bottom: 1px solid #444;
    }

    .nav-links.show {
        display: flex !important;
    }

    .lang-selector {
        display: none !important;
    }

    .lang-selector.show {
        display: block !important;
        position: absolute;
        top: 5px;
        right: 50px;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .course-item {
        flex-direction: column;
    }

    .course-thumb {
        width: 100%;
        height: 200px;
    }

    .hero-content .title {
        font-size: 2.2rem !important;
    }
}