html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

:root {
    --primary: #0F2547;
    --primary-light: #1B3A6B;
    --secondary: #2E75B6;
    --accent: #F4A820;
    --accent-dark: #D4880A;
    --dark: #0A0A0A;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --text: #1A1A2E;
    --text-muted: #6C757D;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar-main {
    background: transparent;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

    .navbar-main.scrolled {
        background: var(--primary);
        padding: 8px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .navbar-main .navbar-brand {
        color: #fff !important;
        font-weight: 800;
        font-size: 1.3rem;
        letter-spacing: -0.5px;
    }

        .navbar-main .navbar-brand span {
            color: var(--accent);
        }

    .navbar-main .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-weight: 700;
        font-size: 0.9rem;
        padding: 8px 12px !important;
        transition: color 0.2s;
        letter-spacing: 0.3px;
    }

        .navbar-main .nav-link:hover {
            color: var(--accent) !important;
        }

    .navbar-main .btn-nav-cta {
        background: var(--accent);
        color: #fff !important;
        border-radius: 8px;
        padding: 10px 22px !important;
        font-weight: 700;
        font-size: 0.85rem;
        transition: all 0.2s;
        letter-spacing: 0.5px;
    }

        .navbar-main .btn-nav-cta:hover {
            background: var(--accent-dark);
            transform: translateY(-1px);
        }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
}

.breadcrumb {
    margin: 0;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--secondary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

/* ── SECTION HEADERS ── */
.section-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
}

/* ── CARDS ── */
.card-modern {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .card-modern:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

/* ── BUTTONS ── */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-primary-custom:hover {
        background: var(--primary-light);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(15,37,71,0.3);
    }

.btn-accent-custom {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-accent-custom:hover {
        background: var(--accent-dark);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(244,168,32,0.4);
    }

.btn-outline-custom {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline-custom:hover {
        background: rgba(255,255,255,0.15);
        border-color: #fff;
        color: #fff;
    }

/* ── FOOTER ── */
.footer-main {
    background: var(--primary);
    color: rgba(255,255,255,0.7);
}

    .footer-main .footer-brand {
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
        letter-spacing: -0.5px;
    }

        .footer-main .footer-brand span {
            color: var(--accent);
        }

    .footer-main .footer-heading {
        color: #fff;
        font-weight: 700;
        font-size: 0.9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .footer-main a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.2s;
        display: block;
        margin-bottom: 10px;
    }

        .footer-main a:hover {
            color: var(--accent);
        }

.footer-divider {
    border-color: rgba(255,255,255,0.1);
}

.footer-bottom {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ── WHATSAPP ── */
.whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s;
}

    .whatsapp-btn:hover {
        transform: scale(1.1);
        color: #fff;
        box-shadow: 0 8px 28px rgba(37,211,102,0.5);
    }

    .whatsapp-btn::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: #25D366;
        animation: pulse 2s infinite;
        z-index: -1;
    }

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* ── PAGE CONTENT PADDING (fixed navbar) ── */
.page-content {
    padding-top: 80px;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

/* ── BLOG CONTENT ── */
.blog-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.blog-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-content ul,
.blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

/* ── SERVICE / REGION CONTENT ── */
.service-content h2,
.region-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
}

.service-content h3,
.region-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.service-content p,
.region-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-content ul,
.service-content ol,
.region-content ul,
.region-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-content li,
.region-content li {
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

/* ── HOVER CARD ── */
.hover-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

    .hover-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    }

/* ── FOOTER CTA BUTTON ── */
.footer-cta-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-weight: 700;
    transition: all 0.2s;
}

    .footer-cta-btn:hover {
        background: var(--accent-dark);
        color: #fff;
        transform: translateY(-2px);
    }


/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, #0F2547 0%, #1B3A6B 100%);
    min-height: 280px;
    display: flex;
    align-items: flex-end;
    padding-top: 100px;
    padding-bottom: 48px;
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: 0.04;
        background-image: repeating-linear-gradient( 0deg, transparent, transparent 59px, rgba(255,255,255,1) 59px, rgba(255,255,255,1) 60px ), repeating-linear-gradient( 90deg, transparent, transparent 59px, rgba(255,255,255,1) 59px, rgba(255,255,255,1) 60px );
    }

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin: 0;
}

.page-hero .hero-accent {
    display: inline-block;
    background: rgba(244,168,32,0.2);
    border: 1px solid rgba(244,168,32,0.4);
    color: #F4A820;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

/* ── SERVICE CARDS ── */
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        color: inherit;
    }

.service-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: #fff;
}

.service-card h5 {
    font-weight: 700;
    color: #0F2547;
    margin-bottom: 10px;
}

.service-card p {
    color: #6C757D;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    color: #F4A820;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ── CTA SECTION ── */
.cta-section {
    background: linear-gradient(135deg, #F4A820, #D4880A);
    padding: 80px 0;
    text-align: center;
}

    .cta-section h2 {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 900;
        color: #fff;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .cta-section p {
        color: rgba(255,255,255,0.85);
        font-size: 1.05rem;
        margin-bottom: 36px;
    }

.btn-white {
    background: #fff;
    color: #0F2547;
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-white:hover {
        background: #f0f0f0;
        color: #0F2547;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }

/* ── SIDEBAR CARD ── */
.sidebar-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.sidebar-card-header {
    background: #0F2547;
    color: #fff;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.sidebar-card-body {
    padding: 20px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #1A1A2E;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

    .sidebar-link:last-child {
        border-bottom: none;
    }

    .sidebar-link:hover {
        color: #F4A820;
    }

    .sidebar-link i {
        color: #2E75B6;
        font-size: 1rem;
    }

/* ── REGION CARDS ── */
.region-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .region-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        color: inherit;
    }

.region-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.region-card-placeholder {
    height: 120px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,0.3);
}

.region-card-body {
    padding: 20px;
}

    .region-card-body h6 {
        font-weight: 700;
        color: #0F2547;
        margin-bottom: 6px;
    }

    .region-card-body p {
        color: #6C757D;
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }

.region-card-link {
    color: #F4A820;
    font-weight: 600;
    font-size: 0.85rem;
}

/* ── REGION SERVICE CARD ── */
.region-service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

    .region-service-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        color: inherit;
    }

.region-service-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

/* ── BLOG CARDS ── */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    }

.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-category {
    background: #EEF4FF;
    color: #2E75B6;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.blog-card-title {
    font-weight: 700;
    color: #0F2547;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

    .blog-card-title a {
        text-decoration: none;
        color: inherit;
        transition: color 0.2s;
    }

        .blog-card-title a:hover {
            color: #F4A820;
        }

.blog-card-excerpt {
    color: #6C757D;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #6C757D;
    font-size: 0.8rem;
}

.blog-card-link {
    color: #F4A820;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

/* ── TAG PILL ── */
.tag-pill {
    background: #F0F5FF;
    color: #2E75B6;
    border: 1px solid #D0E4FF;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-right: 6px;
    transition: all 0.2s;
    display: inline-block;
}

    .tag-pill:hover {
        background: #0F2547;
        color: #fff;
        border-color: #0F2547;
    }

/* ── SHARE BUTTONS ── */
.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.share-fb {
    background: #1877F2;
    color: #fff;
}

    .share-fb:hover {
        background: #1565D8;
        color: #fff;
    }

.share-tw {
    background: #000;
    color: #fff;
}

    .share-tw:hover {
        background: #333;
        color: #fff;
    }

.share-li {
    background: #0A66C2;
    color: #fff;
}

    .share-li:hover {
        background: #0855A0;
        color: #fff;
    }

/* ── ACTIVE SIDEBAR LINK ── */
.active-link {
    color: #F4A820 !important;
    font-weight: 700;
}

/* ── CONTACT ── */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 32px;
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

    .contact-info-item:last-child {
        margin-bottom: 0;
    }

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-label {
    font-weight: 700;
    color: #0F2547;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.contact-info-value {
    color: #6C757D;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-hours {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.contact-hours-title {
    font-weight: 700;
    color: #0F2547;
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6C757D;
    padding: 4px 0;
    border-bottom: 1px solid #E9ECEF;
}

    .contact-hours-row:last-child {
        border-bottom: none;
    }

/* ── CONTACT FORM ── */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    padding: 40px;
}

    .contact-form-card h4 {
        font-weight: 800;
        color: #0F2547;
        margin-bottom: 8px;
    }

    .contact-form-card .form-label {
        font-weight: 600;
        color: #0F2547;
        font-size: 0.875rem;
    }

    .contact-form-card .form-control {
        border: 1.5px solid #E9ECEF;
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 0.9rem;
        transition: border-color 0.2s, box-shadow 0.2s;
    }

        .contact-form-card .form-control:focus {
            border-color: #2E75B6;
            box-shadow: 0 0 0 3px rgba(46,117,182,0.1);
        }

.contact-success {
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    color: #fff;
}

    .contact-success i {
        font-size: 3rem;
        margin-bottom: 16px;
        display: block;
    }

    .contact-success h5 {
        font-weight: 800;
        margin-bottom: 8px;
    }

/* ── FAQ ── */
.faq-group-title {
    font-weight: 800;
    color: #0F2547;
    font-size: 1.1rem;
    margin-bottom: 16px;
    margin-top: 32px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F4A820;
    display: inline-flex;
    align-items: center;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-weight: 600;
    color: #0F2547;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color 0.2s;
}

    .faq-question:hover {
        color: #F4A820;
    }

    .faq-question[aria-expanded="true"] {
        color: #F4A820;
    }

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: #6C757D;
    font-size: 0.9rem;
    line-height: 1.8;
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
}

.faq-cta-card {
    background: linear-gradient(135deg, #0F2547, #1B3A6B);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    color: #fff;
}

.faq-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(244,168,32,0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F4A820;
    flex-shrink: 0;
}

.faq-cta-card h5 {
    font-weight: 800;
    margin-bottom: 6px;
}

.faq-cta-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* ── REFERENCE CARDS ── */
.reference-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .reference-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

.reference-card-header {
    background: linear-gradient(135deg, #0F2547, #1B3A6B);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.reference-icon {
    width: 48px;
    height: 48px;
    background: rgba(244,168,32,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #F4A820;
    flex-shrink: 0;
}

.reference-card-header h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.reference-client {
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
}

.reference-card-body {
    padding: 20px 24px;
}

.reference-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.reference-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #2E75B6;
    font-weight: 600;
}

    .reference-stat i {
        color: #F4A820;
    }

.reference-desc {
    color: #6C757D;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* ── MACHINE CARDS ── */
.machine-filter-btn {
    background: #fff;
    color: #0F2547;
    border: 1.5px solid #E9ECEF;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

    .machine-filter-btn:hover,
    .machine-filter-btn.active {
        background: #0F2547;
        color: #fff;
        border-color: #0F2547;
    }

.machine-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .machine-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    }

.machine-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.machine-card-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: rgba(255,255,255,0.2);
}

.machine-card-body {
    padding: 24px;
}

.machine-card-title {
    font-weight: 700;
    color: #0F2547;
    font-size: 1rem;
    margin: 0;
}

.machine-badge {
    background: #EEF4FF;
    color: #2E75B6;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.machine-specs {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 14px;
}

.machine-spec-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6C757D;
    padding: 5px 0;
    border-bottom: 1px solid #E9ECEF;
}

    .machine-spec-row:last-child {
        border-bottom: none;
    }

/* ── ABOUT ── */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-stat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

    .about-stat-card:hover {
        transform: translateY(-4px);
    }

.about-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto 12px;
}

.about-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0F2547;
    line-height: 1;
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.8rem;
    color: #6C757D;
    font-weight: 500;
}

.about-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    height: 100%;
    transition: transform 0.3s ease;
}

    .about-feature-card:hover {
        transform: translateY(-4px);
    }

.about-feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #F4A820, #D4880A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 16px;
}

.about-feature-card h5 {
    font-weight: 700;
    color: #0F2547;
    margin-bottom: 8px;
}

.about-feature-card p {
    color: #6C757D;
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}

/* ── DARK OUTLINE BUTTON ── */
.btn-outline-dark-custom {
    background: transparent;
    color: #0F2547;
    border: 2px solid #0F2547;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .btn-outline-dark-custom:hover {
        background: #0F2547;
        color: #fff;
    }

/* ── VISION MISSION ── */
.vm-card {
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vm-vision {
    background: linear-gradient(135deg, #0F2547, #1B3A6B);
    color: #fff;
}

.vm-mission {
    background: linear-gradient(135deg, #F4A820, #D4880A);
    color: #fff;
}

.vm-icon {
    width: 64px;
    height: 64px;
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 24px;
}

.vm-card h3 {
    font-weight: 800;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.vm-card p {
    opacity: 0.85;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.2s;
}

    .value-card:hover {
        transform: translateY(-3px);
    }

.value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0F2547, #2E75B6);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.value-title {
    font-weight: 700;
    color: #0F2547;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.value-desc {
    color: #6C757D;
    font-size: 0.825rem;
    line-height: 1.5;
}

/* ── PRIVACY ── */
.privacy-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}

.privacy-section {
    display: flex;
    gap: 24px;
    padding: 32px;
    border-bottom: 1px solid #F0F0F0;
    align-items: flex-start;
}

.privacy-section-num {
    font-size: 2rem;
    font-weight: 900;
    color: #F4A820;
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    width: 48px;
}

.privacy-section h4 {
    font-weight: 700;
    color: #0F2547;
    margin-bottom: 10px;
}

.privacy-section p {
    color: #6C757D;
    line-height: 1.8;
    margin: 0;
    font-size: 0.9rem;
}

/* ── NAVBAR — İÇ SAYFALARDA BAŞTAN KOYU ── */
.navbar-inner {
    background: var(--primary) !important;
}

/* ── FOOTER PHONE ── */
.footer-phone-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

    .footer-phone-item i {
        color: var(--accent);
        font-size: 1rem;
        margin-top: 2px;
        flex-shrink: 0;
    }

.footer-phone-name {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 2px;
}

.footer-phone-number {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-phone-number:hover {
        color: var(--accent);
    }

/* ── REFERENCE STAT BOX ── */
.reference-stat-box {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

/* Mobilde navbar açıkken arka plan */
@media (max-width: 991px) {
    .navbar-main .navbar-collapse.show,
    .navbar-main .navbar-collapse.collapsing {
        background: var(--primary);
        padding: 10px 15px;
        border-radius: 8px;
        margin-top: 8px;
    }
}