/* ==========================================================================
   Base & Reset
   ========================================================================== */
:root {
    --primary: #004D99; /* Subaru/Trust Blue */
    --primary-light: #0066CC;
    --primary-dark: #003366;
    --secondary: #0f172a; /* Slate 900 - Deep Space */
    --accent: #E11D25; /* Subaru Red / Attention */
    --line: #06C755; /* LINE Green */
    
    --bg-main: #f8fafc;
    --surface: #ffffff;
    --surface-alt: #f1f5f9;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-inverse: #ffffff;
    
    --border-radius: 12px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 25px 35px -5px rgba(0, 102, 204, 0.15), 0 10px 15px -5px rgba(0, 102, 204, 0.1);
}

.pc-only { display: block; }
.sp-only { display: none; }

@media (max-width: 768px) {
    .pc-only { display: none; }
    .sp-only { display: block; }
}

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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary);
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.pb-0 {
    padding-bottom: 0 !important;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
.font-number {
    font-family: 'Oswald', sans-serif;
}

.highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 102, 204, 0.2);
    z-index: -1;
    border-radius: 4px;
}

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

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 2px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 20px;
}

.bg-light {
    background-color: var(--surface-alt);
}

/* ==========================================================================
   Intro Loader (WOW Effect)
   ========================================================================== */
.intro-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.intro-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    color: white;
    letter-spacing: 5px;
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    gap: 20px;
}

.intro-logo .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-logo .word:nth-child(2) {
    animation-delay: 0.3s;
    color: var(--primary-light);
}

.intro-sub {
    font-family: 'Oswald', sans-serif;
    color: var(--accent);
    letter-spacing: 12px;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeIn 1.2s ease 0.6s forwards;
}

/* Animations applied via JS classes */
.intro-loader.finish {
    opacity: 0;
    transform: scale(1.05); /* Slight zoom as it fades out */
    pointer-events: none;
}
.intro-loader.done {
    display: none;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 77, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 77, 153, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--primary);
}

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

.btn-line {
    background: var(--line);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.btn-large .btn-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.btn-large .btn-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 1px;
}

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

.header.scrolled {
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
}

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

.logo h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--secondary);
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    gap: 32px;
}

.nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

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

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transform: scale(1.05);
    animation: zoomOut 20s infinite alternate linear;
}

@keyframes zoomOut {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(15, 23, 42, 0.4) 50%,
        rgba(15, 23, 42, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 900px;
    padding: 0 24px;
    color: var(--text-inverse);
    z-index: 10;
}

.hero-catch {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: white;
}

.hero-catch .highlight {
    color: #38bdf8; /* Lighter blue for dark bg */
}

.hero-sub {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1.2s ease 2s forwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

.scroll-indicator p {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* ==========================================================================
   Services Section & Cards
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.clickable {
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(0, 102, 204, 0.1);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.card-icon {
    position: absolute;
    bottom: -20px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .card-icon {
    background: var(--accent);
    transform: rotateY(360deg);
}

.card-content {
    padding: 40px 24px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.card-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-more {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    transition: var(--transition-fast);
}

.service-card:hover .view-more {
    color: var(--accent);
    gap: 12px;
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 600px;
    background: var(--surface);
    border-radius: var(--border-radius);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

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

.modal.active {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.modal-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.modal-header {
    background: var(--surface-alt);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-header h4 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--secondary);
}

.modal-body {
    padding: 0;
    overflow-y: auto;
}

.modal-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.modal-body p, .modal-body ul {
    padding: 0 24px;
}

.modal-body p {
    margin-top: 20px;
    color: var(--text-main);
}

.modal-body ul {
    margin: 20px 24px 30px;
}

.modal-body li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
    color: var(--text-muted);
}

.modal-body li i {
    position: absolute;
    left: 0;
    top: 4px;
}

/* ==========================================================================
   Showcase / Trust Section
   ========================================================================== */
.trust {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85); 
    z-index: 1;
}

.trust .container {
    position: relative;
    z-index: 2;
}

.trust-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
}

.trust-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 60px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--accent);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* ==========================================================================
   Company Section
   ========================================================================== */
.company-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.company-info {
    padding: 50px;
}

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

.info-table th, .info-table td {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    text-align: left;
    vertical-align: top;
}

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

.info-table th {
    width: 120px;
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.info-table td {
    color: var(--text-main);
}

.info-table .tel {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.info-table .fax {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.info-table .note {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.company-map {
    height: 100%;
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.contact-box {
    background: var(--surface-alt);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    font-size: 3rem;
    color: var(--line);
    margin-bottom: 20px;
}

.contact-box h4 {
    margin-bottom: 15px;
}

.contact-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

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

.contact-form-wrapper h4 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--surface-alt);
}

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

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

.required {
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--surface-alt);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 77, 153, 0.1);
}

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-address {
    text-align: right;
    color: #94a3b8;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

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

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

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

/* ==========================================================================
   Animations
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.delay-intro-1 { transition-delay: 1.5s; }
.delay-intro-2 { transition-delay: 1.7s; }
.delay-intro-3 { transition-delay: 1.9s; }
.delay-intro-4 { transition-delay: 2.1s; }

/* ==========================================================================
   Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .company-wrapper {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        padding: 40px 24px;
    }
    
    .company-map {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-catch {
        font-size: 2.8rem;
    }

    .intro-logo {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nowrap {
        display: inline-block;
        white-space: nowrap;
    }

    .intro-logo {
        font-size: 2.2rem;
        gap: 12px;
        letter-spacing: 2px;
    }

    .intro-sub {
        letter-spacing: 5px;
        font-size: 0.9rem;
    }

    .header-contact {
        display: none;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-catch {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .trust-stats {
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-address {
        text-align: center;
    }
    
    .contact-grid {
        padding: 20px;
    }
    
    .contact-box, .contact-form-wrapper {
        padding: 20px 10px;
    }
}
