/* ===== Simrol Indane Gramin Vitrak — Styles ===== */
:root {
    --orange: #ee7d2d;
    --orange-hover: #d96a1d;
    --blue: #1f3a8f;
    --blue-hover: #15296a;
    --ink: #0f172a;
    --muted: #475569;
    --border: #e2e8f0;
    --alt: #fff8f2;
    --white: #ffffff;
    --green: #10b981;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, Segoe UI,
        Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
    font-family: "Outfit", "IBM Plex Sans", sans-serif;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--orange); color: #fff; }

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

/* ===== Navbar ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border);
}
.nav-inner {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-brand img { height: 40px; width: auto; }
.brand-text { line-height: 1.2; }
.brand-text .name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.brand-text .sub {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: #64748b;
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
}
.nav-call:hover { color: var(--orange); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
    background: var(--orange);
    color: #fff;
}
.btn-primary:hover { background: var(--orange-hover); }
.btn-secondary {
    background: var(--blue);
    color: #fff;
}
.btn-secondary:hover { background: var(--blue-hover); }
.btn-outline {
    background: #fff;
    color: var(--ink);
    border: 1px solid #cbd5e1;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 14px 26px; font-size: 16px; }

.nav-toggle {
    display: none;
    padding: 8px;
    border-radius: 6px;
}
.nav-toggle:hover { background: #f1f5f9; }

.nav-mobile {
    display: none;
    border-top: 1px solid var(--border);
    background: #fff;
    padding: 12px 20px;
    flex-direction: column;
    gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}
.nav-mobile a:hover { background: #f1f5f9; }
.nav-mobile .btn { margin-top: 8px; }

/* ===== Hero ===== */
.hero {
    padding: 130px 0 60px;
    position: relative;
    background:
        radial-gradient(circle at 15% 20%, rgba(238, 125, 45, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(31, 58, 143, 0.07) 0%, transparent 40%);
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    color: #334155;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.hero h1 {
    margin-top: 22px;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
    margin-top: 20px;
    font-size: 17px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 600px;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    font-size: 14px;
    color: var(--muted);
}
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.check {
    color: var(--green);
    font-weight: 700;
}

.hero-card {
    position: relative;
}
.hero-card .stripe {
    position: absolute;
    inset: -12px;
    background: repeating-linear-gradient(
        135deg,
        #ffffff 0,
        #ffffff 14px,
        #fff1e1 14px,
        #fff1e1 28px
    );
    border-radius: 28px;
    transform: rotate(-1deg);
    z-index: 0;
}
.hero-card-inner {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.25);
    background: #fff;
}
.hero-card-inner img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}
.delivery-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.delivery-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ===== Stats ===== */
.stats {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.stats > div {
    background: #fff;
    padding: 22px 20px;
}
.stats .value {
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: 700;
}
.stats .label {
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
}

/* ===== Section common ===== */
section.block {
    padding: 80px 0;
}
section.block.alt {
    background: var(--alt);
}
.eyebrow {
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
}
section.block h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    margin-top: 8px;
    line-height: 1.15;
}
.section-head {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}
.section-head.row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}
.section-head p {
    color: var(--muted);
    margin: 0;
    max-width: 460px;
}

/* ===== Services ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.18);
}
.service-card .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff1e1;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: background 0.2s, color 0.2s;
}
.service-card:hover .service-icon {
    background: var(--orange);
    color: #fff;
}
.badge-mini {
    font-size: 10px;
    letter-spacing: 0.16em;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    background: #f1f5f9;
    padding: 5px 10px;
    border-radius: 999px;
}
.service-card h3 {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 600;
}
.service-card p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
.service-card .arrow {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.2s;
}
.service-card .arrow:hover { gap: 10px; }

/* ===== Safety ===== */
.safety-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: flex-start;
}
.safety-grid .left p {
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.65;
}
.helpline {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff1e1;
    border: 1px solid #fcd9b5;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    color: #334155;
}
.helpline strong { color: var(--ink); }
.safety-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.safety-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    transition: box-shadow 0.2s;
}
.safety-card:hover { box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.14); }
.safety-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fef3c7;
    color: #d97706;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.safety-card h3 {
    margin-top: 16px;
    font-size: 17px;
    font-weight: 600;
}
.safety-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
}
.info-card {
    display: flex;
    gap: 14px;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 14px;
    padding: 16px;
}
.info-card + .info-card { margin-top: 14px; }
.info-icon {
    color: var(--orange);
    font-size: 20px;
    margin-top: 2px;
}
.info-card .label {
    font-size: 12px;
    color: #64748b;
}
.info-card .value {
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
    margin-top: 2px;
}
.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}
.info-row .info-card { margin-top: 0; }

.form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
}
.field:first-of-type { margin-top: 0; }
.field label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(238, 125, 45, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.form-actions .btn { flex: 1; min-width: 200px; padding: 13px 20px; font-size: 15px; }

.form-note {
    margin-top: 14px;
    font-size: 12px;
    color: #64748b;
}

.toast {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 100;
    background: var(--ink);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
    max-width: 320px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.error { background: #b91c1c; }
.toast.success { background: #15803d; }

.map-wrap {
    margin-top: 24px;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ===== Footer ===== */
footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 60px 0 0;
    margin-top: 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr 1fr;
    gap: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-logo-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: inline-flex;
}
.footer-logo-wrap img { height: 40px; width: auto; }
.footer-brand .name {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #fff;
}
.footer-brand .sub {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: #94a3b8;
}
.footer-col h4 {
    font-size: 12px;
    letter-spacing: 0.18em;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}
.footer-col .icon { color: var(--orange); margin-right: 8px; }
.footer-col a:hover { color: #fff; }
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
}
.footer-bottom {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #94a3b8;
}

/* ===== Legal pages ===== */
.legal {
    padding: 120px 0 60px;
}
.legal .back {
    color: #64748b;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.legal .back:hover { color: var(--orange); }
.legal h1 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin-top: 22px;
}
.legal .updated { color: #64748b; font-size: 14px; margin-top: 10px; }
.legal article {
    margin-top: 40px;
    max-width: 720px;
    color: #334155;
    font-size: 16px;
    line-height: 1.75;
}
.legal article h2 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 36px 0 10px;
    color: var(--ink);
}
.legal article p { margin: 10px 0; }
.legal article ul { padding-left: 20px; margin: 10px 0; }
.legal article li { margin: 6px 0; }

/* ===== Animations ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-card-inner img { height: 360px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .safety-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-head.row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
    .nav-links, .nav-actions .nav-call, .nav-actions .btn { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-inner { height: 60px; }
    .brand-text .name { font-size: 13px; }
    .hero { padding: 100px 0 50px; }
    .stats { grid-template-columns: repeat(2, 1fr); }
    section.block { padding: 60px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .safety-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .info-row { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
