/*
 * EMRK Co. - Premium Styles
 * Extracted from home.blade.php + redesign styles
 */

/* ========================================================== */
/* GLOBAL OVERRIDES & UTILITIES */
/* ========================================================== */

.text-orange {
    color: #e8630a !important;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e8630a;
    margin-bottom: 10px;
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8630a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 6px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: #cf5808;
    color: #fff;
    text-decoration: none;
}

.btn-outline-orange {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #e8630a;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    border: 2px solid #e8630a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: #e8630a;
    color: #fff;
    text-decoration: none;
}

.btn-outline-grey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-grey:hover {
    border-color: #e8630a;
    color: #e8630a;
    text-decoration: none;
}

/* ========================================================== */
/* HEADER & NAVIGATION */
/* ========================================================== */

.navbar-fixed-top {
    background-color: #101c42 !important;
    border-bottom: none;
}

.navbar-fixed-top.opaque {
    background-color: #101c42 !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-fixed-top .navbar-nav > li > a,
.navbar-fixed-top .navbar-nav > li > a:hover {
    color: #cbd5e1 !important;
    font-size: 14px !important;
    font-weight: 500;
    padding: 10px 14px !important;
    font-family: 'Open Sans', sans-serif;
}

.navbar-fixed-top .navbar-nav > li > a:hover,
.navbar-fixed-top .navbar-nav .current a {
    color: #fff !important;
}

.navbar-fixed-top.opaque .navbar-nav .current a {
    color: #fff !important;
}

.navbar-brand {
    color: #fff !important;
    font-size: 24px;
    font-weight: 700;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
}

.navbar-toggler-icon i {
    color: #fff;
}

.nav-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-lang-switch:hover {
    color: #fff;
    text-decoration: none;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #16a34a;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    margin-left: 8px;
}

.nav-cta-btn:hover {
    background: #15803d;
    color: #fff !important;
    text-decoration: none;
}

.nav-right-items {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 10px;
}

/* ========================================================== */
/* HERO SECTION */
/* ========================================================== */

.home-section {
    padding-top: 110px;
    padding-bottom: 50px;
    background: #101c42 !important;
    background-color: #101c42 !important;
}

.home-section h1 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.home-section p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
    color: rgba(255,255,255,0.85);
}

.hero-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #e8630a;
    margin-bottom: 14px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8630a;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e8630a;
}

.hero-btn-primary:hover {
    background: #cf5808;
    border-color: #cf5808;
    color: #fff;
    text-decoration: none;
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn-secondary i {
    color: #25d366;
    font-size: 18px;
}

.hero-btn-secondary:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
    color: #fff;
    text-decoration: none;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.hero-trust-badges .badge-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}

.hero-trust-badges .badge-item i {
    color: #e8930a;
    font-size: 16px;
}

/* ========================================================== */
/* WHAT WE DO SECTION */
/* ========================================================== */

.whatwedo-section {
    padding: 50px 0;
    background: #fff;
}

.whatwedo-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
}

.whatwedo-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

.whatwedo-section .learn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e8630a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.whatwedo-section .learn-link:hover {
    gap: 10px;
    text-decoration: none;
}

.whatwedo-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 22px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.whatwedo-card:hover {
    border-color: #192c78;
    box-shadow: 0 4px 16px rgba(25,44,120,0.08);
}

.whatwedo-card .card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.whatwedo-card .card-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.whatwedo-card .card-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* ========================================================== */
/* SERVICES SECTION */
/* ========================================================== */

.services-section {
    padding: 50px 0;
    background: #101c42;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 15px;
}

.services-header .header-left .section-tag {
    color: #e8630a;
}

.services-header .header-left h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
    color: #fff;
}

.services-header .header-right p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 400px;
    text-align: right;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    margin-bottom: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.service-icon.icon-blue { background: linear-gradient(135deg, #192c78, #2d4ab5); }
.service-icon.icon-purple { background: linear-gradient(135deg, #5b2d8e, #8b5cf6); }
.service-icon.icon-teal { background: linear-gradient(135deg, #0d7377, #14b8a6); }
.service-icon.icon-orange { background: linear-gradient(135deg, #c2410c, #f97316); }
.service-icon.icon-green { background: linear-gradient(135deg, #166534, #22c55e); }
.service-icon.icon-lightblue { background: linear-gradient(135deg, #0369a1, #38bdf8); }

.service-card-content h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.service-card-content p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 10px;
}

.service-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.service-checklist li {
    font-size: 12px;
    color: #334155;
    line-height: 1.3;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-checklist li .check-icon {
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e8630a;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-cta:hover {
    gap: 10px;
    color: #cf5808;
    text-decoration: none;
}

/* ========================================================== */
/* INDUSTRIES SECTION */
/* ========================================================== */

.industries-section {
    padding: 50px 0;
    background: #fff;
}

.industries-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.industry-item {
    flex: 1;
    min-width: 100px;
    text-align: center;
    padding: 16px 8px;
    transition: all 0.3s ease;
}

.industry-item i {
    font-size: 32px;
    color: #192c78;
    margin-bottom: 10px;
    display: block;
}

.industry-item span {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    display: block;
}

.industry-item:hover i {
    color: #e8630a;
}

/* ========================================================== */
/* WHY CHOOSE EMRK SECTION */
/* ========================================================== */

.whychoose-section {
    padding: 50px 0;
    background: #101c42;
}

.whychoose-section h2 {
    color: #fff;
}

.whychoose-section .section-tag {
    color: #e8630a;
}

.whychoose-section > .container > .text-center p {
    color: rgba(255,255,255,0.55) !important;
}

.whychoose-card {
    text-align: left;
    padding: 10px 10px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.whychoose-card .wc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
}

.whychoose-card .wc-text {
    flex: 1;
}

.whychoose-card .wc-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.whychoose-card .wc-text p {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.55;
    margin: 0;
}

/* ========================================================== */
/* CASE STUDIES / OUR RECENT WORK */
/* ========================================================== */

/* Case Study Cards */
.case-study-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    box-shadow: 0 12px 40px rgba(25, 44, 120, 0.1);
    transform: translateY(-4px);
}

.case-study-header {
    padding: 20px 25px 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.case-study-header .cs-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.case-study-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.case-study-body {
    padding: 25px;
}

.case-study-body .cs-section {
    margin-bottom: 16px;
}

.case-study-body .cs-section:last-child {
    margin-bottom: 0;
}

.case-study-body .cs-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.cs-label.challenge { color: #dc2626; }
.cs-label.solution { color: #192c78; }
.cs-label.result { color: #16a34a; }

.case-study-body p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.case-study-result-highlight {
    background: #f0fdf4;
    border-left: 3px solid #22c55e;
    padding: 12px 15px;
    border-radius: 0 8px 8px 0;
}

/* ========================================================== */
/* HOW WE WORK / PROCESS SECTION */
/* ========================================================== */

.process-section {
    padding: 50px 0;
    background: #fff;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.process-step {
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

.process-step .step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #192c78;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
    color: #192c78;
    position: relative;
}

.process-step .step-number {
    font-size: 12px;
    font-weight: 700;
    color: #e8630a;
    margin-bottom: 6px;
}

.process-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================================== */
/* STATS SECTION */
/* ========================================================== */

.stats-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #192c78 0%, #1e3a8a 50%, #1d2b6b 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.02);
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-number .stat-accent {
    color: #e8630a;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

/* ========================================================== */
/* TESTIMONIALS SECTION */
/* ========================================================== */

.testimonials-section {
    padding: 50px 0;
    background: #f8fafc;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: #f59e0b;
    font-size: 14px;
}

.testimonial-card .review-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-card .reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.testimonial-card .reviewer-role {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.testimonial-dots.carousel-indicators {
    position: relative;
    bottom: 0;
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    text-indent: -999px;
    overflow: hidden;
    background: #cbd5e1;
    transition: background 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #192c78;
}

/* ========================================================== */
/* FOOTER PREMIUM */
/* ========================================================== */

.footer-premium {
    background: #101c42;
    padding: 50px 0 20px;
    color: #94a3b8;
}

.footer-premium h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-premium p {
    font-size: 13px;
    line-height: 1.7;
    color: #94a3b8;
}

.footer-premium a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-premium a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '→';
    font-size: 11px;
    opacity: 0.5;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: #192c78;
    border-color: #192c78;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}

.footer-logo-section img {
    height: 36px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

/* ========================================================== */
/* BACK TO TOP BUTTON */
/* ========================================================== */

#goTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: #192c78;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(25,44,120,0.3);
    transition: all 0.3s ease;
}

#goTopBtn:hover {
    background: #e8630a;
}

/* ========================================================== */
/* RESPONSIVE */
/* ========================================================== */

@media (max-width: 991px) {
    .services-header,
    .casestudies-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .services-header .header-right p,
    .casestudies-header .header-right {
        text-align: left;
    }
    .process-timeline {
        flex-direction: column;
        gap: 24px;
    }
    .process-timeline::before {
        display: none;
    }
    .industries-row {
        justify-content: center;
    }
    .nav-right-items {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-trust-badges {
        flex-direction: column;
        gap: 10px;
    }
    .home-section h1 {
        font-size: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .industry-item {
        min-width: 45%;
    }
}
