/* ============================================
   Still Dreaming - 福祉タクシー LP
   カラースキーム: 紺・ゴールド・桜色
   ============================================ */

/* ==================== Variables ==================== */
:root {
    /* Colors */
    --navy-primary: #1a2947;
    --navy-dark: #0f1a2e;
    --navy-light: #2d3e5f;
    --gold-primary: #d4af37;
    --gold-light: #f4d468;
    --gold-dark: #b8941f;
    --sakura-primary: #ffb7c5;
    --sakura-light: #ffd4dd;
    --sakura-pale: #fff0f3;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    
    /* Typography */
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 41, 71, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--white);
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-text h1 {
    font-family: var(--font-accent);
    font-size: 28px;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo-text .subtitle {
    font-size: 12px;
    color: var(--white);
    letter-spacing: 2px;
}

/* Legacy logo styles for backward compatibility */
.logo h1 {
    font-family: var(--font-accent);
    font-size: 28px;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.logo .subtitle {
    font-size: 12px;
    color: var(--white);
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

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

.header-nav .cta-button {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.header-nav .cta-button-home {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--navy-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.3);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.header-nav .cta-button-home i {
    margin-right: 8px;
}

.header-nav .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.header-nav .cta-button-home:hover {
    background: linear-gradient(135deg, var(--gold-primary), #f0d98f);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26, 41, 71, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    z-index: 999;
    transform: translateY(-100%);
    transition: var(--transition-smooth);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-link {
    color: var(--white);
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.mobile-nav-link.mobile-home {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--navy-dark);
    padding: 15px;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 10px;
}

.mobile-nav-link.mobile-home i {
    margin-right: 8px;
}

.mobile-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-primary) 50%, #2d3e5f 100%);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 183, 197, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--sakura-primary), var(--sakura-light));
    color: var(--navy-dark);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--gold-primary);
    font-size: 100px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.hero-subtitle {
    font-size: 32px;
    font-weight: 700;
    color: var(--sakura-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;
    border-radius: 15px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 32px;
}

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

.cta-title {
    font-size: 18px;
    display: block;
}

.cta-sub {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.cta-phone {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: var(--white);
}

.cta-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
}

.cta-line {
    background: linear-gradient(135deg, #06c755, #00e676);
    color: var(--white);
}

.cta-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

.cta-square {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--navy-dark);
}

.cta-square:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-primary);
    font-size: 12px;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== Homepage Link Section ==================== */
.homepage-link-section {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.homepage-link-text {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.homepage-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--white), #f0f0f0);
    color: var(--navy-dark);
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.homepage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #ffffff, var(--gold-light));
}

.homepage-btn i {
    font-size: 20px;
}

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

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--sakura-primary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

/* ==================== Services Section ==================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.service-icon i {
    font-size: 40px;
    color: var(--gold-primary);
}

.service-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: 40px;
}

/* Service Image Gallery */
.service-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.service-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 41, 71, 0.95), rgba(26, 41, 71, 0.7));
    color: var(--white);
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--sakura-pale);
    color: var(--navy-primary);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--sakura-light);
}

.feature-badge.special {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--navy-dark);
    border-color: var(--gold-primary);
}

.service-description {
    text-align: left;
    margin-bottom: 30px;
}

.service-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-benefits {
    list-style: none;
    display: grid;
    gap: 15px;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    padding: 12px;
    background: var(--sakura-pale);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.service-benefits li:hover {
    background: var(--sakura-light);
    transform: translateX(5px);
}

.service-benefits i {
    color: var(--gold-primary);
    font-size: 20px;
}

.service-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-smooth);
    flex: 1;
    justify-content: center;
}

.btn-phone {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: var(--white);
}

.btn-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 200, 83, 0.4);
}

.btn-line {
    background: linear-gradient(135deg, #06c755, #00e676);
    color: var(--white);
}

.btn-line:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 199, 85, 0.4);
}

.btn-home {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--navy-dark);
}

.btn-home:hover {
    background: linear-gradient(135deg, var(--gold-primary), #f0d98f);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ==================== Charter Section ==================== */
.charter {
    position: relative;
    padding: var(--section-padding) 0;
    color: var(--navy-dark);
}

.charter-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--sakura-pale) 0%, #fff 50%, var(--sakura-pale) 100%);
    z-index: 0;
}

.sakura-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 183, 197, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 183, 197, 0.3) 0%, transparent 50%);
    opacity: 0.5;
}

.charter-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.charter-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--sakura-primary), var(--sakura-light));
    color: var(--navy-dark);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.charter-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 15px;
    text-align: center;
}

.charter-subtitle {
    font-size: 22px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

/* Charter Image Gallery */
.charter-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.charter-image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.charter-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.charter-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.charter-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 41, 71, 0.95), rgba(26, 41, 71, 0.7));
    color: var(--white);
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.charter-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-item {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--sakura-pale), var(--sakura-light));
    border-radius: 50%;
}

.highlight-icon i {
    font-size: 32px;
    color: var(--sakura-primary);
}

.highlight-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

.charter-description {
    max-width: 900px;
    margin: 0 auto 40px;
}

.charter-description > p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.charter-features {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.charter-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(255, 183, 197, 0.1);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy-dark);
}

.charter-features li i {
    color: var(--gold-primary);
    font-size: 18px;
    flex-shrink: 0;
}

.charter-info {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--gold-primary);
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.charter-info h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.charter-info i {
    color: var(--gold-primary);
}

.info-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.charter-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.charter-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    border-radius: 15px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 350px;
}

.charter-btn i {
    font-size: 28px;
}

.charter-btn span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 16px;
    display: block;
}

.btn-sub {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--navy-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #06c755, #00e676);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
}

/* ==================== Vehicle Section ==================== */
.vehicle {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.vehicle-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.vehicle-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vehicle-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vehicle-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.vehicle-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.gallery-item {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vehicle-placeholder {
    background: linear-gradient(135deg, var(--navy-primary), var(--navy-light));
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.vehicle-placeholder i {
    font-size: 80px;
    margin-bottom: 20px;
}

.vehicle-placeholder p {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 1.6;
}

.vehicle-details h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.vehicle-subtitle {
    font-size: 18px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 30px;
}

.vehicle-specs {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.spec-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--sakura-pale);
    border-radius: 15px;
    transition: var(--transition-smooth);
}

.spec-item:hover {
    background: var(--sakura-light);
    transform: translateX(5px);
}

.spec-item i {
    font-size: 32px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.spec-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 5px;
}

.spec-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Vehicle Video */
.vehicle-video {
    margin-top: 40px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 4px solid var(--gold-primary);
}

.vehicle-video h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.vehicle-video h4 i {
    color: #ff0000;
    font-size: 24px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* ==================== Contact Section ==================== */
.contact {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sakura-primary), var(--sakura-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 36px;
    color: var(--navy-dark);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 24px;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.contact-hours {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.contact-btn.btn-phone {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: var(--white);
}

.contact-btn.btn-line {
    background: linear-gradient(135deg, #06c755, #00e676);
    color: var(--white);
}

.contact-btn.btn-square {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
    color: var(--navy-dark);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* LINE QR Code */
.line-qr-wrapper {
    margin: 20px auto;
    text-align: center;
}

.line-qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    background: var(--white);
    padding: 10px;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--white);
    padding: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 32px;
    color: var(--gold-primary);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.footer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-contact h4 {
    font-size: 18px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-contact i {
    color: var(--gold-primary);
}

.footer-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-btn:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

.footer-btn-home {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-primary);
}

.footer-btn-home:hover {
    background: var(--gold-primary);
    color: var(--navy-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-left: 10px;
}

.footer-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ==================== Floating Buttons (Mobile) ==================== */
.floating-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 10px;
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 12px;
    transition: var(--transition-smooth);
    flex: 1;
}

.floating-btn i {
    font-size: 24px;
    margin-bottom: 5px;
}

.floating-phone {
    background: linear-gradient(135deg, #00c853, #00e676);
    color: var(--white);
}

.floating-line {
    background: linear-gradient(135deg, #06c755, #00e676);
    color: var(--white);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .vehicle-showcase {
        grid-template-columns: 1fr;
    }
    
    .vehicle-images {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Header */
    .header-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 50px;
    }
    
    .hero-title .highlight {
        font-size: 60px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        max-width: 100%;
    }
    
    .cta-btn {
        padding: 20px 25px;
    }
    
    .cta-btn i {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 16px;
    }
    
    /* Sections */
    .section-title {
        font-size: 32px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-photo {
        height: 250px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .homepage-link-section {
        padding: 20px;
        margin-top: 30px;
        margin-bottom: 100px;
    }
    
    .hero-scroll {
        bottom: 20px;
        font-size: 11px;
    }
    
    .homepage-link-text {
        font-size: 14px;
    }
    
    .homepage-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .charter-title {
        font-size: 36px;
    }
    
    .charter-subtitle {
        font-size: 18px;
    }
    
    .charter-image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .charter-photo {
        height: 250px;
    }
    
    .charter-cta {
        flex-direction: column;
    }
    
    .charter-btn {
        max-width: 100%;
    }
    
    .vehicle-gallery {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Show Floating Buttons on Mobile */
    .floating-buttons {
        display: flex;
    }
    
    /* Add padding to body to account for floating buttons */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-title .highlight {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .campaign-badge {
        font-size: 14px;
        padding: 10px 20px;
    }
    
    .cta-title {
        font-size: 14px;
    }
    
    .cta-sub {
        font-size: 11px;
    }
    
    .homepage-link-section {
        margin-bottom: 120px;
    }
    
    .hero-scroll {
        bottom: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
        padding: 4px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text .subtitle {
        font-size: 10px;
    }
    
    .footer-logo-image {
        width: 50px;
        height: 50px;
        padding: 6px;
    }
    
    .service-features {
        flex-direction: column;
    }
    
    .feature-badge {
        justify-content: center;
    }
}