/* ========================================
   Contact Page Styles
   ======================================== */

/* CSS Custom Properties (page-specific) */
:root {
    --color-accent: #a8b4c4;
    --color-bg: #1a1a1a;
    --color-bg-card: #252525;
    --color-bg-card-alt: #2a2a2a;
    --color-text: #c0c4cc;
    --color-text-muted: #808690;
    --color-accent-light: #c0c8d4;
    --color-line-green: #06C755;
}

/* ========================================
   Contact Intro
   ======================================== */
.contact-section {
    padding: 100px 0 120px;
}

.contact-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.contact-intro p {
    font-size: 17px;
    line-height: 2.4;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

.contact-intro p strong {
    color: var(--color-accent-light);
    font-weight: 600;
}

/* ========================================
   Contact Methods - Two Column Grid
   ======================================== */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 960px;
    margin: 0 auto 100px;
}

.contact-method {
    position: relative;
    padding: 60px 40px 50px;
    text-align: center;
    background-color: var(--color-bg-card-alt);
    border-radius: 12px;
    border-top: 3px solid transparent;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Gold accent border for phone */
.contact-method.method-phone {
    border-top-color: var(--color-accent);
}

/* Green accent border for LINE */
.contact-method.method-line {
    border-top-color: var(--color-line-green);
}

/* ========================================
   Contact Icon
   ======================================== */
.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
}

.method-phone .contact-icon {
    background: rgba(168, 180, 196, 0.1);
}

.method-line .contact-icon {
    background: rgba(6, 199, 85, 0.1);
}

.contact-icon svg {
    width: 42px;
    height: 42px;
}

.contact-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.method-phone .contact-icon svg {
    color: var(--color-accent);
}

.method-line .contact-icon svg {
    color: var(--color-line-green);
}

/* ========================================
   Contact Method Content
   ======================================== */
.contact-method-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-text);
    letter-spacing: 1px;
}

.contact-method-description {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

/* ========================================
   Contact Buttons
   ======================================== */
.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 48px;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.contact-button:hover::before {
    left: 0;
}

/* Phone button - gold */
.contact-button.phone {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg);
}

.contact-button.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 180, 196, 0.4);
    opacity: 1;
}

/* LINE button - green */
.contact-button.line {
    background: linear-gradient(135deg, #06C755, #07d95e);
    color: #fff;
}

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

.contact-button-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.contact-button-icon svg {
    width: 22px;
    height: 22px;
}

.contact-button-text {
    position: relative;
    z-index: 1;
}

.contact-button-note {
    font-size: 13px;
    font-weight: 400;
    margin-left: 8px;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.contact-hours {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

/* ========================================
   Contact Flow - Numbered Steps
   ======================================== */
.contact-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: var(--color-bg-card);
    border-radius: 12px;
    border: 1px solid rgba(168, 180, 196, 0.08);
}

.contact-info-title {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text);
    letter-spacing: 2px;
    position: relative;
}

.contact-info-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    margin: 18px auto 0;
}

.contact-flow {
    list-style: none;
    counter-reset: flow-counter;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

/* Connecting vertical line */
.contact-flow::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--color-accent),
        rgba(168, 180, 196, 0.2)
    );
    border-radius: 1px;
}

.contact-flow li {
    position: relative;
    padding-left: 64px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.8;
    counter-increment: flow-counter;
    color: var(--color-text-muted);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.contact-flow li:last-child {
    margin-bottom: 0;
}

/* Step number circle */
.contact-flow li::before {
    content: counter(flow-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-bg);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 3px 12px rgba(168, 180, 196, 0.25);
}

/* ========================================
   Responsive - Tablet
   ======================================== */
@media (max-width: 960px) {
    .contact-methods {
        gap: 30px;
    }

    .contact-method {
        padding: 50px 30px 40px;
    }

    .contact-button {
        padding: 16px 36px;
        font-size: 20px;
    }
}

/* ========================================
   Responsive - Mobile
   ======================================== */
@media (max-width: 768px) {
    .contact-section {
        padding: 70px 0 80px;
    }

    .contact-intro {
        margin-bottom: 50px;
    }

    .contact-intro p {
        font-size: 15px;
        line-height: 2.2;
    }

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

    .contact-method {
        padding: 45px 28px 40px;
    }

    .contact-icon {
        width: 76px;
        height: 76px;
        margin-bottom: 24px;
    }

    .contact-icon svg {
        width: 36px;
        height: 36px;
    }

    .contact-icon img {
        width: 40px;
        height: 40px;
    }

    .contact-method-title {
        font-size: 19px;
    }

    .contact-method-description {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .contact-button {
        font-size: 19px;
        padding: 16px 36px;
    }

    .contact-info {
        padding: 40px 24px;
    }

    .contact-info-title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .contact-flow li {
        font-size: 15px;
        padding-left: 54px;
        margin-bottom: 26px;
    }

    .contact-flow li::before {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .contact-flow::before {
        left: 18px;
    }
}
