:root {
    --primary: #0f172a;
    --secondary: #2563eb;
    --secondary-dark: #1d4ed8;
    --accent: #38bdf8;
    --text: #334155;
    --muted: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e5e7eb;
    --soft-border: #eef2f7;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.05);
    --radius: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
}

.topbar {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar a,
.topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s ease;
}

.topbar a:hover {
    color: #ffffff;
}

.topbar i {
    font-size: 12px;
    color: var(--accent);
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
}

.site-logo-mark {
    width: 39px;
    height: 39px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-logo-text strong {
    font-size: 17px;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.site-logo-text small {
    margin-top: 3px;
    font-size: 11px;
    color: var(--muted);
}

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

.main-nav a {
    position: relative;
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--secondary);
    background: #eff6ff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-sm {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
}

.btn-primary {
    background: var(--secondary);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: #bfdbfe;
    color: var(--secondary);
    background: #eff6ff;
}

.btn-light {
    background: #ffffff;
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-1px);
}

.btn-transparent {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-transparent:hover {
    background: rgba(255, 255, 255, 0.18);
}

.mobile-menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: all 0.2s ease;
}

.hero-section {
    position: relative;
    padding: 78px 0 58px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 54px;
    align-items: center;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.hero-content h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.hero-content p {
    max-width: 640px;
    margin: 20px 0 0;
    font-size: 17px;
    line-height: 1.75;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 26px;
    margin-top: 32px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--primary);
    font-size: 21px;
    line-height: 1.2;
}

.hero-trust span {
    color: var(--muted);
    font-size: 13px;
}

.hero-visual {
    position: relative;
    min-height: 430px;
}

.hero-card {
    background: #ffffff;
    border: 1px solid var(--soft-border);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.hero-card-main {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-card-top {
    height: 46px;
    border-bottom: 1px solid var(--soft-border);
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    background: #fbfdff;
}

.hero-card-top span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
}

.hero-card-body {
    padding: 32px;
}

.hero-mini-badge {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--secondary);
    background: #eff6ff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-card-body h3 {
    margin: 0;
    color: var(--primary);
    font-size: 25px;
    letter-spacing: -0.02em;
}

.hero-card-body p {
    margin: 12px 0 0;
    color: var(--muted);
}

.hero-progress-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.hero-progress-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 15px;
    border: 1px solid var(--soft-border);
    border-radius: 15px;
    background: #ffffff;
}

.hero-progress-list span {
    font-size: 14px;
    color: #475569;
}

.hero-progress-list strong {
    font-size: 13px;
    color: #16a34a;
}

.hero-floating-box {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 15px;
    border: 1px solid var(--soft-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.hero-floating-box i {
    color: var(--secondary);
}

.box-one {
    left: -24px;
    bottom: 74px;
}

.box-two {
    right: -10px;
    top: 58px;
}

.trust-strip {
    padding: 24px 0;
    background: #ffffff;
    border-top: 1px solid var(--soft-border);
    border-bottom: 1px solid var(--soft-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.trust-item i {
    width: 39px;
    height: 39px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--secondary);
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: var(--primary);
    font-size: 14px;
}

.trust-item span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.section {
    padding: 82px 0;
}

.section-heading {
    max-width: 730px;
    margin-bottom: 34px;
}

.section-heading h2,
.why-content h2,
.faq-left h2,
.cta-box h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.section-heading p,
.why-content p,
.faq-left p,
.cta-box p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.section-heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    padding: 24px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
    border-color: #dbeafe;
}

.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #eff6ff;
    margin-bottom: 16px;
}

.service-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 18px;
}

.service-card p {
    margin: 10px 0 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
}

.why-section {
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    gap: 42px;
    align-items: center;
}

.why-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.why-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.why-list i {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
}

.why-panel {
    display: grid;
    gap: 14px;
}

.why-panel-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.why-panel-item > span {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    flex: 0 0 auto;
}

.why-panel-item h3 {
    margin: 0;
    color: var(--primary);
    font-size: 18px;
}

.why-panel-item p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

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

.project-card {
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease;
}

.project-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.project-image {
    position: relative;
    height: 218px;
    background: #f1f5f9;
    overflow: hidden;
}

.project-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 34px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.06)),
        #f8fafc;
}

.project-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.2s ease;
}

.project-card:hover .project-overlay-btn {
    opacity: 1;
    transform: translateY(0);
}

.project-content {
    padding: 18px;
}

.project-content span {
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.project-content h3 {
    margin: 6px 0 0;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.35;
}

.cta-section {
    padding: 30px 0;
}

.cta-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
    padding: 34px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(56, 189, 248, 0.24), transparent 28%),
        linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.cta-box .section-eyebrow {
    color: #bae6fd;
}

.cta-box h2 {
    color: #ffffff;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 720px;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.testimonials-section {
    background: #ffffff;
}

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

.testimonial-card {
    padding: 24px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 13px;
}

.testimonial-card p {
    margin: 16px 0 20px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.75;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user > span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.testimonial-user strong,
.testimonial-user small {
    display: block;
}

.testimonial-user strong {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-user small {
    color: var(--muted);
    font-size: 12px;
}

.faq-section {
    background: var(--light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 44px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--soft-border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    text-align: left;
}

.faq-item button i {
    color: var(--muted);
    transition: transform 0.2s ease;
}

.faq-answer {
    display: none;
    padding: 0 18px 18px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active button i {
    transform: rotate(180deg);
}

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

.blog-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
    transition: all 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.blog-date {
    width: 54px;
    height: 62px;
    border-radius: 16px;
    background: #eff6ff;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.1;
}

.blog-date strong {
    font-size: 20px;
}

.blog-date span {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 800;
}

.blog-category {
    display: inline-block;
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 7px;
}

.blog-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 18px;
    line-height: 1.35;
}

.blog-card p {
    margin: 9px 0 13px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.blog-card a {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 800;
}

.site-footer {
    background: #0b1220;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 0.9fr;
    gap: 38px;
    padding: 58px 0;
}

.footer-logo .site-logo-mark {
    background: #ffffff;
    color: var(--primary);
    box-shadow: none;
}

.footer-logo .site-logo-text strong {
    color: #ffffff;
}

.footer-logo .site-logo-text small {
    color: rgba(255, 255, 255, 0.6);
}

.footer-brand p {
    max-width: 420px;
    margin: 18px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.64);
}

.footer-col h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 15px;
}

.footer-col a {
    display: block;
    margin-top: 9px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.66);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
    font-size: 14px;
}

.footer-contact-item i {
    margin-top: 5px;
    color: var(--accent);
}

.footer-contact-item a {
    margin: 0;
}

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

.footer-bottom-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    font-weight: 800;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 16px 35px rgba(34, 197, 94, 0.32);
    transition: all 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-2px) scale(1.02);
}

@media (max-width: 1080px) {
    .hero-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

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

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

    .cta-box {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .topbar {
        display: none;
    }

    .header-inner {
        min-height: 68px;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 78px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--soft-border);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        border-radius: 12px;
        padding: 12px 13px;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-section {
        padding: 52px 0 42px;
    }

    .hero-grid {
        gap: 34px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-card-body {
        padding: 24px;
    }

    .hero-floating-box {
        display: none;
    }

    .section {
        padding: 58px 0;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-logo-mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-grid,
    .service-grid,
    .project-grid,
    .testimonial-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 18px;
    }

    .project-image {
        height: 190px;
    }

    .cta-box {
        padding: 24px;
        border-radius: 22px;
    }

    .cta-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 16px;
    }
}
/* -------------------------------------------------------
   Inner Page / Breadcrumb
------------------------------------------------------- */

.page-hero {
    padding: 54px 0 46px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--soft-border);
}

.page-hero-inner {
    max-width: 760px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb i {
    color: #94a3b8;
    font-size: 11px;
}

.page-hero h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 680px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

/* -------------------------------------------------------
   About Page
------------------------------------------------------- */

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.about-visual {
    min-height: 410px;
    border: 1px solid var(--soft-border);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.06)),
        #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 54px;
    box-shadow: var(--shadow-soft);
}

.about-content h2 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.035em;
}

.about-content p {
    margin: 14px 0 0;
    color: var(--muted);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}

.about-stat {
    padding: 18px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.about-stat strong {
    display: block;
    color: var(--primary);
    font-size: 22px;
    line-height: 1.2;
}

.about-stat span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

/* -------------------------------------------------------
   Listing Cards
------------------------------------------------------- */

.listing-section {
    background: #ffffff;
}

.listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.listing-toolbar p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.listing-search {
    width: min(320px, 100%);
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0 15px;
    outline: none;
    font-size: 14px;
}

/* -------------------------------------------------------
   Detail Pages
------------------------------------------------------- */

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    align-items: start;
}

.detail-card {
    padding: 30px;
    border: 1px solid var(--soft-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.detail-card h2,
.detail-card h3 {
    color: var(--primary);
    letter-spacing: -0.02em;
}

.detail-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.detail-card h3 {
    margin: 26px 0 10px;
    font-size: 20px;
}

.detail-card p {
    color: var(--muted);
}

.detail-card ul {
    display: grid;
    gap: 10px;
    padding-left: 0;
    list-style: none;
}

.detail-card li {
    display: flex;
    gap: 10px;
    color: var(--text);
}

.detail-card li::before {
    content: "✓";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #dcfce7;
    color: #16a34a;
    font-size: 12px;
    font-weight: 800;
}

.sidebar-card {
    padding: 22px;
    border: 1px solid var(--soft-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.sidebar-card + .sidebar-card {
    margin-top: 16px;
}

.sidebar-card h3 {
    margin: 0 0 14px;
    color: var(--primary);
    font-size: 17px;
}

.sidebar-link-list {
    display: grid;
    gap: 8px;
}

.sidebar-link-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 13px;
    background: #f8fafc;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.sidebar-link-list a:hover {
    color: var(--secondary);
    background: #eff6ff;
}

/* -------------------------------------------------------
   Forms
------------------------------------------------------- */

.form-card {
    padding: 28px;
    border: 1px solid var(--soft-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #ffffff;
    color: var(--primary);
    outline: none;
    font-size: 14px;
}

.form-field input,
.form-field select {
    height: 44px;
    padding: 0 13px;
}

.form-field textarea {
    min-height: 132px;
    padding: 12px 13px;
    resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #bfdbfe;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

/* -------------------------------------------------------
   Contact Page
------------------------------------------------------- */

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 26px;
    align-items: start;
}

.contact-info-list {
    display: grid;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--soft-border);
    border-radius: var(--radius);
    background: #ffffff;
}

.contact-info-item i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    color: var(--secondary);
    flex: 0 0 auto;
}

.contact-info-item strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
}

.contact-info-item span,
.contact-info-item a {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 14px;
}

.map-placeholder {
    min-height: 300px;
    margin-top: 22px;
    border: 1px solid var(--soft-border);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.06)),
        #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 42px;
}

/* -------------------------------------------------------
   Responsive Inner Pages
------------------------------------------------------- */

@media (max-width: 980px) {
    .about-grid,
    .detail-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 300px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 40px 0 34px;
    }

    .listing-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .listing-search {
        width: 100%;
    }

    .about-stats,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .detail-card,
    .form-card {
        padding: 22px;
        border-radius: 20px;
    }
}
/* -------------------------------------------------------
   Dynamic Hero Slider
------------------------------------------------------- */

.hero-slider-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
}

.hero-slide {
    display: none;
    padding: 78px 0 58px;
    min-height: 560px;
}

.hero-slide.active {
    display: block;
}

.hero-slide-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 54px;
    align-items: center;
}

.hero-slider-visual {
    position: relative;
    min-height: 430px;
    border: 1px solid var(--soft-border);
    border-radius: 28px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: var(--shadow);
}

.hero-slider-visual img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.hero-slider-placeholder {
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 54px;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(56, 189, 248, 0.06)),
        #f8fafc;
}

.hero-slider-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
}

.hero-slider-card i {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #eff6ff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hero-slider-card strong,
.hero-slider-card span {
    display: block;
}

.hero-slider-card strong {
    color: var(--primary);
    font-size: 14px;
    line-height: 1.25;
}

.hero-slider-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.hero-slider-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    pointer-events: none;
}

.hero-slider-arrow,
.hero-slider-dots button {
    pointer-events: auto;
}

.hero-slider-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}

.hero-slider-arrow:hover {
    color: var(--secondary);
    border-color: #bfdbfe;
    background: #eff6ff;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 11px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.hero-slider-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    transition: all 0.2s ease;
}

.hero-slider-dots button.active {
    width: 20px;
    background: var(--secondary);
}

@media (max-width: 1080px) {
    .hero-slide-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        min-height: auto;
    }
}

@media (max-width: 860px) {
    .hero-slide {
        padding: 52px 0 74px;
    }

    .hero-slider-visual,
    .hero-slider-visual img,
    .hero-slider-placeholder {
        min-height: 300px;
        height: 300px;
    }

    .hero-slider-controls {
        justify-content: center;
        bottom: 22px;
    }
}

@media (max-width: 640px) {
    .hero-slide-grid {
        gap: 28px;
    }

    .hero-slider-visual,
    .hero-slider-visual img,
    .hero-slider-placeholder {
        min-height: 240px;
        height: 240px;
        border-radius: 22px;
    }

    .hero-slider-card {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 12px;
        border-radius: 16px;
    }

    .hero-slider-card i {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }
}
/* -------------------------------------------------------
   Dynamic Services Extras
------------------------------------------------------- */

.empty-front-card {
    grid-column: 1 / -1;
    min-height: 220px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--muted);
    padding: 26px;
}

.empty-front-card i {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eff6ff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.empty-front-card strong {
    color: var(--primary);
    font-size: 16px;
}

.empty-front-card span {
    margin-top: 5px;
    font-size: 14px;
}

.service-detail-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #eff6ff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.detail-text {
    color: var(--muted);
    line-height: 1.8;
}
/* -------------------------------------------------------
   Dynamic Projects Extras
------------------------------------------------------- */

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.04);
}

.project-detail-image {
    width: 100%;
    height: 360px;
    border: 1px solid var(--soft-border);
    border-radius: 22px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 24px;
}

.project-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* -------------------------------------------------------
   Dynamic Blog Extras
------------------------------------------------------- */

.blog-detail-image {
    width: 100%;
    height: 360px;
    border: 1px solid var(--soft-border);
    border-radius: 22px;
    overflow: hidden;
    background: #f8fafc;
    margin-bottom: 24px;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-lead {
    font-size: 17px;
    color: var(--primary) !important;
    line-height: 1.75;
    font-weight: 600;
}

.blog-content {
    margin-top: 22px;
}

.blog-content p {
    margin-top: 0;
}
/* -------------------------------------------------------
   Front Alerts
------------------------------------------------------- */

.front-alert {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 13px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.front-alert-success {
    color: #15803d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.front-alert-danger {
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
}