/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: #FF6659;
    --secondary: #2C3E50;
    --secondary-light: #3D5A73;
    --accent: #FF9800;
    --dark: #1A1A1A;
    --gray-900: #222222;
    --gray-800: #333333;
    --gray-700: #555555;
    --gray-600: #666666;
    --gray-500: #888888;
    --gray-400: #AAAAAA;
    --gray-300: #CCCCCC;
    --gray-200: #E8E8E8;
    --gray-100: #F8F8F8;
    --white: #FFFFFF;
    --bg-light: #FAFBFC;
    --bg-section: #F5F7FA;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.6s ease;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-heading: 'Montserrat', 'Noto Sans JP', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    line-height: 1.8;
    background: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-tag.light {
    color: rgba(255,255,255,0.7);
}

.section-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-line.light {
    background: rgba(255,255,255,0.5);
}

.section-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.section-desc.light {
    color: rgba(255,255,255,0.8);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230,62,42,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    display: none;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

/* Header Top Row */
.header-top-row {
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}

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

.header-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-tel {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-tel i {
    font-size: 1.2rem;
    background: var(--primary);
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.header-tel:hover {
    color: var(--primary-dark);
}

.header-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.header-meta i {
    color: var(--primary);
    margin-right: 4px;
    width: 14px;
}

/* Header Nav Row */
.header-nav-row {
    padding: 12px 0;
    background: var(--white);
}

/* Logo */
.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 3px;
}

/* Navigation - Circle Icon Style */
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gray-700);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--gray-900);
    transform: translateY(-2px);
}

.nav-link::after {
    display: none;
}

.nav-icon-circle {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.nav-link:hover .nav-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.nav-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-700);
}

/* Icon Circle Colors */
.color-red { background: #E53935; }
.color-orange { background: #FB8C00; }
.color-green { background: #7CB342; }
.color-teal { background: #00897B; }
.color-blue { background: #1E88E5; }
.color-brown { background: #6D4C41; }
.color-gray { background: #546E7A; }
.color-purple { background: #7B1FA2; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
    position: fixed;
    top: 20px;
    right: 20px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,42,58,0.6) 0%, rgba(26,42,58,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-sub {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Navigation Dots */
.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

.hero-nav-btn:hover {
    border-color: var(--white);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== ANIMATIONS ===== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

/* Reveal animations */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== FEATURE STRIP ===== */
.feature-strip {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
    position: relative;
    z-index: 5;
    margin-top: -1px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 1.2rem;
}

.feature-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.7rem;
    margin-top: 4px;
    opacity: 0.9;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-700);
    line-height: 1.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-item {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.stat-item:hover i {
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--bg-section);
}

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

.services-grid-5 {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid-5 .service-card:nth-child(4),
.services-grid-5 .service-card:nth-child(5) {
    /* 下段の2枚を中央寄せ用 */
}

@media (max-width: 1024px) {
    .services-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-5 {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230,62,42,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.service-card-overlay i {
    color: var(--white);
    font-size: 2rem;
}

.service-card-body {
    padding: 30px;
    position: relative;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    position: absolute;
    top: -25px;
    right: 30px;
    box-shadow: 0 4px 12px rgba(230,62,42,0.3);
}

.service-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.service-card-body > p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--gray-700);
    padding: 4px 0;
}

.service-features li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

/* ===== CAMPAIGN SECTION ===== */
.campaign {
    background: var(--white);
}

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

.campaign-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.campaign-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.campaign-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 20px;
    border-radius: var(--radius-xl);
}

.campaign-badge.hot {
    background: var(--accent);
}

.campaign-badge.new {
    background: #2ECC71;
}

.campaign-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
}

.campaign-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.campaign-price {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin-bottom: 12px;
}

.campaign-price span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.campaign-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* ===== FLOW SECTION ===== */
.flow {
    background: var(--bg-section);
}

.flow-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.flow-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.flow-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 8px;
}

.flow-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.flow-step:hover .flow-icon {
    background: var(--primary);
    color: var(--white);
}

.flow-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.flow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    color: var(--gray-300);
    font-size: 1.2rem;
}

/* ===== COMPANY SECTION ===== */
.company {
    background: var(--white);
}

.company-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.company-table tr {
    border-bottom: 1px solid var(--gray-200);
}

.company-table th,
.company-table td {
    padding: 20px;
    font-size: 0.95rem;
    vertical-align: top;
}

.company-table th {
    width: 180px;
    font-weight: 600;
    color: var(--secondary);
    background: var(--bg-light);
    text-align: left;
}

.company-table td {
    color: var(--gray-700);
}

.company-table td a {
    color: var(--primary);
}

.company-table td a:hover {
    text-decoration: underline;
}

/* ===== ACCESS SECTION ===== */
.access {
    background: var(--bg-section);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
}

.access-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.access-info h3 i {
    color: var(--primary);
    margin-right: 8px;
}

.access-address {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.access-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.access-detail-item i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.85rem;
}

.access-detail-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 2px;
}

.access-detail-item p {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 500;
}

.access-detail-item p a {
    color: var(--primary);
}

.access-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 350px;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--gray-400);
}

.map-placeholder p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.map-placeholder span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.contact-method {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--white);
}

.contact-method h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-tel {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.contact-tel:hover {
    color: var(--primary-light);
}

.contact-method p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.contact-email-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.contact-email {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-email:hover {
    color: var(--primary-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.required {
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    margin-left: 8px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--gray-800);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230,62,42,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
    margin-top: 12px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 1.4rem;
}

.footer-logo .logo-sub {
    font-size: 1.4rem;
}

.footer-brand-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.5);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-nav ul li a::before {
    content: '›';
    color: var(--primary);
}

.footer-nav ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ===== USED CARS PICKUP SECTION ===== */
.usedcars-pickup {
    background: var(--bg-light);
}

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

.pickup-car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.pickup-car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pickup-car-img {
    height: 180px;
    overflow: hidden;
    background: var(--gray-200);
}

.pickup-car-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.no-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 2rem;
}

.pickup-car-info {
    padding: 20px;
}

.pickup-car-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pickup-car-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.pickup-car-price .unit {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-600);
}

.pickup-car-specs {
    display: flex;
    gap: 16px;
}

.pickup-car-specs span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.pickup-car-specs span i {
    margin-right: 4px;
    color: var(--gray-400);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        gap: 40px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .header-nav-row {
        display: none;
    }

    .header-nav-row.show-mobile {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: right 0.4s ease;
        z-index: 1000;
        padding: 80px 20px 30px;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

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

    .nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
        font-size: 0.95rem;
        border-bottom: 1px solid var(--gray-200);
        border-radius: 0;
    }

    .nav-link:hover {
        transform: none;
        background: var(--bg-light);
    }

    .nav-icon-circle {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .nav-label {
        font-size: 0.95rem;
    }

    .header-info {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .header-tel {
        font-size: 1.2rem;
    }

    .header-meta {
        display: none;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 300px;
    }

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

    .flow-steps {
        flex-direction: column;
        gap: 0;
    }

    .flow-connector {
        padding: 8px 0;
        transform: rotate(90deg);
    }

    .access-content {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-inner {
        justify-content: flex-end;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 500px;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-scroll {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .usedcars-pickup-grid {
        grid-template-columns: 1fr;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .company-table th {
        width: 120px;
        padding: 14px;
        font-size: 0.85rem;
    }

    .company-table td {
        padding: 14px;
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-nav h4::after,
    .footer-contact h4::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-tel {
        font-size: 1.4rem;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== LOADING ANIMATION FOR FORM ===== */
.form-submit .btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.form-submit .btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: #2ECC71;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-600);
}
