/* ============================================
   W&W Import/Export — Stylesheet
   Colors: deep navy + warm orange + clean whites
   ============================================ */

:root {
    --navy: #0d2847;
    --navy-dark: #081a2f;
    --navy-light: #1e3a5f;
    --orange: #e8843a;
    --orange-dark: #c96a24;
    --orange-light: #f4a468;
    --cream: #faf6f0;
    --gray-50: #f8f9fb;
    --gray-100: #eef1f5;
    --gray-200: #dde2eb;
    --gray-400: #8993a4;
    --gray-600: #4a5468;
    --gray-800: #1f2937;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(13, 40, 71, 0.06);
    --shadow-md: 0 8px 24px rgba(13, 40, 71, 0.08);
    --shadow-lg: 0 20px 60px rgba(13, 40, 71, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { display: block; max-width: 100%; }

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; font-weight: 600; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 12px;
}

.eyebrow-light { color: var(--orange-light); }

/* ============ HEADER ============ */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--navy);
}

.logo-mark {
    background: var(--navy);
    color: var(--white);
    padding: 6px 10px;
    border-radius: 6px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.logo-text {
    font-size: 0.95rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 10px 18px;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--navy);
    background: var(--gray-50);
}

.nav-link.active {
    color: var(--navy);
    font-weight: 600;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
    position: relative;
    color: var(--white);
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    z-index: -1;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mix-blend-mode: luminosity;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(232, 132, 58, 0.25), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 40, 71, 0.6), transparent 50%),
        linear-gradient(135deg, rgba(13, 40, 71, 0.7) 0%, rgba(8, 26, 47, 0.85) 100%);
}

.hero-content { position: relative; max-width: 900px; }

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 .accent {
    color: var(--orange-light);
    font-style: italic;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--orange-light);
    line-height: 1;
    margin-bottom: 4px;
}

.stat span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============ PAGE HERO ============ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 132, 58, 0.12), transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    position: relative;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232, 132, 58, 0.35);
}

.btn-primary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 132, 58, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    background: var(--cream);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-light);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: 0.95rem; }

/* ============ PRODUCTS PREVIEW ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--card-color, var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card:hover::after { transform: scaleX(1); }

.product-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--card-color, var(--navy)), color-mix(in srgb, var(--card-color, var(--navy)) 60%, black));
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img { transform: scale(1.06); }

.product-card-body { padding: 24px 24px 28px; }

.product-card h3 { margin-bottom: 8px; color: var(--navy); }
.product-card p { color: var(--gray-600); font-size: 0.93rem; }

.product-card-cta {
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 28px;
}

.product-card-cta h3, .product-card-cta p { color: var(--white); }
.product-card-cta p { color: rgba(255, 255, 255, 0.75); margin-bottom: 16px; }

.card-link {
    color: var(--orange-light);
    font-weight: 600;
    font-size: 0.95rem;
}

.card-link:hover { color: var(--white); }

/* ============ WHY GRID ============ */
.why-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-content h2 { margin-bottom: 20px; }
.why-content p { color: var(--gray-600); margin-bottom: 24px; font-size: 1.05rem; }

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

.check-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    color: var(--gray-800);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: var(--orange);
    border-radius: 50%;
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 19px;
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(-45deg);
}

.why-visual {
    position: relative;
}

.why-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(232, 132, 58, 0.2), transparent 60%);
}

.why-card-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    position: relative;
}

.why-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 16px;
    position: relative;
}

.why-card p { color: rgba(255, 255, 255, 0.85); position: relative; }

.why-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 24px 0;
    position: relative;
}

.why-card-contact {
    position: relative;
    color: var(--orange-light);
    font-weight: 600;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    background:
        radial-gradient(circle at 70% 50%, rgba(232, 132, 58, 0.2), transparent 50%),
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-inner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============ ABOUT PAGE ============ */
.two-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}

.two-col h2 { margin-bottom: 20px; }
.two-col p { color: var(--gray-600); margin-bottom: 16px; }

.info-box {
    background: var(--gray-50);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    border-left: 4px solid var(--orange);
}

.info-box h3 { margin-bottom: 20px; }

.value-list {
    list-style: none;
}

.value-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

.value-list li:last-child { border-bottom: 0; }

.value-list strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.value-list span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ============ PROCESS ============ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.process-step {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius);
    position: relative;
    border: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.process-step h3 { margin-bottom: 8px; }
.process-step p { color: var(--gray-600); font-size: 0.95rem; }

/* ============ LOCATION ============ */
.location-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.location-info {
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.location-info h3 {
    color: var(--white);
    margin-bottom: 16px;
}

.location-info p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.location-info a { color: var(--orange-light); }

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
}

/* ============ PRODUCT DETAILS ============ */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.product-detail:last-child { margin-bottom: 0; }

.product-detail-reverse {
    grid-template-columns: 1.5fr 1fr;
}

.product-detail-reverse .product-detail-visual { order: 2; }

.product-detail-visual {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 65%, black));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.product-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-detail-visual:hover img { transform: scale(1.04); }

.product-detail-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--accent) 30%, transparent) 100%);
    pointer-events: none;
}

.product-detail-content h2 { margin: 12px 0 20px; }
.product-detail-content p { color: var(--gray-600); margin-bottom: 24px; font-size: 1.05rem; }

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--gray-800);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 48px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-info-card h2 {
    color: var(--white);
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--orange-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-item p { color: rgba(255, 255, 255, 0.9); }
.contact-item a { color: var(--white); }
.contact-item a:hover { color: var(--orange-light); }

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

.contact-form h2 { margin-bottom: 32px; }

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

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(232, 132, 58, 0.15);
}

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

.form-success {
    margin-top: 20px;
    padding: 16px;
    background: #e8f5ed;
    color: #2d6a4f;
    border-radius: 8px;
    border-left: 4px solid #2d6a4f;
    font-weight: 500;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 16/7;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    padding: 5px 0;
    font-size: 0.93rem;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange-light); }

.footer-col p {
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.logo-footer .logo-text { color: rgba(255, 255, 255, 0.9); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 24px;
        border-bottom: 1px solid var(--gray-100);
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link { padding: 14px 16px; }

    .why-grid,
    .two-col,
    .location-card,
    .contact-grid,
    .product-detail,
    .product-detail-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-reverse .product-detail-visual { order: 0; }

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

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

    .section { padding: 70px 0; }
    .hero { padding: 80px 0 70px; }
    .page-hero { padding: 70px 0 50px; }

    .hero-stats { gap: 32px; }
    .stat strong { font-size: 2rem; }

    .contact-info-card,
    .contact-form,
    .location-info { padding: 32px; }
}

@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { width: 100%; }
}
