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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* =========================================
   Navigation
   ========================================= */

nav {
    position: fixed;
    width: 100%;
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.6rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   Hero Section
   ========================================= */

.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(40, 40, 40, 0.88)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23111111" width="1200" height="600"/><path fill="%232a2a2a" d="M0 400 Q300 350 600 400 T1200 400 V600 H0 Z"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1" d="M0 300 Q300 250 600 300 T1200 300 M0 350 Q300 300 600 350 T1200 350"/></svg>');
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-icon {
    height: 100px;
    width: auto;
    margin: 0 auto 1.75rem;
    display: block;
    opacity: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    color: #d4af37;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: #cccccc;
}

/* =========================================
   CTA Button
   ========================================= */

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #d4af37;
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.cta-button--hero {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 2.25rem 0.55rem 0.55rem;
    font-size: 1.4rem;
}

.btn-icon-wrap {
    position: relative;
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.btn-icon {
    position: absolute;
    inset: 0;
    height: 50px;
    width: 50px;
    object-fit: contain;
    margin-left: 10px;
    transition: opacity 0.3s ease;
}

.btn-icon-hover {
    opacity: 0;
}

.cta-button--hero:hover .btn-icon-default {
    opacity: 0;
}

.cta-button--hero:hover .btn-icon-hover {
    opacity: 1;
}

/* =========================================
   Introduction Section
   ========================================= */

.intro {
    padding: 5rem 5%;
    background: #fff;
}

.intro-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.15rem;
    line-height: 1.95;
    color: #444444;
}

/* =========================================
   Services Section
   ========================================= */

.services {
    padding: 6rem 5%;
    background: #f0f0f0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #111111;
}

.section-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: #d4af37;
    flex-shrink: 0;
}

.services-body {
    max-width: 860px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.95;
    color: #555555;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #111111;
}

.service-card p {
    color: #666666;
    line-height: 1.8;
}

/* =========================================
   Regions Section
   ========================================= */

.regions {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #fff;
}

.regions-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.regions-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.regions-text h2 span {
    color: #d4af37;
}

.regions-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 2rem;
}

.regions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.region-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #d4af37;
}

.region-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}

/* =========================================
   Feature Section
   ========================================= */

.feature {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-bg {
    position: absolute;
    inset: 0;
    background: url('../images/ShippingBackground.jpg') center center / cover no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.feature:hover .feature-bg {
    transform: scale(1);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(12, 12, 12, 0.93) 0%,
        rgba(12, 12, 12, 0.72) 45%,
        rgba(12, 12, 12, 0.28) 100%
    );
}

.feature-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text {
    color: #fff;
}

.feature-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    border-left: 3px solid #d4af37;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.feature-text h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.feature-text h2 span {
    color: #d4af37;
}

.feature-text p {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid #d4af37;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(8px);
    transition: background 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
}

.stat-card .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #c0c0c0;
    letter-spacing: 0.5px;
}

/* =========================================
   Footer
   ========================================= */

footer {
    background: #111111;
    color: #fff;
    padding: 4rem 5% 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-logo img {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 1.25rem;
}

.footer-logo p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #999;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    border-color: #d4af37;
    color: #d4af37;
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-col h4 {
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    color: #999;
    font-size: 0.95rem;
    padding: 0.35rem 0;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.footer-contact-email {
    display: inline-block;
    margin-top: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.footer-contact-email:hover {
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

/* =========================================
   Inner Page Hero
   ========================================= */

.hero--inner {
    height: 60vh;
    min-height: 420px;
}

.hero--inner .hero-content {
    max-width: 860px;
}

.hero-subheadline {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1.25rem;
    display: block;
}

/* =========================================
   Service Cards — List Variant
   ========================================= */

.service-card--list {
    text-align: left;
}

.service-card--list .service-icon {
    margin: 0 0 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card ul li {
    color: #666666;
    font-size: 0.97rem;
    padding: 0.45rem 0 0.45rem 1.4rem;
    position: relative;
    line-height: 1.5;
    border-bottom: 1px solid #ebebeb;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-card .card-intro {
    color: #555555;
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

/* =========================================
   About Section
   ========================================= */

.about-section {
    padding: 6rem 5%;
    background: #fff;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-col h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
}

.about-col p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444444;
}

/* =========================================
   Founder Section
   ========================================= */

.founder-section {
    padding: 6rem 5%;
    background: #1a1a1a;
    color: #fff;
}

.founder-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.founder-title {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 2rem;
    display: block;
}

.founder-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #cccccc;
}

/* =========================================
   Network Section
   ========================================= */

.network-section {
    padding: 6rem 5%;
    background: #f0f0f0;
}

.network-grid {
    max-width: 1100px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.network-item {
    background: #fff;
    padding: 1.25rem 1.5rem 1.25rem 2rem;
    border-left: 3px solid #d4af37;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    font-size: 0.97rem;
    color: #333333;
    line-height: 1.5;
}

/* =========================================
   Contact Section
   ========================================= */

.contact-section {
    padding: 6rem 5%;
    background: #fff;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-card {
    background: #f0f0f0;
    padding: 2.5rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.2rem;
}

.contact-info-card .contact-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d4af37;
    display: block;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #444;
}

.contact-detail svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: #d4af37;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: #d4af37;
}

.contact-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: opacity 0.2s ease;
}

.contact-wa-btn:hover {
    opacity: 0.88;
}

.contact-wa-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Form */
.contact-form h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
}

.contact-form .form-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
    display: block;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    background: #fafafa;
    color: #1a1a1a;
    font-family: inherit;
    font-size: 0.97rem;
    border-radius: 4px;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d4af37;
    background: #fff;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    background: #1a1a1a;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
    background: #d4af37;
    color: #111;
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-message--success {
    background: #f0faf4;
    border-left: 3px solid #2ecc71;
    color: #1a6b3a;
}

.form-message--error {
    background: #fff5f5;
    border-left: 3px solid #e74c3c;
    color: #7b2020;
}

/* Sent state — grey out form fields after successful submission */
.form-fields--sent {
    opacity: 0.4;
    pointer-events: none;
    user-select: none;
}

/* Reset button shown inside success message */
.form-reset-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 24px;
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.form-reset-btn:hover {
    background: #d4af37;
    color: #111111;
}

/* Required field asterisk */
.req {
    color: #d4af37;
    margin-left: 2px;
}

/* =========================================
   Responsive
   ========================================= */

@media (max-width: 900px) {
    .feature-content {
        grid-template-columns: 1fr;
    }

    .feature-text h2 {
        font-size: 2.2rem;
    }

    .feature-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(18, 18, 18, 0.99);
        flex-direction: column;
        gap: 0;
        padding: 0.5rem 0 1rem;
        backdrop-filter: blur(10px);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 0.85rem 5%;
        font-size: 1rem;
    }

    .nav-links a::after {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .regions-content {
        grid-template-columns: 1fr;
    }

    .regions-list {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
