/* =========================================================
   DBOseven PREMIUM LIGHT THEME
   Inspired by live website aesthetic
========================================================= */

/* ================================
   ROOT VARIABLES
================================ */
:root {

    --color-bg: #FAFAF8;
    --color-bg-alt: #FFFFFF;
    --color-bg-warm: #F5F3EF;
    --color-primary: #004D40;
    --color-primary-dark: #00332A;
    --color-accent: #007A68;
    --color-accent-light: #E0F2EF;
    --color-text: #2C3E50;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    --color-border: #E2E8F0;
    --color-success: #059669;
    --color-warning: #D97706;
    --color-sql: #CC2927;
    --color-pg: #336791;

    --bs-primary: #007A68;
    --bs-primary-rgb: 0, 122, 104;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: all 0.35s ease;
}

/* ================================
   RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    background: var(--color-bg);
    color: var(--color-text);

    overflow-x: clip;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

/* ================================
   TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: 'Poppins', sans-serif;
    color: var(--color-primary);
    line-height: 1.25;
    letter-spacing: -0.03em;
}

/* ================================
   SECTION THEMES
================================ */
.bg-warm {
    background-color: var(--color-bg-warm);
}

.bg-dark {
    background-color: var(--color-primary-dark) !important;
}

/* Typography Overrides for Dark Sections */
.bg-dark .section-title,
.bg-dark .hero-title,
.bg-dark .contact-heading,
.bg-dark .process-content h3,
.bg-dark h4 {
    color: #f8fafc !important;
}

.bg-dark .section-text,
.bg-dark .hero-text,
.bg-dark .contact-description,
.bg-dark .process-content p {
    color: #ffffffb5 !important;
}

.bg-dark .label-caps,
.bg-dark .case-metric {
    color: #2dd4bf !important;
}

.bg-dark .process-circle {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 12px var(--color-primary-dark);
}

/* Prevent text inheritance inside white cards */
.bg-dark [class*="card"] .section-title,
.bg-dark [class*="card"] .contact-heading {
    color: var(--color-primary);
}

.bg-dark [class*="card"] .section-text,
.bg-dark [class*="card"] .contact-description {
    color: var(--color-text-light);
}

.bg-dark [class*="card"] .label-caps,
.bg-dark [class*="card"] .case-metric {
    color: var(--color-accent);
}

.hero-title {

    font-size: 35px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title {

    font-size: 35px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.card-title {

    font-size: 20px;
    line-height: 1.35;
}

.hero-text,
.section-text,
.card-text {

    color: var(--color-text-light);
    font-size: 16px;
}

.hero-text {

    font-size: 16px;
    max-width: 760px;
}

.label-caps {

    display: inline-block;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--color-accent);
}

/* ================================
   CONTAINER
================================ */
.container {
    max-width: 1280px;
}

/* ================================
   NAVBAR
================================ */
.premium-navbar {

    background: rgba(255, 255, 255, 0.88);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.04);

    padding: 10px 0;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.navbar-brand {

    font-size: 20px;
    font-weight: 700;

    color: var(--color-primary) !important;
}

.nav-link {

    color: #000000 !important;

    font-size: 16px;
    font-weight: 600;

    padding: 10px 16px !important;

    border-radius: 10px;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {

    /* background: var(--color-accent-light); */
    color: var(--color-accent) !important;
}

/* ================================
   BUTTONS
================================ */
.btn-primary-custom {

    background: var(--color-accent);
    color: white;

    border: none;

    padding: 10px 15px;

    border-radius: 14px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    text-decoration: none;

    transition: var(--transition);

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {

    background: var(--color-primary);

    transform: translateY(-2px);

    color: white;
}

.btn-outline-custom {

    border: 1px solid var(--color-border);

    background: white;
    color: var(--color-primary);

    padding: 10px 15px;

    border-radius: 14px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    letter-spacing: 0.04em;
    text-transform: uppercase;

    transition: var(--transition);

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {

    border-color: var(--color-accent);

    background: var(--color-accent-light);

    color: var(--color-accent);
}

/* ================================
   HERO SECTION
================================ */
.hero-section {

    padding: 190px 0 120px;

    position: relative;
    overflow: hidden;
}

.hero-section::before {

    content: '';

    position: absolute;

    top: -200px;
    right: -200px;

    width: 700px;
    height: 700px;

    background: radial-gradient(circle,
            rgba(45, 125, 210, 0.08),
            transparent 70%);

    pointer-events: none;
}

/* ================================
   SECTION SPACING
================================ */
.section-padding {

    padding: 50px 0;
}

/* ================================
   PROCESS SECTION
================================ */

.process-section {

    overflow: hidden;
}

.process-card {

    text-align: center;

    position: relative;

    height: 100%;
}

.process-top {

    position: relative;

    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 34px;
}

.process-circle {

    width: 96px;
    height: 96px;

    border-radius: 50%;

    background: #ffffff;

    border: 3px solid var(--color-accent);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 3;

    font-family: 'DM Serif Display', serif;

    font-size: 35px;
    line-height: 1;

    color: var(--color-accent);

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.06),
        0 0 0 12px var(--color-bg);
}

/* CONNECTOR LINES */

.process-line-left,
.process-line-right {

    position: absolute;

    top: 50%;

    height: 2px;

    background: var(--color-border);

    width: calc(50% - 48px);

    transform: translateY(-50%);

    z-index: 1;
}

.process-line-left {

    left: 0;
}

.process-line-right {

    right: 0;
}

/* CONTENT */

.process-content h3 {

    font-size: 20px;

    line-height: 1.35;

    margin-bottom: 22px;
}

.process-content p {

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-light);

    max-width: 280px;

    margin: 0 auto;
}

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

@media (max-width: 991px) {

    .process-line-left,
    .process-line-right {

        display: none;
    }

    .process-top {

        margin-bottom: 24px;

        height: auto;
    }

    .process-card {

        margin-bottom: 20px;
    }

    .process-circle {

        width: 82px;
        height: 82px;

        font-size: 35px;
    }

    .process-content h3 {

        font-size: 20px;
    }

    .process-content p {

        font-size: 16px;
    }
}

/* ================================
   MIGRATION SECTION
================================ */

.migration-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 28px;

    padding: 42px;

    height: 100%;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.migration-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.migration-card h3 {

    font-size: 20px;

    line-height: 1.35;

    margin-bottom: 16px;

    text-align: center;
}

.migration-card p {

    color: var(--color-text-light);

    font-size: 16px;

    line-height: 1.6;

    text-align: center;

    max-width: 320px;

    margin: 0 auto 34px;
}

/* MIGRATION LIST */

.migration-list {

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.migration-item {

    background: var(--color-bg-warm);

    border: 1px solid var(--color-border);

    border-radius: 16px;

    padding: 18px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    font-size: 16px;
    font-weight: 500;

    color: var(--color-primary);

    min-height: 64px;
}

.migration-item .arrow {

    color: var(--color-accent);

    font-size: 20px;

    font-weight: 700;
}

/* TECH STACK */

.migration-stack {

    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    gap: 16px;

    margin-top: 70px;

    padding-top: 50px;

    border-top: 1px solid var(--color-border);
}

.migration-pill {

    padding: 14px 22px;

    border-radius: 999px;

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    color: var(--color-primary);

    font-size: 16px;
    font-weight: 500;

    transition: var(--transition);
}

.migration-pill:hover {

    background: var(--color-accent-light);

    border-color: var(--color-accent);

    color: var(--color-accent);

    transform: translateY(-2px);
}

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

@media (max-width: 768px) {

    .migration-card {

        padding: 30px;
    }

    .migration-card h3 {

        font-size: 20px;
    }

    .migration-item {

        flex-wrap: wrap;

        gap: 10px;

        text-align: center;
    }

    .migration-stack {

        gap: 12px;
    }

    .migration-pill {

        font-size: 16px;

        padding: 12px 18px;
    }
}



/* =========================================
   SCROLLING BLOG CARDS VERTICAL
========================================= */

.scrolling-blog-section-vertical {

    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--bs-gutter-x) * 0.5);
    right: calc(var(--bs-gutter-x) * 0.5);
    overflow: hidden;
    padding: 10px 0;

    mask-image: linear-gradient(to bottom, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 2%, black 98%, transparent);
}

.scrolling-blog-track-vertical {

    display: flex;
    flex-direction: column;
    gap: 24px;
    height: max-content;
    animation: scrollBlogsVertical 40s linear infinite;
}

.scrolling-blog-track-vertical:hover {
    animation-play-state: paused;
}

.scrolling-blog-track-vertical .scroll-blog-card {

    width: 100%;
    border-radius: 20px;
    transition: var(--transition);
}

.scrolling-blog-track-vertical .scroll-blog-image img {
    height: 180px;
}

.scrolling-blog-track-vertical .scroll-blog-content {
    padding: 20px;
}

.scrolling-blog-track-vertical .scroll-blog-content h3 {
    font-size: 18px;
}

@keyframes scrollBlogsVertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-50%);
    }
}

/* =========================================
   EDITORIAL BLOGS
========================================= */

.editorial-blog-card {

    display: flex;
    flex-direction: column;
    gap: 24px;

    padding: 40px 0;

    border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
    .editorial-blog-card {
        flex-direction: row;
        align-items: flex-start;
    }
}

.editorial-blog-card:first-child {
    padding-top: 5px;
}

.editorial-blog-image {

    width: 100%;
    border-radius: 6px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .editorial-blog-image {
        width: 40%;
        min-width: 40%;
    }
}

.editorial-blog-image img {

    width: 100%;
    height: auto;

    object-fit: cover;
}

.editorial-blog-content {

    flex: 1;
}

.editorial-blog-card {
    display: flex;
    gap: 24px;
    align-items: stretch;
    /* instead of flex-start */
}

.editorial-blog-image {
    width: 40%;
    min-width: 40%;

    display: flex;
    align-items: center;
    /* Vertical Center */
    justify-content: center;
    /* Horizontal Center */

    overflow: hidden;
    border-radius: 6px;
}

.editorial-blog-image a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.editorial-blog-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-meta {

    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--color-accent);
}

.blog-dot {

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--color-text-muted);
}

.editorial-blog-content h2 {

    font-size: 26px;

    line-height: 1.35;

    margin-bottom: 16px;
}

.editorial-blog-content h2 a {

    text-decoration: none;

    color: var(--color-primary);
}

.editorial-blog-content p {

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-light);

    margin-bottom: 24px;
}

.read-link {

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    color: var(--color-accent);
    transition: var(--transition);
}

.read-link:hover {
    color: var(--color-primary-dark);
}

/* =========================================
   SIDEBAR
========================================= */

.blog-sidebar {

    position: sticky;

    top: 130px;
    z-index: 10;
}

.sidebar-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 24px;

    padding: 30px;
}

.sidebar-card h4 {

    font-size: 20px;

    line-height: 1.35;
}

.sidebar-card p {

    color: var(--color-text-light);

    line-height: 1.6;
}

.sidebar-card h5 {

    font-size: 20px;

    margin-bottom: 24px;
}

.blog-category-list {

    list-style: none;

    padding: 0;
    margin: 0;
}

.blog-category-list li {

    display: flex;
    justify-content: space-between;

    padding: 14px 0;

    border-bottom: 1px solid var(--color-border);

    color: var(--color-text-light);
}

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

@media (max-width: 992px) {

    .editorial-blog-content h2 {

        font-size: 20px;
    }

    .blog-sidebar {

        position: relative;

        top: auto;
    }
}

@media (max-width: 768px) {

    .scroll-blog-card {

        width: 280px;
    }

    .editorial-blog-content h2 {

        font-size: 20px;
    }

    .editorial-blog-content p {

        font-size: 16px;
    }
}

/* =========================================
   TESTIMONIAL HIGHLIGHT CARD
========================================= */

.testimonial-highlight-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 30px;

    padding: 34px;

    box-shadow: var(--shadow-sm);
}

.highlight-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;
}

.highlight-item {

    background: var(--color-bg-warm);

    border: 1px solid var(--color-border);

    border-radius: 20px;

    padding: 22px;
}

.highlight-item h3 {

    font-size: 20px;

    line-height: 1;

    margin-bottom: 12px;

    color: var(--color-accent);
}

.highlight-item p {

    font-size: 12px;

    line-height: 1.5;

    color: var(--color-text-light);

    margin-bottom: 0;
}

/* =========================================
   FEATURED TESTIMONIAL
========================================= */

.featured-testimonial-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 34px;

    padding: 60px;

    box-shadow: var(--shadow-sm);
}

.quote-badge {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: var(--color-accent-light);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 40px;

    color: var(--color-accent);
}

.quote-badge span {

    font-size: 35px;
}

.featured-testimonial-card blockquote {

    font-size: 35px;

    line-height: 1.3;

    letter-spacing: -1.5px;

    max-width: 900px;

    margin-bottom: 0;
}

/* =========================================
   FEATURED SIDE STATS
========================================= */

.featured-side-stats {

    display: flex;

    flex-direction: column;

    gap: 18px;
}

.side-stat-item {

    background: var(--color-bg-warm);

    border: 1px solid var(--color-border);

    border-radius: 22px;

    padding: 26px;
}

.side-stat-item h3 {

    font-size: 20px;

    line-height: 1.25;

    margin-bottom: 14px;

    color: var(--color-accent);
}

.side-stat-item p {

    font-size: 12px;

    line-height: 1.5;

    color: var(--color-text-light);

    margin-bottom: 0;
}

/* =========================================
   TESTIMONIAL GRID
========================================= */

.testimonial-card-v2 {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 28px;

    padding: 34px;

    transition: var(--transition);

    box-shadow: var(--shadow-sm);
}

.testimonial-card-v2:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

/* QUOTES */

.mini-quote {

    font-size: 20px;

    line-height: 1.35;

    margin-top: 24px;

    color: var(--color-primary);
}

/* STAT TEXT */

.testimonial-card-v2 h3 {

    font-size: 20px;

    line-height: 1.35;

    margin: 22px 0 18px;

    color: var(--color-accent);
}

.testimonial-card-v2 p {

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-light);

    margin-bottom: 0;
}

/* =========================================
   USER
========================================= */

.testimonial-user {

    display: flex;
    align-items: center;

    gap: 16px;
}

.testimonial-avatar {

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: var(--color-accent-light);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-accent);

    font-size: 16px;
    font-weight: 700;

    flex-shrink: 0;
}

.testimonial-user h6 {

    margin-bottom: 4px;

    font-size: 16px;
}

.testimonial-user span {

    font-size: 12px;

    color: var(--color-text-light);
}

/* =========================================
   SCROLLING TESTIMONIALS
========================================= */

.scrolling-testimonials-section {

    overflow: hidden;

    padding: 30px 0 50px;
}

.scrolling-testimonials-track {

    display: flex;

    gap: 22px;

    width: max-content;

    animation: testimonialScroll 35s linear infinite;
}

.scroll-testimonial-pill {

    display: flex;
    align-items: center;

    gap: 16px;

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 999px;

    padding: 18px 26px;

    min-width: 420px;

    box-shadow: var(--shadow-sm);
}

.scroll-testimonial-pill span {

    color: var(--color-accent);

    font-size: 20px;
}

.scroll-testimonial-pill p {

    margin-bottom: 0;

    font-size: 16px;

    color: var(--color-text-light);

    line-height: 1.6;
}

@keyframes testimonialScroll {

    from {

        transform: translateX(0);
    }

    to {

        transform: translateX(-50%);
    }
}

/* =========================================
   CTA BOX
========================================= */

.testimonial-cta-box {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 34px;

    padding: 90px 50px;

    text-align: center;

    box-shadow: var(--shadow-sm);
}

.testimonial-cta-box h2 {

    font-size: 35px;

    line-height: 1.25;

    max-width: 960px;

    margin: 26px auto;
}

.testimonial-cta-box p {

    max-width: 760px;

    margin: auto;

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-light);
}

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

@media (max-width: 1200px) {

    .featured-testimonial-card blockquote {

        font-size: 35px;
    }
}

@media (max-width: 992px) {

    .featured-testimonial-card {

        padding: 40px;
    }

    .featured-testimonial-card blockquote {

        font-size: 35px;
    }

    .mini-quote {

        font-size: 20px;
    }

    .testimonial-cta-box h2 {

        font-size: 35px;
    }
}

@media (max-width: 768px) {

    .highlight-grid {

        grid-template-columns: 1fr;
    }

    .featured-testimonial-card {

        padding: 32px;
    }

    .featured-testimonial-card blockquote {

        font-size: 35px;
    }

    .mini-quote {

        font-size: 20px;
    }

    .testimonial-card-v2 {

        padding: 28px;
    }

    .testimonial-card-v2 h3 {

        font-size: 20px;
    }

    .scroll-testimonial-pill {

        min-width: 300px;
    }

    .testimonial-cta-box {

        padding: 60px 30px;
    }

    .testimonial-cta-box h2 {

        font-size: 35px;
    }

    .testimonial-cta-box p {

        font-size: 16px;
    }
}

/* =========================================
   MARQUEE
========================================= */

.marquee-wrapper {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 20px;
    padding-right: 20px;
}

.marquee-track.left {
    animation: scrollLeft 40s linear infinite;
}

.marquee-track.right {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.marquee-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0px 0px 26px rgba(0, 0, 0, 0.04);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    transition: var(--transition);
    margin-bottom: 15px;
}

.marquee-pill .material-symbols-outlined {
    color: var(--color-accent);
    font-size: 20px;
}

/* =========================================
   CONTACT FORM
========================================= */

.contact-form-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 34px;

    padding: 50px;

    box-shadow: var(--shadow-sm);
}

.contact-heading {

    font-size: 35px;

    line-height: 1.25;

    margin: 26px 0 24px;
}

.contact-description {

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-light);

    max-width: 760px;
}

/* LABELS */

.contact-label {

    display: block;

    font-size: 16px;
    font-weight: 600;

    margin-bottom: 14px;

    color: var(--color-primary);
}

/* INPUTS */

.contact-input {

    height: 62px;

    border-radius: 16px;

    border: 1px solid var(--color-border);

    padding: 0 22px;

    font-size: 16px;

    background: var(--color-bg-warm);

    transition: var(--transition);

    box-shadow: none !important;
}

.contact-input:focus {

    border-color: var(--color-accent);

    background: var(--color-bg-alt);
}

.contact-textarea {

    height: 180px;

    padding-top: 20px;

    resize: none;
}

/* =========================================
   SIDE CARDS
========================================= */

.contact-side-wrapper {

    display: flex;

    flex-direction: column;

    gap: 24px;
}

.contact-info-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 30px;

    padding: 36px;

    box-shadow: var(--shadow-sm);
}

/* INFO ITEM */

.contact-info-item {

    display: flex;
    align-items: flex-start;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-info-item:last-child {

    margin-bottom: 0;
}

.booking-card {

    background: rgba(0, 77, 64, 0.04);
    border: 1px solid rgba(0, 77, 64, 0.14);
    border-radius: 24px;
    padding: 24px;
    margin-top: 28px;
}

.booking-card-head {

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.booking-card-icon {

    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #004d40;
    display: grid;
    place-items: center;
    color: #ffffff;
}

.booking-card-icon span {

    font-size: 24px;
}

.booking-card h5 {

    margin: 0;
    font-size: 1.05rem;
    color: #00382f;
}

.booking-card p {

    margin: 16px 0 0;
    color: #4f5d6a;
    line-height: 1.7;
    max-width: 520px;
}

.btn-appointment {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #004d40;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-appointment:hover {

    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 77, 64, 0.18);
}

.contact-icon {

    width: 56px;
    height: 56px;

    border-radius: 18px;

    background: var(--color-accent-light);

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-accent);

    flex-shrink: 0;
}

.contact-icon span {

    font-size: 20px;
}

.contact-info-item h6 {

    margin-bottom: 6px;

    font-size: 16px;
}

.contact-info-item p {

    margin-bottom: 0;

    line-height: 1.6;

    color: var(--color-text-light);
}

/* =========================================
   PILLS
========================================= */

.contact-pill-wrapper {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}

.contact-pill {

    padding: 12px 18px;

    border-radius: 999px;

    background: var(--color-bg-warm);

    border: 1px solid var(--color-border);

    font-size: 16px;
    font-weight: 600;

    color: var(--color-primary);
}

/* =========================================
   PROCESS CARD
========================================= */

.contact-process-card {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: 34px;

    padding: 70px 50px;

    box-shadow: var(--shadow-sm);
}

/* PROCESS STEP */

.process-step {

    text-align: center;
}

.process-number {

    width: 84px;
    height: 84px;

    border-radius: 50%;

    background: var(--color-accent-light);

    border: 1px solid var(--color-border);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 26px;

    color: var(--color-accent);

    font-size: 20px;
    font-weight: 700;
}

.process-step h5 {

    font-size: 20px;

    margin-bottom: 18px;
}

.process-step p {

    font-size: 16px;

    line-height: 1.6;

    color: var(--color-text-light);
}

.blog-category-list a {

    text-decoration: none;
    color: var(--color-text-light);
    transition: var(--transition);
    font-weight: 500;
}

.blog-category-list a:hover {

    color: var(--color-accent);
}

.blog-recent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-recent-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

.blog-recent-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-recent-list a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
    display: block;
    margin-bottom: 6px;
    transition: var(--transition);
}

.blog-recent-list a:hover {
    color: var(--color-accent);
}

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

@media (max-width: 992px) {

    .contact-heading {

        font-size: 35px;
    }

    .contact-process-card {

        padding: 50px 30px;
    }
}

@media (max-width: 768px) {

    .contact-form-card,
    .contact-info-card {

        padding: 30px;
    }

    .contact-heading {

        font-size: 35px;
    }

    .contact-description {

        font-size: 16px;
    }

    .process-step h5 {

        font-size: 20px;
    }

    .process-number {

        width: 72px;
        height: 72px;

        font-size: 20px;
    }
}

/* ================================
   CARDS
================================ */
.service-card,
.metric-card,
.blog-card,
.testimonial-card,
.contact-box {

    background: var(--color-bg-alt);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.service-card,
.metric-card,
.blog-card,
.testimonial-card {

    padding: 20px;
}

.service-card:hover,
.metric-card:hover,
.blog-card:hover,
.testimonial-card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow-md);

    border-color: var(--color-accent);
}

/* ================================
   ICONS
================================ */
.service-icon {

    width: 72px;
    height: 72px;

    border-radius: 20px;

    background: var(--color-accent-light);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;
}

.service-icon .material-symbols-outlined {

    color: var(--color-accent);
    font-size: 35px;
}

/* ================================
   METRICS
================================ */
.metric-number {

    font-family: 'DM Serif Display', serif;

    font-size: 35px;
    line-height: 1;

    color: var(--color-primary);

    margin-bottom: 12px;
}

.metric-label {

    color: var(--color-text-light);
    font-size: 16px;
}

/* ================================
   CASE METRIC
================================ */
.case-metric {

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.6px;
    text-transform: uppercase;

    color: var(--color-accent);
}

/* ================================
   TERMINAL
================================ */
.hero-terminal {

    background: var(--color-primary-dark);

    border-radius: 26px;

    overflow: hidden;

    box-shadow: var(--shadow-lg);
}

.terminal-header {

    padding: 16px 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    display: flex;
    gap: 10px;
}

.terminal-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #febc2e;
}

.dot-green {
    background: #28c840;
}

.terminal-body {

    padding: 30px;

    font-family: 'JetBrains Mono', monospace;

    color: #99f6e4;

    font-size: 16px;
    line-height: 1.6;
}

/* ================================
   FORMS
================================ */
.form-label {

    color: var(--color-primary);

    font-size: 16px;
    font-weight: 600;

    margin-bottom: 10px;
}

.form-control,
.form-select {

    height: 60px;

    background: #fff;

    border: 1px solid var(--color-border);

    border-radius: 14px;

    padding: 14px 18px;

    color: var(--color-primary);

    transition: var(--transition);
}

textarea.form-control {

    min-height: 180px;
    resize: none;
}

.form-control:focus,
.form-select:focus {

    border-color: rgba(45, 125, 210, 0.35);

    box-shadow: 0 0 0 4px rgba(45, 125, 210, 0.08);
}

/* ================================
   FOOTER
================================ */
.footer-section {

    background: var(--color-bg-alt);

    border-top: 1px solid var(--color-border);

    padding: 50px 0 40px;

    margin-top: 60px;
}

.footer-logo {

    font-size: 20px;

    margin-bottom: 24px;
}

.footer-title {

    font-size: 16px;

    margin-bottom: 24px;
}

.footer-text,
.footer-contact,
.footer-bottom,
.footer-section a {

    color: var(--color-text-light);

    text-decoration: none;
}

.footer-section a:hover {

    color: var(--color-accent);
}

.footer-status {

    display: flex;
    align-items: center;

    margin-top: 24px;
}

.status-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: var(--color-success);

    margin-right: 10px;
}

.footer-bottom {

    border-top: 1px solid var(--color-border);

    margin-top: 60px;
    padding-top: 30px;
}

/* ================================
   UTILITIES
================================ */
.text-muted-custom {
    color: var(--color-text-muted);
}

.border-custom {
    border-color: var(--color-border) !important;
}

.rounded-24 {
    border-radius: 24px;
}

/* ================================
   SCROLLBAR
================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-warm);
}

::-webkit-scrollbar-thumb {
    background: var(--color-text-muted);

    border-radius: 20px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {

    .hero-title {
        font-size: 35px;
    }

    .section-title {
        font-size: 35px;
    }
}

@media (max-width: 992px) {

    .hero-title {
        font-size: 35px;
    }

    .section-title {
        font-size: 35px;
    }

    .hero-section {
        padding: 160px 0 100px;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 35px !important;
    }

    .section-title {
        font-size: 35px !important;
    }

    .hero-text {
        font-size: 16px;
    }

    .service-card,
    .metric-card,
    .testimonial-card,
    .blog-card,
    .contact-box {

        padding: 28px;
    }

    .section-padding {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {

    .hero-title {
        font-size: 35px !important;
    }

    .section-title {
        font-size: 35px !important;
    }

    .btn-primary-custom,
    .btn-outline-custom {

        width: 100%;
        justify-content: center;
    }
}