/* ==========================================================================
   Snyptech Child Theme — Custom Theme Layout & Templates CSS v1.0
   ========================================================================== */

/* 1. Reset & Global Layout Utilities
   ========================================================================== */
.snyp-main-content {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.snyp-section {
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.snyp-section--light {
    background-color: var(--snyp-white);
}

.snyp-section--gray {
    background-color: var(--snyp-gray-light);
}

.snyp-section--dark {
    background-color: var(--snyp-dark);
    color: var(--snyp-white);
}

.snyp-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Typography Helpers */
.snyp-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: center;
    color: var(--snyp-dark);
}

.snyp-section--dark .snyp-section-title {
    color: var(--snyp-white);
}

.snyp-section-subtitle {
    font-size: 1.1rem;
    color: var(--snyp-gray);
    text-align: center;
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.snyp-section--dark .snyp-section-subtitle {
    color: #94a3b8;
}

/* Button & UI Components — Matches Uploaded Reference Images */
.snyp-btn,
button.snyp-btn,
input[type="submit"].snyp-btn,
input[type="button"].snyp-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    white-space: nowrap !important;
    outline: none !important;
    box-shadow: none !important;
    height: auto !important;
    line-height: 1.2 !important;
}

/* Primary Branding Button — Brand Blue */
.snyp-btn--primary,
button.snyp-btn--primary,
input[type="submit"].snyp-btn--primary {
    background-color: var(--snyp-blue) !important;
    color: var(--snyp-white) !important;
    border: 1px solid var(--snyp-blue) !important;
}

.snyp-btn--primary:hover,
button.snyp-btn--primary:hover,
input[type="submit"].snyp-btn--primary:hover {
    background-color: var(--snyp-blue-dark) !important;
    border-color: var(--snyp-blue-dark) !important;
    color: var(--snyp-white) !important;
    transform: translateY(-1px) !important;
}

/* Try Snyptech CTA — Green Style */
.snyp-btn--green {
    background-color: #22c55e !important;
    color: var(--snyp-white) !important;
    border: 1px solid #22c55e !important;
}

.snyp-btn--green:hover {
    background-color: #1aa64e !important;
    border-color: #1aa64e !important;
    transform: translateY(-1px) !important;
}

/* SEO Checker — Dark Blue Style */
.snyp-btn--dark,
button.snyp-btn--dark {
    background-color: #0d355a !important;
    color: var(--snyp-white) !important;
    border: 1px solid #0d355a !important;
    gap: 6px !important;
}

.snyp-btn--dark:hover,
button.snyp-btn--dark:hover {
    background-color: #08233c !important;
    border-color: #08233c !important;
    transform: translateY(-1px) !important;
}

/* Secondary Button style */
.snyp-btn--secondary,
button.snyp-btn--secondary {
    background-color: var(--snyp-white) !important;
    color: var(--snyp-dark) !important;
    border: 1px solid var(--snyp-border) !important;
}

.snyp-btn--secondary:hover,
button.snyp-btn--secondary:hover {
    background-color: var(--snyp-gray-light) !important;
    border-color: var(--snyp-border) !important;
    transform: translateY(-1px) !important;
}

.snyp-btn--white {
    background-color: var(--snyp-white);
    color: #0d355a !important;
}

.snyp-btn--white:hover {
    background-color: var(--snyp-gray-light);
    transform: translateY(-1px);
}

/* Grid helper */
.snyp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .snyp-grid--2col { grid-template-columns: repeat(2, 1fr); }
    .snyp-grid--3col { grid-template-columns: repeat(3, 1fr); }
    .snyp-grid--4col { grid-template-columns: repeat(4, 1fr); }
}

/* 2. Site Header & Navbar Layout — Premium Dark Theme
   ========================================================================== */
.snyp-site-header {
    background-color: var(--snyp-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.snyp-site-header.scrolled {
    background-color: #1a6ad4;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.snyp-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    transition: height 0.3s ease;
}

.snyp-site-header.scrolled .snyp-header-container {
    height: 56px;
}

/* Logo */
.snyp-branding {
    flex-shrink: 0;
}

.snyp-branding .snyp-logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--snyp-white) !important;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.snyp-branding img,
.snyp-branding .custom-logo {
    max-height: 32px;
    width: auto;
    display: block;
}

/* Navigation Links */
.snyp-site-navigation {
    display: flex;
    align-items: center;
}

.snyp-menu-wrapper {
    display: flex;
    align-items: center;
}

.snyp-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.snyp-nav-menu li {
    position: relative;
}

.snyp-nav-menu a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 20px 16px;
    display: block;
    transition: color 0.2s ease, background-color 0.2s ease;
    letter-spacing: 0.01em;
}

.snyp-nav-menu a:hover {
    color: var(--snyp-white);
    background-color: rgba(255,255,255,0.08);
}

.snyp-nav-menu li.current-menu-item > a {
    color: var(--snyp-white);
    background-color: rgba(255,255,255,0.1);
}

/* Submenu / Dropdown */
.snyp-nav-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--snyp-white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius-sm);
    padding: 8px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.snyp-nav-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.snyp-nav-menu li ul a {
    color: var(--snyp-dark-2);
    padding: 10px 20px;
    font-size: 0.88rem;
}

.snyp-nav-menu li ul a:hover {
    background-color: var(--snyp-blue-light);
    color: var(--snyp-blue-dark);
}

/* Header CTA Button — outlined white */
.snyp-header-cta {
    margin-left: 16px;
    flex-shrink: 0;
}

.snyp-btn--cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--snyp-radius-sm);
    border: 1.5px solid rgba(255,255,255,0.5);
    background-color: rgba(255,255,255,0.08);
    color: var(--snyp-white) !important;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.snyp-btn--cta:hover {
    background-color: var(--snyp-white);
    color: var(--snyp-blue) !important;
    border-color: var(--snyp-white);
    transform: translateY(-1px);
}

.snyp-btn--cta svg {
    flex-shrink: 0;
}

/* --- Sub-page Header Extension: Breadcrumbs & Services Submenu --- */
.snyp-sub-header {
    background-color: var(--snyp-blue);
    width: 100%;
}

/* Breadcrumbs — lighter blue bar */
.snyp-breadcrumb-bar {
    background-color: #63adf8;
    height: 48px;
}

.snyp-breadcrumb-bar .snyp-header-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.snyp-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
}

.snyp-breadcrumbs a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.snyp-breadcrumbs a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.snyp-breadcrumbs .sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.snyp-breadcrumbs .current {
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 1;
    min-width: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Fade mask only applies when theme-layout.js has confirmed the text
   is actually clipped (scrollWidth > clientWidth) — short titles that
   fit fully must render at full opacity, not fade for no reason. */
.snyp-breadcrumbs .current.is-truncated {
    -webkit-mask-image: linear-gradient(to right, #000 80%, transparent 100%);
    mask-image: linear-gradient(to right, #000 80%, transparent 100%);
}

/* Sub-navigation Menu — slider with gradient fades */
.snyp-sub-nav-bar {
    background-color: var(--snyp-blue);
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.snyp-sub-nav-slider {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Viewport that clips the scrollable menu */
.snyp-sub-nav-viewport {
    flex-grow: 1;
    overflow-x: auto !important;
    display: flex;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.snyp-sub-nav-viewport::-webkit-scrollbar {
    display: none !important;
}

.snyp-sub-nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    white-space: nowrap;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.snyp-sub-nav-menu .sub-menu-item {
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.snyp-sub-nav-menu .sub-menu-item a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    display: block;
}

.snyp-sub-nav-menu .sub-menu-item a:hover {
    color: #ffffff;
}

.snyp-sub-nav-menu .sub-menu-item.active a {
    color: #ffffff;
    border-bottom-color: #ffffff;
    font-weight: 700;
}

/* Phantom-active state (for slider navigation highlighting) */
.snyp-sub-nav-menu .sub-menu-item.phantom-active a {
    color: #ffffff;
}

/* --- Slider Control Wrappers (gradient + button together) --- */
.snyp-sub-nav-ctrl {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

/* Gradient fade overlays */
.snyp-sub-nav-gradient {
    width: 48px;
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
}

.snyp-sub-nav-gradient--prev {
    right: 100%;
    background: linear-gradient(to right, var(--snyp-blue), transparent);
}

.snyp-sub-nav-gradient--next {
    left: auto;
    right: 100%;
    background: linear-gradient(to left, var(--snyp-blue), transparent);
}

/* Slider Prev/Next Outlined Buttons */
.snyp-sub-nav-btn {
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    background-color: transparent !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    flex-shrink: 0;
    font-family: inherit;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.snyp-sub-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: #ffffff !important;
}

.snyp-sub-nav-btn--prev {
    width: 34px;
    height: 34px;
    margin-right: 12px;
}

.snyp-sub-nav-btn--next {
    padding: 7px 16px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    gap: 6px;
    margin-left: 12px;
}

/* Responsive Sub-nav */
@media (max-width: 991px) {
    .snyp-sub-nav-menu {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .snyp-sub-nav-viewport {
        overflow-x: auto;
        padding: 8px 0;
        -webkit-overflow-scrolling: touch;
    }

    .snyp-sub-nav-menu {
        gap: 20px;
        width: max-content;
    }

    .snyp-sub-nav-menu .sub-menu-item a {
        padding: 8px 0;
        font-size: 0.88rem;
    }

    .snyp-sub-nav-ctrl {
        display: none !important;
    }
}

/* Hamburger mobile button */
.snyp-menu-toggle {
    display: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    cursor: pointer;
    padding: 8px !important;
    z-index: 1100;
    transition: all 0.2s ease;
    outline: none !important;
}

.hamburger-box {
    width: 22px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 22px;
    height: 2px;
    background-color: var(--snyp-white);
    position: absolute;
    left: 0;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
    border-radius: 2px;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before { top: -7px; }
.hamburger-inner::after { bottom: -7px; }

/* Hamburger → X transition */
.snyp-menu-toggle[aria-expanded="true"] {
    background-color: #ffffff !important;
    border-radius: 4px !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
    padding: 0 !important;
    margin: 0 !important;
    text-indent: 0 !important;
    z-index: 1100 !important;
    border: none !important;
}

.snyp-menu-toggle[aria-expanded="true"] .hamburger-box {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    position: relative !important;
}

.snyp-menu-toggle[aria-expanded="true"] .hamburger-inner,
.snyp-menu-toggle[aria-expanded="true"] .hamburger-inner::before,
.snyp-menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    background-color: #334155 !important; /* Dark grey lines like the reference */
    width: 18px !important;
    left: 0 !important;
    right: 0 !important;
}

.snyp-menu-toggle[aria-expanded="true"] .hamburger-inner {
    background-color: transparent !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.snyp-menu-toggle[aria-expanded="true"] .hamburger-inner::before {
    transform: translateY(7px) rotate(45deg) !important;
}

.snyp-menu-toggle[aria-expanded="true"] .hamburger-inner::after {
    transform: translateY(-7px) rotate(-45deg) !important;
}

/* Mobile Menu Overlay */
.snyp-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.snyp-menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* Body and HTML scroll lock when menu open — prevents background scrolling on mobile */
html.menu-open,
body.menu-open {
    overflow: hidden !important;
    height: 100% !important;
    position: fixed !important;
    width: 100% !important;
}

/* Mobile Responsive Menu — Solid Blue Theme */
@media (max-width: 991px) {
    .snyp-site-header {
        z-index: 1060 !important; /* Forces the header on top of the menu wrapper */
    }

    .snyp-menu-toggle {
        display: block;
    }

    .snyp-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw; /* Full width drawer */
        max-width: 100vw;
        height: 100vh;
        background-color: var(--snyp-blue) !important;
        box-shadow: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start !important; /* Fixed flexbox centering overflow bug */
        padding: 120px 24px 60px !important; /* Generous top padding for clean spacing */
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        overflow-y: auto;
        box-sizing: border-box !important;
    }

    .snyp-menu-wrapper.is-open {
        right: 0;
    }

    .snyp-nav-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        align-items: center;
    }

    .snyp-nav-menu a {
        color: rgba(255, 255, 255, 0.7) !important; /* Elegant faded white links by default */
        padding: 10px 20px !important;
        font-size: 1.05rem !important;
        text-align: center;
        border-bottom: none !important;
        font-weight: 500;
        transition: all 0.2s ease;
        background-color: transparent !important; /* No background patch */
    }

    .snyp-nav-menu a:hover {
        color: #ffffff !important;
        background-color: transparent !important;
    }

    .snyp-nav-menu li.current-menu-item > a {
        color: #ffffff !important; /* Solid white for active link */
        background-color: transparent !important; /* No background patch */
        font-weight: 700;
    }

    .snyp-nav-menu li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        transform: none;
        display: none;
        background-color: transparent !important;
    }

    .snyp-nav-menu li ul a {
        padding-left: 20px;
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.95rem;
    }

    .snyp-nav-menu li:hover > ul,
    .snyp-nav-menu li.menu-item-has-children.active > ul {
        display: block;
    }

    .snyp-header-cta {
        margin-left: 0;
        margin-top: 36px;
        padding: 0;
        width: 100%;
        max-width: 260px; /* Centered width matches Log in/Try free buttons */
        box-sizing: border-box !important;
    }
    
    .snyp-header-cta a {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        padding: 12px 24px !important;
        border-radius: 6px !important;
        background-color: #ffffff !important; /* White button style */
        color: var(--snyp-blue) !important; /* Blue text */
        border: none !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 14px rgba(0,0,0,0.15) !important;
    }

    .snyp-header-cta a:hover {
        background-color: #f8fafc !important;
        transform: translateY(-1px) !important;
    }

    .snyp-header-cta a svg {
        display: none !important;
    }
}

/* 3. Site Footer Layout — Dark Theme
   ========================================================================== */
.snyp-site-footer {
    background-color: #0f1923;
    color: #c1cdd9;
    font-size: 0.95rem;
    line-height: 1.7;
}

.snyp-footer-container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Footer Top: Logo + Contact Button + Address --- */
.snyp-footer-top {
    padding: 48px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.snyp-footer-top-inner {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 64px;
    align-items: center;
}

.snyp-footer-top-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.snyp-footer-top-right-map {
    width: 100%;
    min-height: 180px;
}

.snyp-footer-logo .snyp-logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff !important;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.snyp-footer-logo .custom-logo {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes dark logos white on the dark footer */
}

.snyp-footer-desc {
    color: #7ea0be;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 520px;
}

.snyp-footer-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.snyp-footer-contact-btn {
    display: inline-block;
    padding: 8px 24px;
    border: 1.5px solid #c1cdd9;
    border-radius: 6px;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.snyp-footer-contact-btn:hover {
    background-color: #ffffff;
    color: #0f1923 !important;
    border-color: #ffffff;
}

.snyp-footer-address {
    color: #8899aa;
    font-size: 0.9rem;
}

/* --- Footer Main: Link Columns Grid --- */
.snyp-footer-main {
    padding: 48px 0;
}

.snyp-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.snyp-footer-title,
.snyp-footer-column h3.snyp-footer-title {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff !important;
    margin-bottom: 20px;
}

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

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

.snyp-footer-links a {
    color: #7ea0be;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

.snyp-footer-contact-list li {
    color: #7ea0be;
    font-size: 0.9rem;
}

.snyp-footer-addr-item {
    color: #8899aa;
    line-height: 1.6;
    margin-bottom: 16px !important;
}

/* --- Footer Bottom: Gradient Bar + Copyright + Social --- */
.snyp-footer-bottom {
    padding: 0 0 32px;
}

.snyp-footer-gradient-bar {
    height: 3px;
    background: linear-gradient(90deg, #207de9 0%, #207de9 40%, #22c55e 50%, #22c55e 55%, #207de9 60%, #207de9 100%);
    border-radius: 2px;
    margin-bottom: 24px;
}

.snyp-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.snyp-copyright {
    color: #5a7080;
    font-size: 0.85rem;
    margin: 0;
}

.snyp-footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.snyp-footer-social a {
    color: #5a7080;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.snyp-footer-social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- Footer Responsive --- */
@media (max-width: 991px) {
    .snyp-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 991px) {
    .snyp-footer-top-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .snyp-footer-top-inner {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        align-items: stretch;
    }

    .snyp-footer-top-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .snyp-footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .snyp-footer-bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }
}

/* Back to Top button */
.snyp-back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px;
    width: 44px;
    height: 44px;
    background-color: var(--snyp-blue);
    color: var(--snyp-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: right 0.3s ease, background-color 0.22s ease, transform 0.22s ease;
}

.snyp-back-to-top.show {
    right: 30px;
}

.snyp-back-to-top:hover {
    background-color: var(--snyp-blue-dark);
    transform: translateY(-3px);
}

.snyp-back-to-top .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Screen reader text accessibility helper */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f5f9;
    clip: auto !important;
    clip-path: none;
    color: var(--snyp-dark);
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px;
    position: absolute;
    top: 5px;
    text-decoration: none;
    width: auto;
    z-index: 100000;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

/* 4. Page Layout Templates (Homepage, Service, About, Contact)
   ========================================================================== */

/* Hero Section — Split Layout with Globe Visual */
.snyp-hero {
    padding: 0;
    position: relative;
    background-color: var(--snyp-white);
    overflow: hidden;
}

.snyp-hero__container {
    max-width: 1216px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.snyp-hero__content {
    max-width: 100%;
}

.snyp-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--snyp-dark);
    letter-spacing: -1px;
}

.snyp-hero__subtitle {
    font-size: 1.15rem;
    color: var(--snyp-dark);
    line-height: 1.6;
    margin-bottom: 16px;
}

.snyp-hero__desc {
    font-size: 1rem;
    color: var(--snyp-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Inline Audit Form */
/* Inline Audit Form — Premium Seamless Layout */
.snyp-hero__audit-form {
    display: flex !important;
    align-items: stretch !important;
    background-color: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 6px !important;
    max-width: 520px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.snyp-hero__audit-form:focus-within {
    border-color: var(--snyp-blue) !important;
    box-shadow: 0 4px 24px rgba(32, 125, 233, 0.15) !important;
}

.snyp-hero__audit-input {
    flex: 1 !important;
    border: none !important;
    background: transparent !important;
    padding: 12px 16px !important;
    font-size: 1rem !important;
    font-family: var(--snyp-font) !important;
    color: var(--snyp-dark) !important;
    outline: none !important;
    box-shadow: none !important;
}

.snyp-hero__audit-input::placeholder {
    color: #94a3b8 !important;
}

.snyp-btn--audit {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    font-family: var(--snyp-font) !important;
    border: none !important;
    border-radius: 6px !important;
    background-color: #22c55e !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25) !important;
}

.snyp-btn--audit:hover {
    background-color: #1aa64e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35) !important;
}

/* Hero Dashboard Image */
.snyp-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snyp-hero__dashboard-img {
    width: 654px;
    height: auto;
    flex-shrink: 0;
    display: block;
}

@media (max-width: 768px) {
    .snyp-hero__dashboard-img {
        width: 100%;
        border-radius: 10px;
        border: 6px solid #0e3358;
        height: auto !important;
    }
}

/* Trust Stats Bar */
.snyp-hero__stats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid var(--snyp-border);
    position: relative;
    z-index: 2;
}

.snyp-hero__stat {
    text-align: center;
}

.snyp-hero__stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--snyp-dark);
    line-height: 1;
}

.snyp-hero__stat-plus {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--snyp-blue);
}

.snyp-hero__stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--snyp-gray);
    margin-top: 6px;
    font-weight: 500;
}

.snyp-hero__stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--snyp-border);
}

/* About Placeholder */
.snyp-about-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--snyp-gray-light);
    border-radius: var(--snyp-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--snyp-gray);
}

/* Responsive Hero */
@media (max-width: 991px) {
    .snyp-hero__container {
        grid-template-columns: 1fr !important;
        padding: 80px 24px 48px !important;
        gap: 56px !important;
    }

    .snyp-hero__visual {
        min-height: auto !important;
        order: 1 !important;
    }

    .snyp-hero__title {
        font-size: 2.1rem !important;
        text-align: center !important;
    }

    .snyp-hero__subtitle {
        text-align: center !important;
    }

    .snyp-hero__desc {
        text-align: center !important;
        margin-bottom: 24px !important;
    }

    .snyp-hero__audit-form {
        margin: 0 auto !important;
    }
}

@media (max-width: 767px) {
    .snyp-hero__container {
        max-width: 328px !important;
        margin: 0 auto !important;
        padding: 80px 16px 48px !important;
        gap: 56px !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 575px) {
    .snyp-hero__title {
        font-size: 1.8rem;
    }

    .snyp-hero__audit-form {
        flex-direction: column;
        gap: 12px;
    }

    .snyp-hero__audit-input {
        border-right: 1.5px solid var(--snyp-border);
        border-radius: var(--snyp-radius-sm);
    }

    .snyp-btn--audit {
        border-radius: var(--snyp-radius-sm);
        justify-content: center;
    }

    .snyp-hero__stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .snyp-hero__stat-divider {
        display: none;
    }

    .snyp-hero__stat {
        flex: 1 0 40%;
    }
}

/* Grid & Cards (reusable) */
.snyp-card {
    background-color: var(--snyp-white);
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius);
    padding: 32px;
    transition: var(--snyp-transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.snyp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--snyp-shadow);
    border-color: var(--snyp-blue);
}

.snyp-card__icon {
    font-size: 36px;
    color: var(--snyp-blue);
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--snyp-blue-light);
    border-radius: var(--snyp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.snyp-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--snyp-dark);
}

.snyp-card__description {
    color: var(--snyp-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.snyp-card__link {
    color: var(--snyp-blue);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.snyp-card__link::after {
    content: " →";
    transition: var(--snyp-transition);
}

.snyp-card:hover .snyp-card__link::after {
    transform: translateX(4px);
}

/* Split Section layout (About preview, etc.) */
.snyp-split-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 992px) {
    .snyp-split-section { grid-template-columns: 1fr 1fr; }
}

.snyp-split-section__image img {
    width: 100%;
    height: auto;
    border-radius: var(--snyp-radius);
    box-shadow: var(--snyp-shadow);
}

.snyp-split-section__content .badge {
    color: var(--snyp-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: block;
}

.snyp-split-section__content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--snyp-dark);
    line-height: 1.2;
}

.snyp-split-section__content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--snyp-gray);
}

/* Case Study Showcase cards on homepage */
.case-study-showcase-grid {
    margin-top: 40px;
}

.case-study-showcase-card {
    background-color: var(--snyp-white);
    border-radius: var(--snyp-radius);
    overflow: hidden;
    border: 1px solid var(--snyp-border);
    transition: var(--snyp-transition);
}

.case-study-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--snyp-shadow);
}

.case-study-showcase-card__image {
    height: 240px;
    position: relative;
    overflow: hidden;
    background-color: #f1f5f9;
}

.case-study-showcase-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--snyp-transition);
}

.case-study-showcase-card:hover .case-study-showcase-card__image img {
    transform: scale(1.05);
}

.case-study-showcase-card__body {
    padding: 24px;
}

.case-study-showcase-card__industry {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--snyp-blue);
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.5px;
}

.case-study-showcase-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.case-study-showcase-card__title a {
    color: var(--snyp-dark) !important;
    text-decoration: none;
}

.case-study-showcase-card__title a:hover {
    color: var(--snyp-blue) !important;
}

.case-study-showcase-card__excerpt {
    font-size: 0.95rem;
    color: var(--snyp-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Case Studies Archive — extra elements */
.case-study-showcase-card__client {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--snyp-dark-2);
    margin: -4px 0 10px;
}

.case-study-showcase-card__result-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: var(--snyp-white);
    color: var(--snyp-blue);
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
    padding: 8px 14px;
    border-radius: var(--snyp-radius-sm);
    box-shadow: var(--snyp-shadow);
    text-align: center;
}

.case-study-showcase-card__result-badge small {
    display: block;
    font-weight: 600;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--snyp-gray);
    margin-top: 2px;
}

.case-studies-filter-pills {
    margin: 32px 0 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 0 0;
    list-style: none;
}

.snyp-cat-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 1.5px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

.snyp-cat-pill:hover {
    background: #f1f5f9;
    border-color: var(--snyp-blue, #207DE9);
    color: var(--snyp-blue, #207DE9);
}

.snyp-cat-pill.active {
    background: var(--snyp-blue, #207DE9);
    border-color: var(--snyp-blue, #207DE9);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(32, 125, 233, 0.25);
}

@media (max-width: 640px) {
    .case-studies-filter-pills {
        gap: 8px;
        margin: 20px 0 4px;
        padding: 0 16px;
    }

    .snyp-cat-pill {
        padding: 7px 16px;
        font-size: 0.82rem;
    }
}

/* Bottom CTA Section — Premium Light Theme (#f1f5f9) */
.snyp-section--cta {
    background-color: #f1f5f9;
    position: relative;
    z-index: 1;
    padding: 96px 0;
    border-top: 1px solid #e2e8f0;
}

.snyp-cta-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 72px;
    align-items: center;
}

.snyp-cta-content h2 {
    color: #0f172a;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.snyp-cta-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 600px;
}

/* Two CTA buttons side by side */
.snyp-cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.snyp-btn--primary-cta {
    background-color: #0f1923 !important;
    border: 1.5px solid #0f1923 !important;
    color: #ffffff !important;
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(15, 25, 35, 0.15) !important;
}

.snyp-btn--primary-cta:hover {
    background-color: #1e2d3b !important;
    border-color: #1e2d3b !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(15, 25, 35, 0.25) !important;
}

.snyp-btn--secondary-cta {
    background-color: transparent !important;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1 !important;
    padding: 11px 28px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.snyp-btn--secondary-cta:hover {
    background-color: #ffffff !important;
    border-color: #0f172a !important;
    color: #0f172a !important;
}

/* Compact and Sleek Inquiry Form Card */
.snyp-cta-form-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    box-sizing: border-box;
    max-width: 380px;
    margin-left: auto;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.snyp-cta-form-title {
    color: #0f172a;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 6px;
    text-align: left;
}

.snyp-cta-form-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0 0 20px;
    text-align: left;
}

.snyp-form-group {
    margin-bottom: 12px;
    position: relative;
}

.snyp-form-input {
    width: 100% !important;
    padding: 11px 14px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 6px !important;
    font-size: 0.9rem !important;
    color: #0f172a !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

.snyp-form-input::placeholder {
    color: #94a3b8 !important;
}

.snyp-form-input:focus {
    border-color: #207de9 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(32, 125, 233, 0.12) !important;
}

/* Country Code and Phone Number Wrapper */
.snyp-phone-input-wrapper {
    display: flex;
    gap: 8px;
    width: 100%;
}

.snyp-form-select {
    flex-shrink: 0;
    width: 90px !important;
    padding: 11px 8px !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 6px !important;
    font-size: 0.88rem !important;
    color: #475569 !important;
    background-color: #f8fafc !important;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box !important;
}

.snyp-form-select:focus {
    border-color: #207de9 !important;
    outline: none;
}

/* Submit Inquiry Button */
.snyp-btn--submit-inquiry {
    width: 100% !important;
    padding: 12px !important;
    background-color: #22c55e !important;
    color: #ffffff !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: block !important;
    text-align: center !important;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2) !important;
    margin-top: 16px;
}

.snyp-btn--submit-inquiry:hover {
    background-color: #1aa64e !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3) !important;
}

/* Responsive CTA */
@media (max-width: 991px) {
    .snyp-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .snyp-cta-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .snyp-cta-content h2 {
        font-size: 2.1rem;
    }

    .snyp-cta-actions {
        justify-content: center;
    }

    .snyp-cta-form-card {
        max-width: 380px;
        margin: 0 auto;
        padding: 28px 20px;
    }
}

@media (max-width: 767px) {
    .snyp-section--cta {
        padding: 80px 16px 48px !important;
    }

    .snyp-cta-wrapper {
        max-width: 328px !important;
        margin: 0 auto !important;
        gap: 56px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .snyp-cta-form-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 24px 16px !important;
    }
}

/* About Page & Values styles */
.values-grid {
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
}

.value-card__number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--snyp-blue-light);
    line-height: 1;
    margin-bottom: 16px;
}

.value-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card__description {
    color: var(--snyp-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Showcase layout */
.team-grid {
    margin-top: 40px;
}

.team-card {
    background-color: var(--snyp-white);
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius);
    overflow: hidden;
    text-align: center;
    transition: var(--snyp-transition);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--snyp-shadow);
}

.team-card__image {
    height: 280px;
    background-color: #f1f5f9;
    overflow: hidden;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--snyp-transition);
}

.team-card:hover .team-card__image img {
    transform: scale(1.03);
}

.team-card__body {
    padding: 24px;
}

.team-card__name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card__role {
    font-size: 0.85rem;
    color: var(--snyp-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.team-card__bio {
    font-size: 0.9rem;
    color: var(--snyp-gray);
    line-height: 1.5;
}

/* Contact Page Form & details styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 992px) {
    .contact-grid { grid-template-columns: 1.2fr 1.8fr; }
}

.contact-info-card {
    background-color: var(--snyp-blue-light);
    border-radius: var(--snyp-radius);
    padding: 40px;
    height: 100%;
}

.contact-info-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--snyp-blue-dark);
}

.contact-info-card p {
    color: var(--snyp-dark-2);
    font-size: 1rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-info-list .icon-wrapper {
    width: 44px;
    height: 44px;
    background-color: var(--snyp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--snyp-blue-dark);
    box-shadow: 0 2px 8px rgba(32,125,233,0.08);
}

.contact-info-list .icon-wrapper .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.contact-info-list h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--snyp-dark);
}

.contact-info-list p {
    margin: 0;
    color: var(--snyp-gray);
    font-size: 0.95rem;
}

.contact-info-list a {
    color: var(--snyp-gray);
    text-decoration: none;
}

.contact-info-list a:hover {
    color: var(--snyp-blue-dark);
}

/* Contact Form container styling */
.contact-form-container {
    background-color: var(--snyp-white);
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius);
    padding: 40px;
}

.contact-form-container h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.snyp-form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.snyp-form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--snyp-dark);
}

.snyp-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius-sm);
    background-color: var(--snyp-white);
    font-size: 0.95rem;
    color: var(--snyp-dark);
    transition: var(--snyp-transition);
}

.snyp-form-control:focus {
    border-color: var(--snyp-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(32,125,233,0.15);
}

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

.form-response-msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--snyp-radius-sm);
    font-size: 0.95rem;
    display: none;
}

.form-response-msg.success {
    display: block;
    background-color: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-response-msg.error {
    display: block;
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Map Section */
.snyp-map-section {
    margin-top: 60px;
    border-radius: var(--snyp-radius);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--snyp-shadow);
    border: 1px solid var(--snyp-border);
}

.snyp-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Reusable Service Page Template Details */
.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .service-overview-grid { grid-template-columns: 1.5fr 1fr; }
}

/* ================================================================
   Service Sub-Page Template Styles
   ================================================================ */

/* Service Hero */
.snyp-service-hero {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 72px 24px 64px;
}

.snyp-service-hero__inner {
    max-width: 720px;
}

.snyp-service-hero__badge {
    display: block;
    color: var(--snyp-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.snyp-service-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.snyp-service-hero__subtitle {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 32px;
}

.snyp-service-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Section Header Utility */
.snyp-section-header {
    margin-bottom: 48px;
    text-align: center;
}

.snyp-section-header .badge {
    color: var(--snyp-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

.snyp-section-header .snyp-section-title {
    margin-top: 0;
}

/* Service Feature Cards */
.service-features-grid {
    margin-top: 0;
}

.service-feature-card {
    background-color: var(--snyp-white);
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius);
    padding: 32px;
    transition: var(--snyp-transition);
}

.service-feature-card:hover {
    border-color: var(--snyp-blue);
    box-shadow: var(--snyp-shadow);
}

.service-feature-card__number {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(32, 125, 233, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.service-feature-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--snyp-dark);
    line-height: 1.3;
}

.service-feature-card__desc {
    color: var(--snyp-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Flow Timeline */
.process-flow {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 32px;
}

.process-flow::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--snyp-border);
}

.process-step {
    position: relative;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step__number {
    position: absolute;
    left: -32px;
    width: 24px;
    height: 24px;
    background-color: var(--snyp-blue);
    color: var(--snyp-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.process-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--snyp-dark);
}

.process-step__desc {
    color: var(--snyp-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits / Why Choose Us */
.service-benefits-grid {
    margin-top: 0;
}

.service-benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background-color: var(--snyp-white);
    border: 1px solid var(--snyp-border);
    border-radius: var(--snyp-radius);
    padding: 28px;
    transition: var(--snyp-transition);
}

.service-benefit-card:hover {
    border-color: var(--snyp-blue);
    box-shadow: var(--snyp-shadow);
}

.service-benefit-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(32, 125, 233, 0.1);
    color: var(--snyp-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-benefit-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 6px;
}

.service-benefit-card__desc {
    font-size: 0.92rem;
    color: var(--snyp-gray);
    line-height: 1.6;
    margin: 0;
}

/* Image Placeholder */
.service-img-placeholder {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: var(--snyp-radius);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Service Sub-page Responsive */
@media (max-width: 991px) {
    .snyp-service-hero__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .snyp-service-hero {
        padding: 56px 24px 48px;
    }

    .snyp-service-hero__title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .snyp-service-hero__subtitle {
        font-size: 1rem;
    }

    .snyp-section-header {
        margin-bottom: 32px;
    }

    .service-feature-card {
        padding: 24px;
    }

    .service-benefit-card {
        padding: 20px;
    }

    .service-img-placeholder {
        height: 240px;
    }
}

/* ================================================================
   Services Directory Page
   ================================================================ */

/* Hero Section */
.services-directory-hero {
    border-bottom: 1px solid #cbd5e1;
    padding: 80px 0 60px;
}

.services-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content .snyp-hero__badge {
    display: block;
    margin-bottom: 12px;
    color: var(--snyp-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.services-hero-desc {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.65;
    margin: 0;
}

/* Grid Section */
.services-directory-section {
    padding: 80px 0;
}

.services-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card (now an <a> anchor block) */
.service-directory-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 36px 28px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-sizing: border-box;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-directory-card:hover {
    border-color: var(--snyp-blue);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(32, 125, 233, 0.1), 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* SVG Icon Circle */
.service-dir-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(32, 125, 233, 0.08), rgba(32, 125, 233, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--snyp-blue);
    transition: all 0.25s ease;
}

.service-directory-card:hover .service-dir-icon-box {
    background: var(--snyp-blue);
    color: #ffffff;
    transform: scale(1.05);
}

.service-dir-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.3;
}

.service-dir-card-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 24px;
    flex-grow: 1;
}

/* "Learn More" link-style label inside the anchor card */
.service-dir-card-link {
    color: var(--snyp-blue);
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.service-directory-card:hover .service-dir-card-link {
    gap: 8px;
}

.service-dir-card-link svg {
    transition: transform 0.2s ease;
}

.service-directory-card:hover .service-dir-card-link svg {
    transform: translateX(4px);
}

/* Services directory responsive rules */
@media (max-width: 991px) {
    .services-hero-title {
        font-size: 2.2rem;
    }

    .services-directory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .services-directory-hero {
        padding: 60px 0 40px;
    }

    .services-hero-title {
        font-size: 1.75rem;
        letter-spacing: -0.5px;
    }

    .services-hero-desc {
        font-size: 1rem;
    }

    .services-directory-section {
        padding: 56px 0;
    }

    .services-directory-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 328px;
        margin: 0 auto;
    }

    .service-directory-card {
        padding: 28px 20px;
    }
}

/* ================================================================
   Video Testimonials — Featured Player + Sidebar Playlist
   ================================================================ */

.snyp-video-testimonials {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 24px;
    align-items: start;
}

/* Featured Player */
.snyp-vt-featured {
    width: 100%;
}

.snyp-vt-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 12px;
    overflow: hidden;
    background-color: #0f172a;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.12);
}

.snyp-vt-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.snyp-vt-featured-info {
    padding: 16px 4px 0;
}

.snyp-vt-featured-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 4px;
}

.snyp-vt-featured-info p {
    font-size: 0.9rem;
    color: var(--snyp-gray);
    margin: 0;
}

/* Sidebar Playlist */
.snyp-vt-playlist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

/* Custom scrollbar */
.snyp-vt-playlist::-webkit-scrollbar {
    width: 4px;
}

.snyp-vt-playlist::-webkit-scrollbar-track {
    background: transparent;
}

.snyp-vt-playlist::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Playlist Item */
.snyp-vt-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 10px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: left !important;
    width: 100% !important;
    font-family: inherit !important;
    color: var(--snyp-dark) !important;
    box-shadow: none !important;
}

.snyp-vt-item:hover,
.snyp-vt-item:focus {
    background-color: #f8fafc !important;
    border-color: var(--snyp-blue) !important;
    box-shadow: 0 4px 16px rgba(32, 125, 233, 0.08) !important;
    color: var(--snyp-dark) !important;
}

.snyp-vt-item--active,
.snyp-vt-item--active:hover,
.snyp-vt-item--active:focus {
    border-color: var(--snyp-blue) !important;
    background-color: rgba(32, 125, 233, 0.05) !important;
    box-shadow: 0 2px 8px rgba(32, 125, 233, 0.1) !important;
    color: var(--snyp-dark) !important;
}

/* Thumbnail */
.snyp-vt-item__thumb {
    position: relative;
    width: 120px;
    min-width: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.snyp-vt-item__thumb img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Play overlay */
.snyp-vt-item__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.snyp-vt-item:hover .snyp-vt-item__play {
    background: var(--snyp-blue);
}

.snyp-vt-item__play svg {
    margin-left: 2px; /* Optical center for play triangle */
}

/* Info */
.snyp-vt-item__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.snyp-vt-item__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--snyp-dark);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.snyp-vt-item__subtitle {
    font-size: 0.78rem;
    color: var(--snyp-gray);
    line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .snyp-video-testimonials {
        grid-template-columns: 1fr;
    }

    .snyp-vt-playlist {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        max-height: none;
        padding-bottom: 8px;
        padding-right: 0;
        gap: 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .snyp-vt-item {
        min-width: 260px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }
}

@media (max-width: 767px) {
    .snyp-vt-item {
        min-width: 220px;
        padding: 8px;
        gap: 10px;
    }

    .snyp-vt-item__thumb {
        width: 96px;
        min-width: 96px;
    }

    .snyp-vt-featured-info h3 {
        font-size: 1rem;
    }
}

/* ================================================================
   Latest Blog Posts — Homepage Section
   ================================================================ */

/* Header row: title left, button right */
.snyp-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.snyp-blog-header .badge {
    color: var(--snyp-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

.snyp-blog-header__btn {
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* Blog Grid */
.snyp-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Blog Card */
.snyp-blog-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.snyp-blog-card:hover {
    border-color: var(--snyp-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(32, 125, 233, 0.06);
}

/* Image */
.snyp-blog-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
}

.snyp-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.snyp-blog-card:hover .snyp-blog-card__img {
    transform: scale(1.05);
}

/* Placeholder */
.snyp-blog-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    background: #f1f5f9;
    aspect-ratio: 16 / 10;
}

/* Body */
.snyp-blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Row */
.snyp-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.snyp-blog-card__cat {
    background: rgba(32, 125, 233, 0.08);
    color: var(--snyp-blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 3px 10px;
    border-radius: 4px;
}

.snyp-blog-card__date {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Title */
.snyp-blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.snyp-blog-card__title a {
    color: var(--snyp-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.snyp-blog-card__title a:hover {
    color: var(--snyp-blue);
}

/* Excerpt */
.snyp-blog-card__excerpt {
    font-size: 0.9rem;
    color: var(--snyp-gray);
    line-height: 1.6;
    margin: 0 0 16px;
    flex-grow: 1;
}

/* Read Article link reuses .snyp-card__link */

/* ── Blog Responsive ── */
@media (max-width: 991px) {
    .snyp-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .snyp-blog-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .snyp-blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .snyp-blog-card__body {
        padding: 20px;
    }

    .snyp-blog-card__title {
        font-size: 1rem;
    }
}

/* ================================================================
   About Us Page Styles
   ================================================================ */

/* Hero Section Wrapper */
.about-hero {
    padding: 96px 24px !important;
}

/* Hero grid layout */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-hero-text {
    max-width: 680px;
}

.about-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--snyp-dark);
    margin: 16px 0 24px;
}

.about-hero-desc .lead-text {
    font-size: 1.18rem;
    color: var(--snyp-blue);
    margin-bottom: 16px;
    line-height: 1.6;
}

.about-hero-desc p {
    font-size: 1.05rem;
    color: var(--snyp-gray);
    line-height: 1.7;
}

/* Metric Card style */
.about-hero-metric {
    display: flex;
    justify-content: center;
    align-items: center;
}

.metric-card {
    position: relative;
    background: #0f172a;
    border-radius: 20px;
    padding: 32px 28px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-card__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(32, 125, 233, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.metric-card__label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.metric-card__value {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
    font-family: inherit;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}

.metric-card__value .num {
    font-size: 5.5rem;
    background: linear-gradient(135deg, #ffffff 30%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-card__value .pct {
    font-size: 2.25rem;
    color: var(--snyp-blue);
    margin-top: 14px;
}

.metric-card__desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 24px;
}

/* Micro bar chart */
.metric-card__graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 48px;
    width: 120px;
}

.metric-card__graph span {
    display: block;
    width: 100%;
    background: linear-gradient(to top, rgba(32, 125, 233, 0.2), var(--snyp-blue));
    border-radius: 4px;
    transition: height 0.3s ease;
}

/* Mission & Vision Section */
.mission-vision-grid {
    gap: 36px;
}

.mission-vision-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mission-vision-card:hover {
    border-color: var(--snyp-blue);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.mission-vision-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(32, 125, 233, 0.08);
    color: var(--snyp-blue);
    margin-bottom: 24px;
}

.mission-vision-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 16px;
}

.mission-vision-card p {
    font-size: 0.98rem;
    color: var(--snyp-gray);
    line-height: 1.7;
    margin: 0;
}

/* Process Section */
.process-grid {
    gap: 28px;
}

.process-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

.process-card:hover {
    border-color: var(--snyp-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.process-card__number {
    font-size: 2.25rem;
    font-weight: 800;
    color: rgba(32, 125, 233, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}

.process-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 8px;
}

.process-card__desc {
    font-size: 0.92rem;
    color: var(--snyp-gray);
    line-height: 1.5;
    margin: 0;
}

.process-footer {
    text-align: center;
    margin-top: 48px;
    font-size: 1.05rem;
    color: var(--snyp-gray);
}

.process-footer .snyp-link-btn {
    color: var(--snyp-blue);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.process-footer .snyp-link-btn:hover {
    text-decoration: underline;
    margin-left: 4px;
}

/* Why Choose Section layout */
.why-choose-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-choose-intro {
    max-width: 900px;
}

.why-choose-intro .badge {
    color: var(--snyp-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

.why-choose-desc {
    font-size: 1.08rem;
    color: var(--snyp-gray);
    line-height: 1.75;
    margin: 0;
}

.benefits-about-grid {
    gap: 24px;
    margin-top: 16px;
}

.about-benefit-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.25s ease;
}

.about-benefit-card:hover {
    border-color: var(--snyp-blue);
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.about-benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(32, 125, 233, 0.08);
    color: var(--snyp-blue);
    margin-bottom: 18px;
}

.about-benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 6px;
}

.about-benefit-card p {
    font-size: 0.9rem;
    color: var(--snyp-gray);
    line-height: 1.5;
    margin: 0;
}

/* About CTA card layout */
.about-cta-card {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 60px 48px;
    color: #ffffff;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-cta-card__glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 160%;
    background: radial-gradient(circle, rgba(32, 125, 233, 0.22) 0%, transparent 60%);
    pointer-events: none;
}

.about-cta-card__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.about-cta-card h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin: 0 0 16px;
    color: #ffffff !important;
}

.about-cta-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0 0 32px;
}

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

.about-cta-actions .snyp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-hero {
        padding: 60px 24px !important;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .about-hero-text {
        text-align: center;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-cta-card {
        padding: 40px 32px;
        text-align: center;
    }
    
    .about-cta-card__content {
        margin: 0 auto;
    }
    
    .about-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 48px 24px !important;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }
    
    .mission-vision-card {
        padding: 24px;
    }
    
    .about-cta-card h2 {
        font-size: 1.75rem;
    }
    
    .about-cta-card p {
        font-size: 0.98rem;
    }
}

/* ================================================================
   Contact Us Page Styles
   ================================================================ */

/* Contact Hero */
.contact-hero {
    padding: 80px 24px 64px !important;
}

.contact-hero__content {
    max-width: 700px;
}

.contact-hero__title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--snyp-dark);
    margin: 16px 0 16px;
}

.contact-hero__subtitle {
    font-size: 1.1rem;
    color: var(--snyp-gray);
    line-height: 1.7;
    margin: 0;
}

/* Contact Info Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.contact-card:hover {
    border-color: var(--snyp-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(32, 125, 233, 0.08);
    color: var(--snyp-blue);
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 6px;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--snyp-gray);
    margin: 0 0 10px;
    line-height: 1.5;
}

.contact-card__link {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--snyp-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a.contact-card__link:hover {
    color: var(--snyp-dark);
    text-decoration: underline;
}

/* Contact Main Grid (Form + Map Sidebar) */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Form Wrapper */
.contact-form-wrapper .badge {
    color: var(--snyp-blue);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: inline-block;
}

.contact-form-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--snyp-dark);
    margin: 0 0 12px;
}

.contact-form-desc {
    font-size: 1rem;
    color: var(--snyp-gray);
    line-height: 1.6;
    margin: 0 0 32px;
}

/* Form Row (2 inputs side by side) */
.snyp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Controls */
.snyp-contact-form .snyp-form-group {
    margin-bottom: 20px;
}

.snyp-contact-form label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--snyp-dark);
    margin-bottom: 6px;
}

.snyp-contact-form .snyp-form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--snyp-dark);
    background: #f8fafc;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.snyp-contact-form .snyp-form-control:focus {
    outline: none;
    border-color: var(--snyp-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(32, 125, 233, 0.1);
}

.snyp-contact-form textarea.snyp-form-control {
    resize: vertical;
    min-height: 120px;
}

.snyp-contact-form .snyp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Form Response Messages */
.form-response-msg {
    display: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.form-response-msg.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-response-msg.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Map Sidebar */
.contact-map-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-map-embed iframe {
    width: 100%;
    display: block;
}

/* Sidebar Info Card */
.contact-sidebar-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 28px;
}

.contact-sidebar-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--snyp-dark);
    margin: 0 0 16px;
}

/* Office Hours */
.contact-hours-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.contact-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.contact-hours-list li:last-child {
    border-bottom: none;
}

.contact-hours-list span {
    color: var(--snyp-gray);
}

.contact-hours-list strong {
    color: var(--snyp-dark);
    font-weight: 600;
}

/* Social Links */
.contact-sidebar-social {
    padding-top: 4px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.contact-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--snyp-gray);
    transition: all 0.2s ease;
}

.contact-social-links a:hover {
    background: var(--snyp-blue);
    border-color: var(--snyp-blue);
    color: #ffffff;
}

/* ── Contact Page Responsive ── */
@media (max-width: 991px) {
    .contact-hero {
        padding: 60px 24px 48px !important;
    }

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

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero__title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 48px 24px 36px !important;
    }

    .contact-hero__title {
        font-size: 1.8rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .snyp-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-heading {
        font-size: 1.4rem;
    }
}

/* ================================================================
   Careers & Job Openings Styles
   ================================================================ */

.careers-hero {
    padding: 80px 24px 64px !important;
}

.job-detail-hero {
    padding: 60px 24px 48px !important;
    background: #f8fafc;
    border-bottom: 1px solid var(--snyp-border);
}

.job-detail-header {
    max-width: 900px;
}

/* Department Badge/Tag */
.job-dept-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--snyp-blue);
    background: rgba(32, 125, 233, 0.08);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Job Metadata Row */
.job-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
}

.job-meta-row .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--snyp-gray);
    font-weight: 500;
}

.job-meta-row .meta-item svg {
    color: var(--snyp-blue);
    flex-shrink: 0;
}

/* Jobs Listings Wrapper */
.jobs-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Individual Job Card */
.job-opening-card {
    background: #ffffff;
    border: 1px solid var(--snyp-border);
    border-radius: 12px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: all 0.25s ease;
}

.job-opening-card:hover {
    border-color: var(--snyp-blue);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
    transform: translateY(-2px);
}

.job-title-link {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 8px 0 10px;
}

.job-title-link a {
    color: var(--snyp-dark);
    text-decoration: none;
}

.job-title-link a:hover {
    color: var(--snyp-blue);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .job-opening-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
    }

    .job-opening-card__action {
        width: 100%;
    }

    .job-opening-card__action .snyp-btn {
        width: 100%;
        display: flex;
    }

    .job-meta-row {
        gap: 12px 16px;
    }
}

/* Job details grid container */
.job-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 991px) {
    .job-detail-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .job-apply-sidebar {
        position: static !important;
    }
}




/* Archive alignment fix */
.case-studies-filter-pills{
max-width:1200px;
margin:40px auto 56px;
padding:0 24px;
align-items:center;
}
.case-study-showcase-grid{
margin-top:0;
}
@media(max-width:640px){
.case-studies-filter-pills{padding:0 16px;margin:24px auto 40px;}
}
