/* ============================================================
   GO DIRECTLY LOGISTICS — style.css
   Tech Startup Minimalist Design System
   ============================================================ */

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

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.75;
    color: #000000;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { font-weight: 300; color: #333333; line-height: 1.8; }

a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ff4500; }

/* ---------- Layout Utilities ---------- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
    border-bottom: 1px solid #e0e0e0;
}

.section:last-of-type { border-bottom: none; }

/* ---------- Orange Accent Rule ---------- */
.orange-rule {
    width: 48px;
    height: 3px;
    background: #ff4500;
    margin: 0 auto 32px;
}

.orange-rule--left { margin-left: 0; }

/* ---------- Navigation ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav__logo {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    position: relative;
}

.nav__logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff4500;
}

.nav__links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav__links a:hover,
.nav__links a.active {
    color: #000000;
    border-bottom-color: #ff4500;
}

.nav__cta {
    background: #000000;
    color: #ffffff !important;
    padding: 10px 22px;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: none !important;
}

.nav__cta:hover { background: #ff4500 !important; color: #ffffff !important; }

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000000;
    transition: all 0.2s;
}

/* ---------- Hero ---------- */
.hero {
    background: #ffffff;
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero__tagline {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 24px;
}

.hero__headline {
    max-width: 820px;
    margin: 0 auto 16px;
    color: #000000;
}

.hero__headline .orange-dot { color: #ff4500; }

.hero__sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: #888888;
    max-width: 520px;
    margin: 0 auto 48px;
}

/* Hero Form */
.hero__form-wrap {
    max-width: 560px;
    margin: 0 auto 72px;
}

.hero__form-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 300;
    font-family: inherit;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #000000;
    outline: none;
    transition: border-color 0.2s;
}

.form input:focus { border-color: #000000; }
.form input::placeholder { color: #888888; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.btn--black { background: #000000; color: #ffffff; }
.btn--black:hover { background: #ff4500; color: #ffffff; }

.btn--orange { background: #ff4500; color: #ffffff; }
.btn--orange:hover { background: #000000; color: #ffffff; }

.btn--outline {
    background: transparent;
    color: #000000;
    border: 1px solid #000000;
}
.btn--outline:hover { background: #000000; color: #ffffff; }

.btn--full { width: 100%; text-align: center; }

#form-success {
    display: none;
    margin-top: 12px;
    padding: 14px;
    background: #f5f5f5;
    border-left: 3px solid #ff4500;
    font-size: 0.9rem;
    color: #000000;
    text-align: left;
}

/* Hero Image Panel */
.hero__image-panel {
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.hero__image-panel img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero__image-caption {
    padding: 14px 20px;
    font-size: 0.8rem;
    color: #888888;
    font-weight: 300;
    border-top: 1px solid #e0e0e0;
    text-align: left;
}

/* ---------- Stats Row ---------- */
.stats {
    background: #ffffff;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stats__item {
    padding: 48px 24px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
}

.stats__item:last-child { border-right: none; }

.stats__number {
    font-size: 2.4rem;
    font-weight: 600;
    color: #ff4500;
    line-height: 1;
    margin-bottom: 8px;
}

.stats__label {
    font-size: 0.8rem;
    font-weight: 400;
    color: #888888;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ---------- Services ---------- */
.services__header {
    text-align: center;
    margin-bottom: 56px;
}

.services__header h2 { margin-bottom: 12px; }

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
}

.service-card {
    background: #ffffff;
    padding: 36px 32px;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff4500;
}

.service-card__icon {
    font-size: 1.4rem;
    margin-bottom: 16px;
    display: block;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000;
}

.service-card p {
    font-size: 0.88rem;
    color: #888888;
    line-height: 1.6;
}

/* ---------- Gallery ---------- */
.gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

.gallery__header h2 { margin-bottom: 12px; }

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

.gallery__item {
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.gallery__item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.gallery__caption {
    padding: 12px 16px;
    font-size: 0.78rem;
    color: #888888;
    font-weight: 300;
    border-top: 1px solid #e0e0e0;
}

/* ---------- Pricing ---------- */
.pricing__header {
    text-align: center;
    margin-bottom: 56px;
}

.pricing__header h2 { margin-bottom: 12px; }

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    border: 1px solid #e0e0e0;
    padding: 40px 32px;
    position: relative;
    background: #ffffff;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #e0e0e0;
}

.pricing-card--featured::before { background: #ff4500; }

.pricing-card--featured {
    border-color: #000000;
}

.pricing-card__badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    background: #ff4500;
    padding: 3px 10px;
    margin-bottom: 20px;
}

.pricing-card__tier {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 8px;
}

.pricing-card__price {
    font-size: 1.6rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.pricing-card__sub {
    font-size: 0.82rem;
    color: #888888;
    font-weight: 300;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-card__features li {
    font-size: 0.88rem;
    font-weight: 300;
    color: #333333;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card__features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ff4500;
    flex-shrink: 0;
}

/* ---------- CTA Band ---------- */
.cta-band {
    background: #000000;
    padding: 80px 0;
    text-align: center;
    border-bottom: none;
}

.cta-band h2 {
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-band p {
    color: #888888;
    margin-bottom: 36px;
    font-size: 1rem;
}

/* ---------- Footer ---------- */
.footer {
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 64px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__brand-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 12px;
}

.footer__brand-desc {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer__company-reg {
    font-size: 0.78rem;
    color: #888888;
    font-weight: 300;
    line-height: 1.8;
}

.footer__col-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 16px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 0.85rem;
    color: #888888;
    font-weight: 300;
    transition: color 0.2s;
}

.footer__links a:hover { color: #ff4500; }

.footer__bottom {
    padding-top: 28px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer__copy {
    font-size: 0.78rem;
    color: #888888;
    font-weight: 300;
}

.footer__disclaimer {
    font-size: 0.75rem;
    color: #888888;
    font-weight: 300;
    line-height: 1.6;
    max-width: 640px;
    text-align: right;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 16px 24px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner p {
    font-size: 0.82rem;
    color: #888888;
    font-weight: 300;
    margin: 0;
}

.cookie-banner a { color: #000000; text-decoration: underline; }

.cookie-banner__btn {
    background: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
}

.cookie-banner__btn:hover { background: #ff4500; }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-size: 1.6rem;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.whatsapp-float:hover { background: #128c7e; transform: scale(1.05); color: #ffffff; }

/* ---------- Contact Page ---------- */
.contact-hero {
    background: #ffffff;
    padding: 80px 0 0;
    border-bottom: 1px solid #e0e0e0;
}

.contact-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 80px;
}

.contact-card {
    border: 1px solid #e0e0e0;
    padding: 40px;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff4500;
}

.contact-card h3 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888888;
    margin-bottom: 20px;
}

.contact-card p {
    font-size: 0.9rem;
    color: #333333;
    font-weight: 300;
    line-height: 1.8;
}

.contact-card .wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    background: #25d366;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-card .wa-btn:hover { background: #128c7e; color: #ffffff; }

/* ---------- Inner Pages ---------- */
.inner-hero {
    background: #f5f5f5;
    padding: 72px 0;
    border-bottom: 1px solid #e0e0e0;
}

.inner-hero h1 { margin-bottom: 8px; }
.inner-hero p { color: #888888; font-size: 0.95rem; }

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 40px 0 12px;
    color: #000000;
}

.content-section h2:first-child { margin-top: 0; }

.content-section p {
    font-size: 0.92rem;
    color: #444444;
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin: 12px 0 16px 20px;
}

.content-section li {
    font-size: 0.92rem;
    font-weight: 300;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 6px;
}

.divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 48px 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .services__grid { grid-template-columns: 1fr 1fr; }
    .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
    .gallery__grid { grid-template-columns: 1fr 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .stats__item { border-bottom: 1px solid #e0e0e0; }
    .contact-hero__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
    .nav__links { display: none; }
    .nav__toggle { display: flex; }
    .nav__links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px 24px;
        gap: 16px;
    }

    h1 { font-size: 2rem; }
    .hero { padding: 60px 0 48px; }
    .form__row { grid-template-columns: 1fr; }
    .services__grid { grid-template-columns: 1fr; }
    .gallery__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__bottom { flex-direction: column; }
    .footer__disclaimer { text-align: left; }
    .cookie-banner { flex-direction: column; align-items: flex-start; }
}
