/* =========================================
   Global Trade Solutions - Project 002 Style (Refined Graceful Impact)
   ========================================= */

/* 1. Variables */
:root {
    --color-text: #111111;
    --color-text-light: #555555;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F4F4;
    --color-accent: #C5A059;
    --color-border: #DDDDDD;

    --font-heading: 'Noto Serif JP', serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --font-en: 'Cormorant Garamond', serif;

    --container-width: 1200px;
    --header-height: 100px;
}

/* 2. Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

h4 {
    font-size: 2rem;
    margin-bottom: 15px;
}

h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

h6 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* 3. Layout Utilities */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 100px 0;
}

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

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

/* Margins */
.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

/* Paddings */
.pt-10 {
    padding-top: 10px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-100 {
    padding-bottom: 100px;
}

/* Horizontal Paddings */
.pl-10 {
    padding-left: 10px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

/* Horizontal Margins */
.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-30 {
    margin-left: 30px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-30 {
    margin-right: 30px;
}

/* Typography Decoration */
h3 {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 5px solid var(--color-accent);
}

h4 {
    margin-bottom: 20px;
    background: #f8f8f8;
    padding: 15px 20px;
}

h5 {
    margin-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
    display: inline-block;
}

h6 {
    margin-bottom: 15px;
    color: var(--color-text-light);
    border-left: 3px solid #ccc;
    padding-left: 15px;
}

/* Pre tag */
pre {
    background: #f4f4f4;
    padding: 20px;
    border: 1px solid #ddd;
    overflow-x: auto;
    font-family: monospace;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* 4. Header (White Fixed) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: white;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

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

.logo {
    font-family: var(--font-en);
    font-size: 1.8rem;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.logo span {
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-en);
    font-size: 1rem;
    color: var(--color-text);
    text-transform: capitalize;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s;
}

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

.nav-btn-contact {
    border: 1px solid var(--color-text);
    padding: 10px 30px;
    font-family: var(--font-en);
    font-size: 0.9rem;
}

.nav-btn-contact:hover {
    background: var(--color-text);
    color: white;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* 5. Footer (Horizontal Layout) */
footer {
    background: #FAFAFA;
    padding: 80px 0 30px;
    font-family: var(--font-heading);
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-info {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: block;
}

.footer-address {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.footer-sitemap {
    flex: 1;
    text-align: right;
}

.footer-menu {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.footer-menu a {
    font-size: 0.95rem;
    color: var(--color-text);
    white-space: nowrap;
}

.footer-menu a:hover {
    color: var(--color-accent);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 30px;
    font-family: var(--font-heading);
}

/* 6. Buttons */
.btn {
    display: inline-block;
    padding: 16px 50px;
    background: var(--color-text);
    color: white !important;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    border: 1px solid var(--color-text);
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn:hover {
    background: white;
    color: var(--color-text) !important;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-text);
    color: var(--color-text) !important;
}

.btn-outline:hover {
    background: var(--color-text);
    color: white !important;
}

/* CTA Button White Outline */
.btn-white-outline {
    background: transparent;
    border: 1px solid white;
    color: white !important;
    padding: 16px 50px;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white-outline:hover {
    background: white;
    color: #333 !important;
}

/* White Button (Shadow) */
.btn-white {
    background: #f8f8f8;
    color: #333 !important;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #eee;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: #000 !important;
}


/* 7. Hero & Page Header */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 0;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-family: var(--font-en);
    font-size: 4rem;
    margin-bottom: 10px;
    color: white !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: white !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: var(--font-en);
    z-index: 10;
}

/* Page Header */
.page-header {
    height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    text-align: center;
    color: white;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.page-title {
    font-family: var(--font-en);
    font-size: 3.5rem;
    color: white !important;
    margin-bottom: 10px;
}

/* 8. News Ticker (Slide Up Animation) */
.news-ticker-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    z-index: 20;
    border-top: 1px solid #eee;
}

.news-ticker-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    height: 30px;
    /* Fixed height for mask */
    overflow: hidden;
}

.news-label {
    font-family: var(--font-en);
    color: var(--color-accent);
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
}

.news-ticker-scroll {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.news-ticker-items {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide Up Logic managed by JS class additions, but basic styles here */
.news-ticker-item {
    position: absolute;
    top: 30px;
    /* Start below */
    left: 0;
    width: 100%;
    height: 30px;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: top 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
}

.news-ticker-item.active {
    top: 0;
    /* Center */
    opacity: 1;
}

.news-ticker-item.exit {
    top: -30px;
    /* Move up */
    opacity: 0;
}

.news-date {
    margin-right: 20px;
    font-family: var(--font-en);
    color: #888;
}

/* 9. Section Headings (Centered) */
.section-header {
    margin-bottom: 70px;
    text-align: center;
}

/* Always center */
.section-subtitle {
    display: block;
    font-family: var(--font-en);
    color: var(--color-accent);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0;
}

/* 10. Zigzag Full Width Layout (Expertise) */
.zigzag-section {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
}

.zigzag-row {
    display: flex;
    width: 100%;
    min-height: 500px;
    /* Ensure sufficient height */
}

.zigzag-content {
    width: 50%;
    /* Default Padding */
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

/* PC Alignment Logic:
   Align content to the container edge (1200px max width).
   Window center - 600px = Distance to container edge.
*/
@media (min-width: 1200px) {

    /* Text on Left (Row 1, 3...) */
    .zigzag-row:nth-child(odd) .zigzag-content {
        padding-left: calc(50vw - 600px + 30px);
        /* +30px matches container padding */
        padding-right: 60px;
    }

    /* Text on Right (Row 2...) */
    .zigzag-row:nth-child(even) .zigzag-content {
        padding-right: calc(50vw - 600px + 30px);
        padding-left: 60px;
    }
}

.zigzag-image {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.zigzag-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zigzag-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Reverse alternate rows */
.zigzag-row:nth-child(even) .zigzag-content {
    background: #fafafa;
}

/* Alt bg for text */

.biz-title-en {
    font-family: var(--font-en);
    color: var(--color-accent);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.biz-title-ja {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* 11. News List Section (Index) */
.news-list-index {
    max-width: 900px;
    margin: 0 auto;
}

.news-item-index {
    display: flex;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.news-item-index .news-date {
    width: 120px;
    font-family: var(--font-en);
    color: #888;
    flex-shrink: 0;
}

.news-item-index .news-title {
    transition: color 0.3s;
    font-size: 1.1rem;
}

.news-item-index:hover .news-title {
    color: var(--color-accent);
}

/* 12. Products Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-item {
    background: #F9F9F9;
    padding: 30px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-name {
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.product-img-placeholder {
    width: 100%;
    height: 200px;
    background: #ddd;
    margin-bottom: 20px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* 13. Top Page Recruit (Distinct Design) */
.recruit-section-top {
    position: relative;
    padding: 120px 0;
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    color: white;
    text-align: center;
}

.recruit-section-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.recruit-content-top {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.recruit-title-top {
    color: white !important;
    font-size: 3rem;
    margin-bottom: 20px;
}

.recruit-lead-top {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.recruit-text-top {
    margin-bottom: 40px;
    font-size: 1rem;
    opacity: 0.9;
}

/* 14. Contact Form (Horizontal Layout) */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-wrapper {
    background: white;
    padding: 0;
    /* Remove padding for clean look */
}

.contact-form-horizontal {
    width: 100%;
    border-top: 2px solid var(--color-text);
}

.form-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.form-label-col {
    width: 300px;
    background: #f9f9f9;
    padding: 30px;
    display: flex;
    align-items: center;
    font-weight: bold;
    flex-shrink: 0;
}

.form-input-col {
    flex: 1;
    padding: 30px;
    background: white;
}

.form-label-col span {
    font-size: 0.8rem;
    color: white;
    background: #cc0000;
    padding: 2px 6px;
    margin-left: 10px;
    border-radius: 2px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-label-col {
        width: 100%;
        padding: 15px 20px;
        background: #eee;
    }

    .form-input-col {
        padding: 20px;
    }
}

/* Business Page: Zigzag Contained */
.zigzag-row-contained {
    display: flex;
    width: 100%;
    margin-bottom: 60px;
    border: 1px solid #eee;
    /* Light border for definition */
}

.zigzag-row-contained .zigzag-content {
    width: 50%;
    padding: 60px;
    /* Standard padding without calc */
    background: white;
}

.zigzag-row-contained .zigzag-image {
    width: 50%;
    height: auto;
    min-height: 400px;
}

.zigzag-row-contained:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-row-contained:nth-child(even) .zigzag-content {
    background: #fafafa;
}

/* Responsive for Contained */
@media (max-width: 768px) {
    .zigzag-row-contained {
        flex-direction: column !important;
    }

    .zigzag-row-contained .zigzag-content,
    .zigzag-row-contained .zigzag-image {
        width: 100%;
    }

    .zigzag-row-contained .zigzag-image {
        height: 300px;
    }

    .zigzag-row-contained .zigzag-content {
        padding: 40px 20px;
    }
}

/* 15. CTA Layout (Revised) */
.cta-section {
    padding: 100px 0;
    background: #333;
    color: white;
    text-align: center;
}

.cta-title {
    color: white !important;
    font-size: 2rem;
    margin-bottom: 40px;
}

.cta-content {
    margin-bottom: 50px;
}

.cta-flex-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    /* Space between Tel and Button */
}

/* Tel Block */
.cta-tel-block {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.cta-tel-upper {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.cta-tel-label {
    font-size: 1.2rem;
    font-family: var(--font-en);
    font-weight: bold;
    color: white;
}

.cta-tel-number {
    font-family: var(--font-en);
    font-size: 3.5rem;
    /* Doubled size */
    line-height: 1;
    color: white;
}

.cta-tel-hours {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    padding-left: 60px;
    /* Align roughly under number */
}

/* 16. Map Placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: #E2E2E2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-family: var(--font-en);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .zigzag-row {
        flex-direction: column !important;
        min-height: auto;
    }

    .zigzag-content,
    .zigzag-image {
        width: 100%;
    }

    .zigzag-image {
        height: 300px;
    }

    .zigzag-content {
        padding: 40px 20px;
    }

    .cta-flex-box {
        flex-direction: column;
        gap: 40px;
    }

    .cta-tel-block {
        text-align: center;
        align-items: center;
    }

    .cta-tel-hours {
        padding-left: 0;
    }



    .cta-tel-number {
        font-size: 2.5rem;
    }

    .contact-wrapper {
        flex-direction: column;
        padding: 0px;
        /* User Request: 0px padding on mobile */
    }

    /* Privacy Policy Mobile Menu Item */
    .mobile-only {
        display: block;
    }
}

/* Global Mobile Only Class - Hidden by default on Desktop */
.mobile-only {
    display: none;
}

/* Desktop: Hide mobile-only items */


/* About Intro Text Mobile Alignment */
@media (max-width: 768px) {
    .about-intro-text {
        text-align: left !important;
    }

    .cta-content {
        text-align: left !important;
    }
}

/* Company Profile Table Classes (Replacements for Inline) */
.company-profile-list {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.company-profile-dt {
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    /* User Request: Lines for all items */
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.company-profile-dd {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .company-profile-list {
        grid-template-columns: 80px 1fr;
        /* User Request: Narrower header */
        gap: 15px;
    }

    /* Ensure borders line up or just block them? User asked for narrower header, implies keeping grid */
    .company-profile-dt,
    .company-profile-dd {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

/* News Ticker Mobile Fix */
/* News Ticker Mobile Fix (Flexbox Approach) */
@media (max-width: 768px) {
    .news-ticker-inner {
        height: 50px;
        /* Reduced from 50 to 50 (keep) or use auto? 50 is fine if flex works */
        display: flex;
        /* Force Flex */
        align-items: center;
        /* Vertical Center */
        line-height: normal;
        /* Reset line-height */
        padding: 5px 20px;
        /* Add padding for breathing room */
    }

    .news-label {
        margin-top: 2px;
        /* User Request: Nudge down 2px */
    }

    .news-ticker-scroll {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        /* Center text vertically */
    }

    .news-ticker-item {
        height: 50px;
        /* Fill container */
        top: 50px;
        /* Start below (50px) matches container height */
        line-height: normal;
        display: flex;
        /* Use flex to center text */
        align-items: center;
        white-space: nowrap;
        transform: none;
        /* Remove previous transform hack */
    }

    .news-ticker-item.active {
        top: 0;
        /* Active at 0 */
    }

    .news-ticker-item.exit {
        top: -50px;
        /* Exit above */
    }

    .news-btn-mobile-fix {
        margin-left: 10px !important;
        padding: 6px 15px !important;
        font-size: 0.8rem !important;
        white-space: nowrap;
        height: auto;
        line-height: 1.2;
        display: inline-block;
        flex-shrink: 0;
        /* Prevent shrinking */
    }
}

/* Mobile Navigation (Right Drawer) - Added */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1100;
        /* Above nav */
        position: absolute;
        right: 20px;
        top: 42%;
        /* Visually adjusted up from 50% */
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* Fully hidden */
        width: 280px;
        /* Drawer width */
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        /* Space for toggle */
        padding-left: 20px;
        padding-right: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 10px 0;
    }

    .nav-btn-contact {
        display: inline-block;
        margin-top: 20px;
    }

    /* Privacy Policy Link - Show on Mobile */
    .mobile-only {
        display: block !important;
    }
}