@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #F5F7FA;
    color: #444444;
    overflow-x: hidden;
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

a { transition: color 0.3s, opacity 0.3s, background 0.3s, border-color 0.3s; }
img { max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { color: #0B1F3B; margin: 0; font-weight: 700; }

/* --- Top Bar --- */
.top-bar {
    background: #0B1F3B;
    color: #FFFFFF;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 2px solid #0A6E5C;
}
.top-bar a { color: #FFFFFF; text-decoration: none; font-weight: 500; }
.top-bar a:hover { color: #E8C36A; }
.top-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.top-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-left span i { color: #D4A843; font-size: 13px; }
.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #FFFFFF;
    font-size: 12px;
}
.top-right a:hover { background: #D4A843; color: #0B1F3B; }
.top-right .wa-btn { background: #0A6E5C !important; color: #FFFFFF !important; }
.top-right .wa-btn:hover { background: #D4A843 !important; color: #0B1F3B !important; }

/* --- Main Header --- */
.main-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E8C36A;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
.logo img { height: 50px; width: auto; }

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(90deg, red, gold, green, gold, red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: moveLeft 12s linear infinite, blink 1.2s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

@keyframes moveLeft {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.logo {
    overflow: hidden;
    max-width: 250px;
    flex-shrink: 0;
}

/* --- Navigation: Desktop --- */
.main-nav {
    flex-shrink: 0;
}
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    color: #0B1F3B;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: #D4A843; }
.main-nav .fa-chevron-down {
    font-size: 9px;
    transition: transform 0.3s;
}
.main-nav > ul > li:hover > a .fa-chevron-down { transform: rotate(180deg); }

/* --- Desktop dropdown (vertical) --- */
.main-nav .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 280px;
    box-shadow: 0 12px 40px rgba(11,31,59,0.1);
    border: 1px solid #F5F7FA;
    border-top: 3px solid #D4A843;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    display: block;
    flex-direction: column;
}
.main-nav .nav-dropdown li {
    display: block;
    width: 100%;
}
.main-nav > ul > li:hover > .nav-dropdown,
.main-nav > ul > li:focus-within > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    color: #444444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-dropdown li a:hover {
    background: #F5F7FA;
    color: #0B1F3B;
    padding-left: 26px;
}
.nav-dropdown li a i {
    width: 18px;
    text-align: center;
    color: #0A6E5C;
    font-size: 14px;
    flex-shrink: 0;
}

/* --- Mobile Toggle Button --- */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    flex-shrink: 0;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #0B1F3B;
    border-radius: 2px;
    transition: all 0.3s;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Mobile Overlay --- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,31,59,0.5);
    z-index: 1998;
    transition: opacity 0.3s;
}
.nav-overlay.active { display: block; }

/* --- Page Hero Banner --- */
.page-hero {
    background: #0B1F3B;
    padding: 60px 0 55px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #D4A843;
}
.page-hero .hero-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,110,92,0.12), rgba(8,90,75,0.04));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-hero h1 {
    color: #FFFFFF;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
    position: relative;
    z-index: 2;
}
.page-hero p {
    color: #FFFFFF;
    font-size: 16px;
    max-width: 550px;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 2;
}
.page-hero .breadcrumb {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    font-size: 13px;
}
.page-hero .breadcrumb a {
    color: #E8C36A;
    text-decoration: none;
}
.page-hero .breadcrumb a:hover { color: #FFFFFF; }
.page-hero .breadcrumb span { color: #FFFFFF; margin: 0 8px; }
.page-hero .breadcrumb .current { color: rgba(255,255,255,0.6); }

/* --- Section Common --- */
.section-padding { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 55px; }
.section-label {
    display: inline-block;
    color: #D4A843;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0B1F3B;
    margin: 0 0 14px;
    line-height: 1.2;
}
.section-header p {
    color: #444444;
    font-size: 15px;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}
.section-divider {
    width: 50px;
    height: 3px;
    background: #D4A843;
    margin: 18px auto 0;
}

/* =============================================
   SERVICE CARDS (What's Included Section)
   ============================================= */

.service-card {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 40px 30px 35px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11,31,59,0.1);
    border-color: #D4A843;
}

/* Service Card Icon */
.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(10,110,92,0.06);
    border: 1.5px solid #E8C36A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: #0A6E5C;
    transition: all 0.3s;
    flex-shrink: 0;
}
.service-card:hover .service-icon {
    background: rgba(10,110,92,0.1);
    border-color: #0A6E5C;
}

/* Service Card Title */
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0B1F3B;
    margin: 0 0 14px;
    line-height: 1.3;
}

/* Service Card Description */
.service-card p {
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

/* Learn More Link (for Other Services section) */
.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0A6E5C;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
}
.learn-more i {
    font-size: 12px;
    transition: transform 0.3s;
}
.learn-more:hover {
    color: #D4A843;
}
.learn-more:hover i {
    transform: translateX(4px);
}

/* =============================================
   TRUST/PROCESS ITEMS (Our Process Section)
   ============================================= */

.trust-item {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 35px 28px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,31,59,0.08);
    border-color: #D4A843;
}

/* Trust Item Icon */
.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10,110,92,0.06);
    border: 1.5px solid #0A6E5C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #0A6E5C;
    transition: all 0.3s;
    flex-shrink: 0;
}
.trust-item:hover .trust-icon {
    background: rgba(10,110,92,0.12);
    border-color: #085A4B;
}

/* Trust Item Title */
.trust-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B1F3B;
    margin: 0 0 14px;
    line-height: 1.35;
}

/* Trust Item Description */
.trust-item p {
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

/* =============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================= */

/* --- Contact Info Cards --- */
.contact-info-card {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,31,59,0.08);
    border-color: #D4A843;
}
.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10,110,92,0.06);
    border: 1.5px solid #0A6E5C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #0A6E5C;
}
.contact-info-card h4 {
    font-size: 17px;
    margin-bottom: 10px;
}
.contact-info-card p {
    font-size: 14px;
    margin-bottom: 5px;
}
.contact-info-card a {
    color: #0A6E5C;
    font-weight: 600;
    text-decoration: none;
}
.contact-info-card a:hover {
    color: #D4A843;
}

/* --- Form + Map Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* --- Contact Form --- */
.contact-form-wrap {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 40px;
    height: 100%;
}
.contact-form-wrap h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

/* Two-column form rows using CSS Grid (replaces Bootstrap cols for reliability) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-col {
    min-width: 0;
}

.contact-form-wrap .form-group {
    margin-bottom: 20px;
}
.contact-form-wrap label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #0B1F3B;
    margin-bottom: 8px;
}
.contact-form-wrap input,
.contact-form-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D8DDE4;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    color: #444444;
    background: #F5F7FA;
    transition: border-color 0.3s, background 0.3s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
    outline: none;
    border-color: #D4A843;
    background: #FFFFFF;
}
.contact-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

/* --- Map Container --- */
.contact-map-wrap {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    overflow: hidden;
    min-height: 500px;
}
.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* --- Buttons --- */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4A843, #E8C36A);
    color: #0B1F3B;
    padding: 15px 38px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
    border: none;
    cursor: pointer;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #c49938, #D4A843);
    color: #0B1F3B;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}

/* --- CTA Box --- */
.cta-box {
    background: #0B1F3B;
    border-radius: 6px;
    padding: 60px 40px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    border: 1px solid #0A6E5C;
}
.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: #D4A843;
}
.cta-box h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 14px;
    color: #FFFFFF;
    position: relative;
}
.cta-box p {
    font-size: 15px;
    color: #FFFFFF;
    margin: 0 auto 32px;
    max-width: 520px;
    position: relative;
    line-height: 1.8;
}

/* --- Footer --- */
.site-footer {
    background: #0B1F3B;
    color: #FFFFFF;
    padding: 60px 0 0;
}
.site-footer h5 {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid #D4A843;
    display: inline-block;
}
.site-footer p {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 12px;
    color: #FFFFFF;
}
.footer-logo img { height: 50px; margin-bottom: 18px; }
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.footer-links li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 10px;
    color: #D4A843;
}
.footer-links li a:hover { color: #E8C36A; }
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #FFFFFF;
}
.footer-contact li a { color: #FFFFFF; text-decoration: none; }
.footer-contact li a:hover { color: #E8C36A; }
.footer-contact li i {
    color: #D4A843;
    margin-top: 4px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #085A4B;
    border: 1px solid #0A6E5C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    background: #D4A843;
    border-color: #D4A843;
    color: #0B1F3B;
}
.footer-bottom {
    border-top: 1px solid #0A6E5C;
    margin-top: 50px;
    padding: 22px 0;
    text-align: center;
    font-size: 13px;
    color: #FFFFFF;
    background: #085A4B;
}
.footer-bottom a { color: #FFFFFF; text-decoration: none; }
.footer-bottom a:hover { color: #E8C36A; }

/* --- Go Top --- */
.go-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D4A843, #E8C36A);
    color: #0B1F3B;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
}
.go-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(212,168,67,0.4); }

/* =============================================
   PRICING SECTION — CARDS & COMPARISON TABLE
   ============================================= */

/* --- Teal Button (matches btn-gold pattern) --- */
.btn-teal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #085A4B, #0A6E5C);
    color: #FFFFFF;
    padding: 15px 38px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-teal:hover {
    background: linear-gradient(135deg, #074a3e, #085A4B);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10,110,92,0.35);
}

/* --- Pricing Cards Row --- */
.pricing-cards-row {
    margin-bottom: 60px;
}

/* --- Pricing Card --- */
.pricing-card {
    background: #FFFFFF;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    padding: 35px 25px 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(11,31,59,0.1);
    border-color: #D4A843;
}

/* --- Featured Card (Standard / Most Popular) --- */
.pricing-card-featured {
    border-color: #0A6E5C;
    box-shadow: 0 8px 32px rgba(10,110,92,0.1);
}
.pricing-card-featured:hover {
    box-shadow: 0 20px 56px rgba(10,110,92,0.18);
    border-color: #0A6E5C;
}

/* --- Most Popular Badge --- */
.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #085A4B, #0A6E5C);
    color: #FFFFFF;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* --- Pricing Icon --- */
.pricing-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(10,110,92,0.06);
    border: 1.5px solid #E8C36A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 24px;
    color: #0A6E5C;
    transition: all 0.3s;
}
.pricing-card:hover .pricing-icon {
    border-color: #D4A843;
}

/* Featured card icon override */
.pricing-icon-featured {
    background: rgba(10,110,92,0.1);
    border-color: #0A6E5C;
    color: #0A6E5C;
}
.pricing-card-featured:hover .pricing-icon-featured {
    border-color: #0A6E5C;
}

/* --- Card Title --- */
.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0B1F3B;
    margin: 0 0 12px;
}

/* --- Price Amount --- */
.pricing-amount {
    font-size: 34px;
    font-weight: 800;
    color: #0A6E5C;
    margin: 0 0 6px;
    line-height: 1.2;
}
/* Smaller variant for "Starting from" prices */
.pricing-amount-from {
    font-size: 22px;
    font-weight: 800;
    color: #0A6E5C;
    margin: 0 0 6px;
    line-height: 1.3;
}

/* --- Card Description --- */
.pricing-desc {
    color: #444444;
    font-size: 14px;
    margin: 0 0 22px;
    line-height: 1.6;
}

/* --- Feature List --- */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
    flex-grow: 1;
}
.pricing-features li {
    padding: 9px 0;
    border-bottom: 1px solid #F5F7FA;
    color: #444444;
    font-size: 13px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-features li:last-child {
    border-bottom: none;
}
.pricing-features li i.fa-check {
    color: #0A6E5C;
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 12px;
}

/* --- Pricing Button (full-width inside card) --- */
.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */

.pricing-table-wrap {
    margin-top: 10px;
}
.pricing-table-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #0B1F3B;
    margin: 0 0 30px;
}

/* Horizontal scroll wrapper for mobile */
.pricing-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #E8C36A;
    border-radius: 6px;
    background: #FFFFFF;
}

/* Table base */
.pricing-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 14px;
}

/* Header row */
.pricing-table thead th {
    background: #0B1F3B;
    color: #FFFFFF;
    padding: 16px 18px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    white-space: nowrap;
    border-bottom: 3px solid #D4A843;
}
.pricing-table thead th:first-child {
    text-align: left;
    border-radius: 5px 0 0 0;
}
.pricing-table thead th:last-child {
    border-radius: 0 5px 0 0;
}

/* Featured column header highlight */
.pricing-table-col-featured {
    background: rgba(10,110,92,0.2) !important;
}

/* Body rows */
.pricing-table tbody td {
    padding: 14px 18px;
    text-align: center;
    color: #444444;
    border-bottom: 1px solid #F0F2F5;
    font-size: 14px;
}
.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #0B1F3B;
}

/* Featured column body cells */
.pricing-table tbody td.pricing-table-col-featured {
    background: rgba(10,110,92,0.03);
}

/* Remove border from last row */
.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* Subtle row hover */
.pricing-table tbody tr:hover td {
    background: #F5F7FA;
}
.pricing-table tbody tr:hover td.pricing-table-col-featured {
    background: rgba(10,110,92,0.06);
}

/* --- Check / Cross / Limited indicators --- */
.pricing-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(10,110,92,0.1);
    color: #0A6E5C;
    font-size: 12px;
}
.pricing-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #F0F2F5;
    color: #B0B8C4;
    font-size: 12px;
}
.pricing-limited {
    display: inline-block;
    background: #FFF8E7;
    color: #B8860B;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    border: 1px solid #F0DFA0;
}

/* =============================================
   SCROLL FADE-IN ANIMATION
   ============================================= */
.pricing-fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.pricing-fade.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger delay for cards (set via JS) */
.pricing-fade.delay-1 { transition-delay: 0.1s; }
.pricing-fade.delay-2 { transition-delay: 0.2s; }
.pricing-fade.delay-3 { transition-delay: 0.3s; }
.pricing-fade.delay-4 { transition-delay: 0.4s; }

/* =============================================
   MOBILE NAVIGATION (≤991px)
   ============================================= */
@media (max-width: 991px) {
    .mobile-toggle { display: flex; }

    /* Slide-in panel */
    .main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #FFFFFF;
        box-shadow: -5px 0 30px rgba(11,31,59,0.15);
        z-index: 2000;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        padding: 24px 0 30px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        display: block !important;
    }
    .main-nav.open { right: 0; }

    /* Vertical stack for top-level items */
    .main-nav > ul {
        flex-direction: column;
        align-items: stretch;
    }

    /* Each top-level link spans full width */
    .main-nav > ul > li > a {
        padding: 14px 24px;
        border-bottom: 1px solid #F0F2F5;
        justify-content: flex-start;
        font-size: 13px;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    /* COMPLETELY hide dropdowns on mobile */
    .main-nav .nav-dropdown {
        display: none !important;
    }

    /* Hide chevron icons on mobile */
    .main-nav > ul > li > a .fa-chevron-down {
        display: none;
    }

    .page-hero h1 { font-size: 30px; }
    .page-hero .hero-accent { display: none; }
    .section-header h2 { font-size: 28px; }

    /* Service cards: slightly smaller padding */
    .service-card {
        padding: 32px 24px 28px;
    }
    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Trust items: slightly smaller padding */
    .trust-item {
        padding: 28px 22px 24px;
    }

    /* Form + Map: stack vertically on tablet */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing adjustments */
    .pricing-amount {
        font-size: 28px;
    }
    .pricing-amount-from {
        font-size: 19px;
    }
    .pricing-card {
        padding: 30px 22px 26px;
    }
    .pricing-table-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .top-bar { text-align: center; }
    .top-left, .top-right { justify-content: center; }
    .page-hero { padding: 45px 0 40px; }
    .page-hero h1 { font-size: 24px; }
    .page-hero p { font-size: 14px; }
    .section-padding { padding: 55px 0; }
    .section-header h2 { font-size: 24px; }
    .cta-box { padding: 35px 22px; }
    .cta-box h2 { font-size: 22px; }

    /* Service cards: compact on mobile */
    .service-card {
        padding: 28px 20px 24px;
    }
    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 16px;
    }
    .service-card h3 {
        font-size: 16px;
    }

    /* Trust items: compact on mobile */
    .trust-item {
        padding: 24px 18px 20px;
    }
    .trust-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    .trust-item h4 {
        font-size: 15px;
    }

    /* Form: reduce padding on small phones */
    .contact-form-wrap {
        padding: 28px 20px;
    }

    /* Form rows: stack fields vertically */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Map: reduce min-height on mobile */
    .contact-map-wrap {
        min-height: 320px;
    }
    .contact-map-wrap iframe {
        min-height: 320px;
    }

    /* Pricing: single column, compact cards */
    .pricing-cards-row > [class*="col-sm-"] {
        width: 100%;
    }
    .pricing-cards-row {
        margin-bottom: 40px;
    }
    .pricing-card {
        padding: 30px 20px 26px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .pricing-amount {
        font-size: 30px;
    }
    .pricing-amount-from {
        font-size: 20px;
    }
    .pricing-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: 18px;
    }
    .pricing-table-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .pricing-table-scroll {
        border-radius: 4px;
    }
    /* Add scroll hint shadow on mobile */
    .pricing-table-scroll::after {
        content: '';
        position: sticky;
        right: 0;
        top: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(to right, transparent, rgba(232,195,106,0.3));
        pointer-events: none;
        border-radius: 0 4px 4px 0;
    }
}


/* =============================================
   PROCESS ROW — FLEXBOX CENTERING
   Centers incomplete rows automatically
   ============================================= */
.process-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Ensure consistent card widths within the flex container */
.process-row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Make trust-items fill the flex column */
.process-row .trust-item {
    flex-grow: 1;
}
