@charset "UTF-8";

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --text-main: #222;
    --text-sub: #666;
    --bg-body: #fff;
    --bg-light: #f9f9f9;
    --accent: #81D8D0;
    /* Tiffany Blue (Legacy) or #0ABAB5 for web */
    --accent-web: #0ABAB5;
    /* Web-safe distinctive Tiffany Blue */
    --accent-dark: #008f8a;
    /* Darker shade for text/hover */
    --font-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --spacing-section: 120px;
    --spacing-container: 5%;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.8;
    letter-spacing: 0.05em;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
    color: var(--accent-web);
}

/* Typography */
h1,
h2,
h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

p {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-container);
}

section {
    padding: var(--spacing-section) 0;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--accent-web);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 16px;
    border: 1px solid var(--text-main);
    border-radius: 99px;
    background: transparent;
}

.btn-sm:hover {
    border-color: var(--accent-web);
    color: var(--accent-web);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, #fff 0%, #fbfbfb 100%);
    padding-top: 80px;
    /* Header height */
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--text-sub);
    margin-bottom: 50px;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    /* Square for sharper look, or keep rounded? Let's go minimal square/small radius */
    border-radius: 2px;
    letter-spacing: 0.05em;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-main);
    color: #fff;
    border: 1px solid var(--text-main);
}

.btn-primary:hover {
    background-color: var(--accent-web);
    /* Pop color on hover */
    border-color: var(--accent-web);
    color: #fff;
    box-shadow: 0 5px 15px rgba(10, 186, 181, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--accent-web);
    color: var(--accent-web);
}

/* Services */
.services {
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--accent-web);
    /* Tiffany accent line */
    margin: 20px auto 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.service-item {
    padding: 0 20px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-web);
    /* Tiffany highlight */
    padding-left: 15px;
}

.service-desc {
    color: var(--text-sub);
    margin-bottom: 20px;
    padding-left: 18px;
}

.text-link {
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 1px solid var(--accent-web);
    color: var(--text-main);
    padding-bottom: 2px;
    margin-left: 18px;
}

.text-link:hover {
    color: var(--accent-web);
}

/* Contact Form Styles */
.contact-form-section {
    padding: 100px 0 140px;
    background-color: #fff;
    min-height: 80vh;
    /* Ensure it takes up vertical space */
    display: flex;
    align-items: center;
}

.form-lead {
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-main);
    font-size: 1.1rem;
}

.contact-form {
    max-width: 900px;
    /* Increased from 700px */
    width: 100%;
    margin: 0 auto;
    padding: 60px;
    background-color: #fafafa;
    /* Subtle background to define the area */
    border-radius: 8px;
    /* Optional: box-shadow: 0 10px 40px rgba(0,0,0,0.05); */
}

.form-group {
    margin-bottom: 40px;
    /* Increased spacing */
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    /* Larger label */
}

.required {
    background-color: var(--accent-web);
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 2px;
    margin-left: 10px;
    vertical-align: text-bottom;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 20px;
    /* Larger padding */
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1.1rem;
    /* Larger font */
    font-family: inherit;
    transition: all 0.3s;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-web);
    box-shadow: 0 0 0 4px rgba(10, 186, 181, 0.15);
}

.form-submit {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 30px 20px;
    }
}

/* Company */
.company {
    background-color: var(--bg-light);
}

.info-table {
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.info-row {
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
}

.info-label {
    width: 30%;
    font-weight: 700;
}

.info-value {
    width: 70%;
    color: var(--text-sub);
}


/* Legal Page Styles */
.legal-content {
    background-color: var(--bg-light);
    /* Changed to light background */
    padding: 100px 0 140px;
}

.container-sm {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    /* Card style */
    padding: 80px;
    border-radius: 2px;
    /* Optional shadow for depth */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.legal-content .lead {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 80px;
    color: var(--text-main);
    font-weight: 500;
}

.legal-section {
    margin-bottom: 60px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-left: 15px;
    /* Left border style instead of bottom */
    border-left: 4px solid var(--accent-web);
    line-height: 1.4;
    color: var(--text-main);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-sub);
    text-align: justify;
}

@media (max-width: 768px) {
    .container-sm {
        padding: 40px 20px;
        width: 100%;
        box-shadow: none;
        background-color: transparent;
    }

    .legal-content .lead {
        margin-bottom: 50px;
    }

    .legal-section h2 {
        padding-left: 12px;
        font-size: 1.1rem;
    }
}

/* FAQ */
.faq {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.faq-q {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.faq-q::before {
    content: "Q.";
    font-size: 0.9rem;
    color: var(--accent-web);
    /* Tiffany Q */
}

.faq-a {
    color: var(--text-sub);
    padding-left: 2rem;
}

/* Contact */
.contact {
    background-color: var(--bg-light);
    text-align: center;
}

/* Making contact section white/clean but with prominent button */

/* Footer */
.site-footer {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #eee;
}

/* Hero Section */
.hero {
    height: 600px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-main);
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-sub);
    margin-bottom: 40px;
}

/* Company Page Styles */
.page-header {
    background-color: var(--bg-light);
    padding: 180px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-header p {
    color: var(--text-sub);
    font-size: 1rem;
    letter-spacing: 0.1em;
}

.company-detail {
    background-color: #fff;
    padding: 100px 0;
}

.info-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.company-table th,
.company-table td {
    padding: 30px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.company-table th {
    width: 30%;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1rem;
    background-color: #fafafa;
}

.company-table td {
    width: 70%;
    color: var(--text-sub);
    line-height: 1.8;
}

@media (max-width: 768px) {

    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 15px 20px;
    }

    .company-table th {
        border-bottom: none;
        padding-bottom: 5px;
        background-color: transparent;
    }

    .company-table td {
        padding-top: 0;
    }
}

.footer-nav {
    margin-bottom: 40px;
}

.footer-nav a {
    margin: 0 15px;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.footer-nav a:hover {
    color: var(--accent-web);
}

.copyright {
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .info-row {
        flex-direction: column;
        gap: 8px;
    }

    .info-label {
        width: 100%;
    }

    .info-value {
        width: 100%;
    }
}