/* =========================================
   ORESEF SHIPMENTS & LOGISTICS
   PHASE 1 — CORE STYLES
========================================= */

:root {
    --oresef-orange: #f97316;
    --oresef-orange-dark: #ea580c;
    --oresef-navy: #0f172a;
    --oresef-navy-light: #1e293b;
    --oresef-blue: #2563eb;
    --oresef-white: #ffffff;
    --oresef-light: #f8fafc;
    --oresef-gray: #64748b;
    --oresef-border: #e2e8f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--oresef-light);
    color: var(--oresef-navy);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

a {
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

/* =========================================
   NAVIGATION
========================================= */

.oresef-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(15, 23, 42, 0.96);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: all 0.3s ease;
}

.oresef-navbar .navbar-brand {
    font-family: "Poppins", sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--oresef-white);
    letter-spacing: 0.5px;
}

.oresef-navbar .navbar-brand i {
    color: var(--oresef-orange);
}

.oresef-navbar .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    transition: color 0.25s ease;
}

.oresef-navbar .nav-link:hover,
.oresef-navbar .nav-link.active {
    color: var(--oresef-orange) !important;
}

.oresef-track-btn {
    background: var(--oresef-orange);
    color: var(--oresef-white);
    border: none;
    font-weight: 700;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    transition: all 0.25s ease;
}

.oresef-track-btn:hover {
    background: var(--oresef-orange-dark);
    color: var(--oresef-white);
    transform: translateY(-2px);
}

/* =========================================
   GENERAL SECTIONS
========================================= */

section {
    position: relative;
}

.section-padding {
    padding: 90px 0;
}

.section-label {
    display: inline-block;

    color: var(--oresef-orange);

    font-size: 0.8rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--oresef-navy);
}

.section-text {
    color: var(--oresef-gray);
    max-width: 650px;
}

/* =========================================
   BUTTONS
========================================= */

.oresef-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: var(--oresef-orange);
    color: var(--oresef-white);

    padding: 14px 24px;

    border-radius: 50px;

    font-weight: 700;

    border: 2px solid var(--oresef-orange);

    transition: all 0.3s ease;
}

.oresef-btn-primary:hover {
    background: var(--oresef-orange-dark);
    border-color: var(--oresef-orange-dark);
    color: var(--oresef-white);
    transform: translateY(-3px);
}

.oresef-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background: transparent;
    color: var(--oresef-white);

    padding: 14px 24px;

    border-radius: 50px;

    font-weight: 700;

    border: 2px solid rgba(255, 255, 255, 0.65);

    transition: all 0.3s ease;
}

.oresef-btn-outline:hover {
    background: var(--oresef-white);
    color: var(--oresef-navy);
    transform: translateY(-3px);
}

/* =========================================
   PLACEHOLDER SECTIONS
========================================= */

#hero {
    min-height: 80vh;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#tracking,
#services,
#stats,
#about,
#why-us,
#process,
#testimonials,
#contact-cta {
    min-height: 200px;
    background: var(--oresef-white);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .oresef-navbar .navbar-collapse {
        background: var(--oresef-navy);
        padding: 20px;
        border-radius: 0 0 16px 16px;
    }

    .oresef-navbar .nav-link {
        padding: 12px 5px !important;
    }

    .oresef-track-btn {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {

    .section-padding {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}
/* =========================================
   MOBILE MENU BUTTON
========================================= */

.oresef-navbar .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 10px;
}

.oresef-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.oresef-navbar .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
/* =========================================
   HERO SECTION
========================================= */

.oresef-hero {
    position: relative;

    min-height: 82vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #07111f 0%,
            #0f172a 55%,
            #172554 100%
        );
}

.oresef-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -150px;

    background: rgba(249, 115, 22, 0.16);

    border-radius: 50%;

    filter: blur(10px);
}

.oresef-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(37, 99, 235, 0.20),
            transparent 35%
        );
}

.min-vh-75 {
    min-height: 82vh;
}

/* Hero text */

.hero-eyebrow {
    display: inline-flex;
    align-items: center;

    color: #fb923c;

    font-size: 0.78rem;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.hero-title {
    color: #ffffff;

    font-size: clamp(2.5rem, 6vw, 5rem);

    font-weight: 800;

    line-height: 1.05;

    margin-bottom: 25px;

    max-width: 760px;
}

.hero-title span {
    display: block;
    color: #fb923c;
}

.hero-text {
    color: rgba(255, 255, 255, 0.78);

    font-size: 1.08rem;

    max-width: 620px;

    margin-bottom: 30px;
}

/* Hero buttons */

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 35px;
}

/* Trust points */

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.85rem;
}

.hero-trust div {
    display: flex;

    align-items: center;

    gap: 7px;
}

.hero-trust i {
    color: #fb923c;
}

/* =========================================
   HERO TRACKING CARD
========================================= */

.hero-tracking-card {
    position: relative;

    padding: 28px;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 22px;

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);

    color: #ffffff;
}

.tracking-card-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 18px;
}

.tracking-card-header small {
    color: #fb923c;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.tracking-card-header h3 {
    font-size: 1.35rem;

    margin: 5px 0 0;

    color: #102a43;
}

.tracking-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f97316;

    border-radius: 14px;

    flex-shrink: 0;
}

.hero-tracking-card > p {
    color: rgba(255, 255, 255, 0.70);

    font-size: 0.9rem;

    margin-bottom: 20px;
}

.tracking-input {
    display: flex;

    align-items: center;

    gap: 10px;

    background: #ffffff;
  border: 1px solid #d6dde5;

    padding: 4px 16px;

    border-radius: 12px;

    margin-bottom: 12px;
}

.tracking-input i {
    color: #64748b;
}

.tracking-input input {
    width: 100%;

    border: none;

    outline: none;

    padding: 13px 5px;

    font-family: "Inter", sans-serif;

    color: #0f172a;
}

.tracking-search-btn {
    width: 100%;

    border: none;

    border-radius: 12px;

    padding: 14px;

    background: #f97316;

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.tracking-search-btn:hover {
    background: #ea580c;

    transform: translateY(-2px);
}

.tracking-help {
    margin-top: 16px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.75rem;

    text-align: center;
}

.tracking-help i {
    color: #22c55e;

    margin-right: 5px;
}

/* =========================================
   HERO MOBILE
========================================= */

@media (max-width: 991px) {

    .oresef-hero {
      
        min-height: auto;

        padding: 80px 0 60px;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2.4rem, 9vw, 4rem);
    }

    .hero-tracking-card {
        margin-top: 20px;
    }
}

@media (max-width: 576px) {

    .oresef-hero {
        padding: 65px 0 50px;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;

        gap: 10px;
    }

    .hero-tracking-card {
        padding: 22px;
    }
}
.tracking-result {
    display: block;
    width: 90%;
    max-width: 700px;
    margin: 30px auto;
    padding: 25px;
    background: #ffffff;
    color: #222222;
    border-radius: 20px;
    box-sizing: border-box;
}
/* ORESEF TRACKING RESULT DESIGN */

.tracking-result {
    background: #ffffff;
    color: #1f2937;
    width: 90%;
    max-width: 760px;
    margin: 30px auto;
    padding: 28px;
    border-radius: 20px;
    box-sizing: border-box;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tracking-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.tracking-result-header small {
    display: block;
    color: #f28c18;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.tracking-result-header h3 {
    margin: 0;
    font-size: 28px;
    color: #17233b;
}

.tracking-status {
    display: inline-block;
    background: #e8f7ec;
    color: #238b45;
    padding: 9px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.tracking-route {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin: 25px 0;
}

.route-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.route-dot {
    width: 13px;
    height: 13px;
    background: #f28c18;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}

.route-line {
    width: 2px;
    background: #d8dde5;
    margin-left: 6px;
}

.route-point strong {
    display: block;
    color: #17233b;
    font-size: 16px;
}

.route-point small {
    display: block;
    color: #7b8494;
    margin-top: 4px;
}

.tracking-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    background: #f6f8fb;
    border-radius: 14px;
    margin-bottom: 25px;
}

.tracking-details small {
    display: block;
    color: #7b8494;
    margin-bottom: 5px;
}

.tracking-details strong {
    color: #17233b;
}

.tracking-timeline {
    border-left: 2px solid #e1e5eb;
    margin-left: 8px;
    padding-left: 22px;
}

.timeline-item {
    position: relative;
    padding-bottom: 22px;
}

.timeline-item > span {
    position: absolute;
    left: -31px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d8dde5;
    border: 3px solid #ffffff;
}

.timeline-item.completed > span {
    background: #f28c18;
}

.timeline-item.active > span {
    background: #238b45;
    box-shadow: 0 0 0 5px #e8f7ec;
}

.timeline-item strong {
    display: block;
    color: #17233b;
    margin-bottom: 4px;
}

.timeline-item small {
    color: #7b8494;
}

.tracking-message {
    padding: 18px;
    margin-top: 25px;
    background: #fff7ed;
    color: #9a5b13;
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 600px) {
    .tracking-result {
        width: 94%;
        padding: 20px;
    }

    .tracking-result-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tracking-result-header h3 {
        font-size: 24px;
    }

    .tracking-details {
        grid-template-columns: 1fr;
    }
}
/* ORESEF ROUTE IMPROVEMENT */

.tracking-route {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
}

.tracking-route .route-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.tracking-route .route-line {
    width: 45px;
    height: 2px;
    background: #d8dde5;
    margin: 0 5px;
    flex-shrink: 0;
}

.tracking-route .route-dot {
    width: 13px;
    height: 13px;
    background: #f28c18;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}
/* ORESEF ROUTE LINE */

.tracking-route .route-line {
    flex: 1;
    width: auto;
    max-width: 180px;
    height: 3px;
    background: #d8dde5;
    border-radius: 3px;
}
/* ORESEF ROUTE CONNECTION */

.tracking-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 28px 0;
}

.tracking-route .route-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
}

.tracking-route .route-line {
    flex: 1;
    width: auto;
    height: 2px;
    background: #d9dee6;
    margin: 8px 5px 0;
}

.tracking-route .route-dot {
    width: 14px;
    height: 14px;
    background: #f28c18;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.tracking-route .route-point strong {
    font-size: 16px;
    color: #17233b;
}

.tracking-route .route-point small {
    margin-top: 5px;
    color: #7b8494;
}
/* ORESEF ROUTE POLISH */

.tracking-route {
    min-height: 70px;
}

.tracking-route .route-point {
    min-width: 0;
}

.tracking-route .route-point strong {
    line-height: 1.35;
}

.tracking-route .route-line {
    min-width: 35px;
    background: #c8ced8;
    position: relative;
}

.tracking-route .route-line::after {
    content: "›";
    position: absolute;
    right: 35%;
    top: -12px;
    color: #f28c18;
    font-size: 22px;
    font-weight: 700;
}

@media (max-width: 600px) {
    .tracking-route {
        gap: 8px;
    }

    .tracking-route .route-point strong {
        font-size: 15px;
    }

    .tracking-route .route-line {
        min-width: 25px;
    }
}
/* ORESEF TIMELINE POLISH */

.tracking-timeline {
    margin-top: 10px;
    padding-left: 28px;
    border-left: 2px solid #e1e5eb;
}

.timeline-item {
    position: relative;
    padding: 0 0 26px 0;
    min-height: 55px;
}

.timeline-item:last-child {
    padding-bottom: 5px;
}

.timeline-item > span {
    position: absolute;
    left: -37px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #d5dae2;
    border: 3px solid #ffffff;
    box-sizing: content-box;
}

.timeline-item.completed > span {
    background: #f28c18;
}

.timeline-item.active > span {
    background: #238b45;
    box-shadow: 0 0 0 5px #e8f7ec;
}

.timeline-item strong {
    display: block;
    font-size: 16px;
    line-height: 1.3;
    color: #17233b;
    margin-bottom: 6px;
}

.timeline-item small {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #7b8494;
}
/* ================================
   ORESEF SERVICES SECTION
================================ */

#services {
    padding: 90px 6%;
    background: #f7f9fc;
}

#services .section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

#services .section-heading span {
    display: block;
    margin-bottom: 12px;
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

#services .section-heading h2 {
    margin: 0 0 16px;
    color: #17233b;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

#services .section-heading p {
    margin: 0;
    color: #6f7b8f;
    font-size: 16px;
    line-height: 1.7;
}

/* Services grid */

#services .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service cards */

#services .service-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e9f0;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(23, 35, 59, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(23, 35, 59, 0.12);
}

/* Service icon */

#services .service-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1e3;
    border-radius: 14px;
    font-size: 28px;
}

/* Service title */

#services .service-card h3 {
    margin: 0 0 12px;
    color: #17233b;
    font-size: 21px;
    line-height: 1.3;
}

/* Service description */

#services .service-card p {
    margin: 0 0 20px;
    color: #6f7b8f;
    font-size: 15px;
    line-height: 1.7;
}

/* Learn more link */

#services .service-card a {
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

#services .service-card a:hover {
    text-decoration: underline;
}

/* Tablet */

@media (max-width: 900px) {

    #services {
        padding: 70px 5%;
    }

    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #services .section-heading h2 {
        font-size: 32px;
    }
}

/* Mobile */

@media (max-width: 600px) {

    #services {
        padding: 60px 20px;
    }

    #services .section-heading {
        margin-bottom: 35px;
    }

    #services .section-heading h2 {
        font-size: 28px;
    }

    #services .section-heading p {
        font-size: 15px;
    }

    #services .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #services .service-card {
        padding: 24px;
    }
}
/* ================================
   ORESEF STATISTICS
================================ */

#stats {
    padding: 70px 6%;
    background: #17233b;
}

#stats .stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

#stats .stat-item {
    padding: 20px 15px;
}

#stats .stat-item strong {
    display: block;
    margin-bottom: 8px;
    color: #f28c18;
    font-size: 38px;
    line-height: 1.1;
    font-weight: 700;
}

#stats .stat-item span {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

/* Tablet */

@media (max-width: 900px) {

    #stats {
        padding: 55px 5%;
    }

    #stats .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    #stats .stat-item strong {
        font-size: 32px;
    }
}

/* Mobile */

@media (max-width: 600px) {

    #stats {
        padding: 45px 20px;
    }

    #stats .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }

    #stats .stat-item {
        padding: 18px 8px;
    }

    #stats .stat-item strong {
        font-size: 28px;
    }

    #stats .stat-item span {
        font-size: 13px;
    }
}
/* =========================
   ORESEF ABOUT SECTION
   ========================= */

#about {
    padding: 90px 6%;
    background: #f7f8fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-content h2 {
    margin: 0 0 22px;
    color: #17233b;
    font-size: 42px;
    line-height: 1.15;
}

.about-content p {
    margin: 0 0 18px;
    color: #6f7b8f;
    font-size: 16px;
    line-height: 1.8;
}

.about-button {
    display: inline-block;
    margin-top: 12px;
    padding: 13px 22px;
    background: #f28c18;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.about-button:hover {
    transform: translateY(-2px);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(23, 35, 59, 0.06);
}

.about-highlight strong {
    min-width: 42px;
    color: #f28c18;
    font-size: 18px;
}

.about-highlight h3 {
    margin: 0 0 7px;
    color: #17233b;
    font-size: 19px;
}

.about-highlight p {
    margin: 0;
    color: #7b8494;
    font-size: 14px;
    line-height: 1.6;
}


/* Mobile */
@media (max-width: 768px) {

    #about {
        padding: 70px 20px;
    }

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

    .about-content h2 {
        font-size: 32px;
    }

    .about-highlight {
        padding: 20px;
    }
}
/* =========================
   ORESEF WHY CHOOSE US
   ========================= */

#why-us {
    padding: 90px 6%;
    background: #ffffff;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
}

#why-us .section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

#why-us .section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

#why-us .section-heading h2 {
    margin: 0 0 18px;
    color: #17233b;
    font-size: 40px;
    line-height: 1.2;
}

#why-us .section-heading p {
    margin: 0;
    color: #7b8494;
    font-size: 16px;
    line-height: 1.7;
}

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

.why-us-card {
    padding: 30px 26px;
    background: #f8f9fb;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-us-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(23, 35, 59, 0.08);
}

.why-us-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff1df;
    border-radius: 12px;
    font-size: 25px;
}

.why-us-card h3 {
    margin: 0 0 12px;
    color: #17233b;
    font-size: 20px;
    line-height: 1.3;
}

.why-us-card p {
    margin: 0;
    color: #7b8494;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    #why-us {
        padding: 70px 20px;
    }

    #why-us .section-heading {
        margin-bottom: 35px;
    }

    #why-us .section-heading h2 {
        font-size: 32px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-us-card {
        padding: 24px 22px;
    }
}
/* =========================
   ORESEF SHIPPING PROCESS
   ========================= */

#process {
    padding: 90px 6%;
    background: #f7f8fa;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
}

#process .section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    text-align: center;
}

#process .section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

#process .section-heading h2 {
    margin: 0 0 18px;
    color: #17233b;
    font-size: 40px;
    line-height: 1.2;
}

#process .section-heading p {
    margin: 0;
    color: #7b8494;
    font-size: 16px;
    line-height: 1.7;
}

.process-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Vertical connecting line */
.process-steps::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #d8dde5;
}

.process-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(23, 35, 59, 0.05);
}

.process-number {
    position: relative;
    z-index: 2;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff1df;
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #f28c18;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 3px 10px rgba(23, 35, 59, 0.08);
}

.process-content {
    padding-top: 4px;
}

.process-content h3 {
    margin: 0 0 10px;
    color: #17233b;
    font-size: 21px;
    line-height: 1.3;
}

.process-content p {
    margin: 0;
    color: #7b8494;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 768px) {

    #process {
        padding: 70px 20px;
    }

    #process .section-heading {
        margin-bottom: 38px;
    }

    #process .section-heading h2 {
        font-size: 32px;
    }

    .process-steps {
        gap: 18px;
    }

    .process-steps::before {
        left: 27px;
        top: 27px;
        bottom: 27px;
    }

    .process-step {
        gap: 18px;
        padding: 22px 18px;
    }

    .process-number {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
        font-size: 14px;
    }

    .process-content h3 {
        font-size: 18px;
    }
}
/* =========================
   ORESEF TESTIMONIALS
   ========================= */

#testimonials {
    padding: 90px 6%;
    background: #f7f8fa;
}

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

#testimonials .section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

#testimonials .section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

#testimonials .section-heading h2 {
    margin: 0 0 18px;
    color: #17233b;
    font-size: 40px;
    line-height: 1.2;
}

#testimonials .section-heading p {
    margin: 0;
    color: #7b8494;
    font-size: 16px;
    line-height: 1.7;
}

/* Testimonial cards */

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

.testimonial-card {
    position: relative;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(23, 35, 59, 0.06);
}

.testimonial-quote {
    color: #f28c18;
    font-size: 48px;
    line-height: 0.8;
    font-weight: 700;
    margin-bottom: 20px;
}

.testimonial-card > p {
    margin: 0 0 26px;
    color: #5f6b7d;
    font-size: 15px;
    line-height: 1.8;
}

.testimonial-author {
    padding-top: 18px;
    border-top: 1px solid #e5e8ed;
}

.testimonial-author strong {
    display: block;
    color: #17233b;
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-author small {
    display: block;
    color: #8a94a5;
    font-size: 13px;
}

/* Tablet */

@media (max-width: 900px) {

    #testimonials {
        padding: 70px 5%;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #testimonials .section-heading h2 {
        font-size: 32px;
    }
}

/* Mobile */

@media (max-width: 600px) {

    #testimonials {
        padding: 60px 20px;
    }

    #testimonials .section-heading {
        margin-bottom: 35px;
    }

    #testimonials .section-heading h2 {
        font-size: 28px;
    }

    #testimonials .section-heading p {
        font-size: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-card {
        padding: 26px 22px;
    }
}
/* =========================
   ORESEF CONTACT / QUOTE
   ========================= */

#contact-cta {
    padding: 90px 6%;
    background: #f7f8fa;
}

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

#contact-cta .section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

#contact-cta .section-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #f28c18;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

#contact-cta .section-heading h2 {
    margin: 0 0 18px;
    color: #17233b;
    font-size: 40px;
    line-height: 1.2;
}

#contact-cta .section-heading p {
    margin: 0;
    color: #7b8494;
    font-size: 16px;
    line-height: 1.7;
}

/* Contact layout */

.contact-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

/* Contact information */

.contact-info {
    padding: 36px;
    background: #17233b;
    border-radius: 20px;
    color: #ffffff;
}

.contact-info h3 {
    margin: 0 0 16px;
    font-size: 28px;
}

.contact-info > p {
    margin: 0 0 30px;
    color: #d8dee8;
    font-size: 15px;
    line-height: 1.7;
}

.contact-item {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 15px;
}

.contact-item span {
    display: block;
    color: #b9c2d0;
    font-size: 14px;
}

/* Quote form */

.contact-form {
    padding: 36px;
    background: #ffffff;
    border: 1px solid #e5e8ed;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(23, 35, 59, 0.06);
}

.contact-form h3 {
    margin: 0 0 26px;
    color: #17233b;
    font-size: 28px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #17233b;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: #ffffff;
    color: #17233b;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.form-group input {
    height: 48px;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f28c18;
}

.contact-submit {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    background: #f28c18;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* Tablet */

@media (max-width: 900px) {

    #contact-cta {
        padding: 70px 5%;
    }

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

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    #contact-cta .section-heading h2 {
        font-size: 32px;
    }
}

/* Mobile */

@media (max-width: 600px) {

    #contact-cta {
        padding: 60px 20px;
    }

    #contact-cta .section-heading {
        margin-bottom: 35px;
    }

    #contact-cta .section-heading h2 {
        font-size: 28px;
    }

    #contact-cta .section-heading p {
        font-size: 15px;
    }

    .contact-info,
    .contact-form {
        padding: 24px;
        border-radius: 16px;
    }

    .contact-info h3,
    .contact-form h3 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* =========================================
   ORESEF FOOTER
   ========================================= */

#footer {
  background: #17233b;
  color: #ffffff;
  padding: 60px 6% 0;
  margin-top: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 45px;
  padding-bottom: 50px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-logo:first-letter {
  color: #f28c18;
}

.footer-brand p {
  color: #c8d0dc;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-links h3,
.footer-contact h3 {
  color: #ffffff;
  font-size: 17px;
  margin: 0 0 20px;
  font-weight: 700;
}

.footer-links a {
  color: #c8d0dc;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f28c18;
}

.footer-contact p {
  color: #c8d0dc;
  font-size: 15px;
  margin: 0 0 14px;
  line-height: 1.5;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: #aeb8c7;
  font-size: 13px;
}

/* =========================================
   FOOTER MOBILE
   ========================================= */

@media (max-width: 768px) {

  #footer {
    padding: 45px 20px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    font-size: 25px;
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 15px;
  }

  .footer-links a {
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 20px 0;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}
/* ORESEF TESTIMONIAL CARD FIX */

.testimonial-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.testimonial-card > p {
    flex: 1;
}

.testimonial-author {
    margin-top: auto;
}
/* =========================================
   ORESEF FINAL WEBSITE POLISH
   ========================================= */

/* Footer polish */
#footer {
    margin-top: 0;
}

.footer-container {
    align-items: flex-start;
}

.footer-brand p {
    line-height: 1.7;
}

.footer-links a,
.footer-contact p {
    line-height: 1.6;
}

.footer-links a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    transform: translateX(3px);
}

/* Contact section polish */
.contact-container {
    width: 100%;
}

.contact-content {
    align-items: stretch;
}

.contact-info,
.contact-form {
    height: 100%;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Testimonials polish */
.testimonial-card {
    box-sizing: border-box;
    overflow: hidden;
}

.testimonial-card p {
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-author small {
    display: block;
}

/* Shipping process polish */
.process-card {
    box-sizing: border-box;
}

.process-card p {
    line-height: 1.7;
}

/* Section text consistency */
.section-heading p {
    line-height: 1.7;
}

/* =========================================
   MOBILE POLISH
   ========================================= */

@media (max-width: 600px) {

    .section-heading h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .section-heading p {
        font-size: 16px;
        line-height: 1.65;
    }

    /* Services */
    .service-card {
        width: 100%;
    }

    /* Why Choose ORESEF */
    .why-us-card {
        width: 100%;
    }

    /* Testimonials */
    .testimonial-card {
        width: 100%;
        min-height: 0;
    }

    .testimonial-card p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Contact */
    .contact-content {
        gap: 25px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    /* Footer */
    .footer-container {
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }
}
/* =========================================
   SERVICE DETAILS MODAL
   ========================================= */

.service-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(5, 20, 45, 0.75);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-modal.active {
    display: flex;
}

.service-modal-content {
    position: relative;
    width: 100%;
    max-width: 520px;
    background: var(--oresef-white);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: serviceModalIn 0.3s ease;
}

.service-modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 16px;
    background: #fff1df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-modal-content h2 {
    margin-bottom: 15px;
    color: var(--oresef-navy);
    font-size: 30px;
    font-weight: 700;
}

.service-modal-content p {
    margin-bottom: 25px;
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

.service-modal-close {
    position: absolute;
    top: 15px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--oresef-navy);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.service-modal-action {
    border: none;
    border-radius: 10px;
    background: var(--oresef-orange);
    color: var(--oresef-white);
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-modal-action:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

@keyframes serviceModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 600px) {
    .service-modal {
        padding: 15px;
    }

    .service-modal-content {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .service-modal-content h2 {
        font-size: 25px;
    }

    .service-modal-content p {
        font-size: 16px;
    }
}