:root {
    --primary-dark: #0F172A;
    --primary-blue: #2563EB;
    --background-light: #E5E7EB;
    --accent-amber: #F59E0B;
    --text-dark: #0F172A;
    --text-muted: #4B5563;
    --bg-white: #FFFFFF;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Base Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

/* Remove text decoration from all links */
a,
a:hover,
a:focus {
    text-decoration: none;
}

/* Base lists reset */
ul,
ol {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Interactive Buttons base style */
button,
.btn {
    cursor: pointer;
    border: none;
}

/* Mobile-first and small screen dynamic typography adjustments to prevent layout overflow */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    h3 {
        font-size: clamp(1.2rem, 3vw, 1.6rem);
    }

    p,
    a,
    span,
    li,
    td,
    th {
        word-wrap: break-word;
        word-break: break-word;
    }
}

/* ===== header ===== */
.header-section {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--background-light);
    position: relative;
    z-index: 1000;
    overflow-x: hidden;
    width: 100%;
}

.header-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-wrapper {
    width: 100%;
}

.logo-wrapper {
    max-width: 150px;
}

.logo-text {
    font-family: inherit;
    font-weight: 800;
    color: var(--primary-dark) !important;
    text-decoration: none;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    display: inline-block;
}

.logo-text:hover {
    color: var(--primary-blue) !important;
}

.nav-links-list {
    gap: 1.75rem;
}

.nav-link-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted) !important;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.nav-link-item:hover {
    color: var(--primary-blue) !important;
}

.nav-link-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.2s ease;
}

.nav-link-item:hover::after {
    width: 100%;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background-color: var(--background-light);
    margin: 0 1.5rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bg-white) !important;
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.mobile-toggle-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.mobile-toggle-btn:hover {
    color: var(--primary-blue);
}

.mobile-menu-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-white);
    border-top: 1px solid var(--background-light);
    width: 100%;
}

.mobile-menu-inner {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

.mobile-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-link-item {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.mobile-link-item:hover {
    color: var(--primary-blue) !important;
}

.mobile-cta-li {
    margin-top: 0.5rem;
}

.mobile-btn-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-white) !important;
    background-color: var(--primary-blue);
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s ease;
}

.mobile-btn-cta:hover {
    background-color: var(--primary-dark);
}

@media (max-width: 991px) {
    .logo-text {
        font-size: 0.8rem;
    }

    .header-container {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
}

@media (min-width: 992px) {
    .logo-text {
        font-size: 1.25rem;
    }
}

/* ===== hero-section ===== */
.hero-section {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--primary-dark);
}

.hero-bg-wrapper {
    z-index: 1;
}

.hero-bg-img {
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.hero-content {
    color: var(--bg-white);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--bg-white);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--background-light);
    max-width: 650px;
}

.hero-benefit-item {
    color: var(--bg-white);
    font-size: 1.05rem;
}

.hero-benefit-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.2);
}

.hero-benefit-icon {
    color: var(--accent-amber);
}

.hero-btn-primary {
    background-color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    color: var(--bg-white);
    transform: translateY(-2px);
}

.hero-btn-secondary {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-btn-share {
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    color: var(--bg-white);
    transition: all 0.3s ease;
}

.hero-btn-share:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.hero-share-icon {
    color: var(--accent-amber);
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
    }

    .hero-benefit-item {
        font-size: 0.875rem !important;
    }

    .hero-benefit-icon-wrapper {
        width: 20px;
        height: 20px;
    }

    .hero-benefit-icon {
        width: 14px;
        height: 14px;
    }

    .hero-actions .btn {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        font-size: 0.9rem;
    }
}

/* ===== about-section ===== */
#about {
    overflow-x: hidden;
}

#about h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--primary-dark);
}

#about p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-dark);
    hyphens: auto;
}

.btn-veltronax {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-veltronax:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    #about h2 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #about p {
        font-size: 0.875rem !important;
        line-height: 1.4 !important;
    }

    .btn-veltronax {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }

    .col-lg-6 img {
        height: 320px !important;
    }
}

/* ===== services-list ===== */
#services {
    overflow-x: hidden;
}

#services .js-service-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#services .js-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15) !important;
}

#services .js-service-card img {
    transition: transform 0.5s ease;
}

#services .js-service-card:hover img {
    transform: scale(1.04);
}

@media (max-width: 767.98px) {
    #services h2 {
        font-size: 1.25rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #services h3 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        hyphens: auto;
    }

    #services .card-text {
        font-size: 0.875rem !important;
    }
}

/* ===== advantages ===== */
#why-us {
    background-color: var(--background-light);
    overflow-x: hidden;
}

#why-us .badge-custom {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.05em;
}

#why-us .section-title {
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1.2;
}

#why-us .section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

#why-us .benefit-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    overflow: hidden;
}

#why-us .benefit-card:hover,
#why-us .benefit-card.benefit-card--active {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px -3px rgba(15, 23, 42, 0.15), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    border-color: var(--primary-blue);
}

#why-us .icon-wrapper {
    background-color: rgba(37, 99, 235, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

#why-us .benefit-card:hover .icon-wrapper,
#why-us .benefit-card.benefit-card--active .icon-wrapper {
    background-color: var(--primary-blue);
}

#why-us .benefit-icon {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

#why-us .benefit-card:hover .benefit-icon,
#why-us .benefit-card.benefit-card--active .benefit-icon {
    color: var(--bg-white);
}

#why-us .benefit-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

#why-us .benefit-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    #why-us .section-title {
        font-size: 1rem !important;
        line-height: 1.2;
        hyphens: auto;
    }

    #why-us .section-subtitle {
        font-size: 0.85rem !important;
    }

    #why-us .benefit-title {
        font-size: 0.875rem !important;
        line-height: 1.2;
        hyphens: auto;
    }

    #why-us .benefit-text {
        font-size: 0.8rem;
    }

    #why-us .badge-custom {
        font-size: 0.75rem;
    }
}

/* ===== price-table ===== */
#prices {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.prices-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
}

.prices-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.table-responsive-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    background-color: var(--bg-white);
    border: 1px solid var(--background-light);
}

.custom-pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.custom-pricing-table th {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    font-weight: 700;
    padding: 20px 24px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
}

.custom-pricing-table td {
    padding: 22px 24px;
    border-bottom: 1px solid var(--background-light);
    color: var(--text-dark);
    font-size: 1rem;
}

.custom-pricing-table tr:nth-child(even) td {
    background-color: #F8FAFC;
}

.custom-pricing-table tr.highlighted-row td {
    background-color: var(--primary-blue) !important;
    color: var(--bg-white) !important;
    border-bottom: 1px solid var(--primary-blue);
}

.price-tag {
    font-weight: 750;
    color: var(--primary-blue);
    font-size: 1.125rem;
    white-space: nowrap;
}

.text-success {
    color: #10B981 !important;
}

.service-title {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.05rem;
    display: block;
}

.service-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 6px;
    display: block;
    line-height: 1.4;
}

.custom-pricing-table tr.highlighted-row .service-desc {
    color: rgba(255, 255, 255, 0.9) !important;
}

.btn-select {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-select:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border-color: var(--primary-blue);
}

.btn-highlight {
    background-color: var(--accent-amber);
    color: var(--primary-dark);
    font-weight: 700;
    border: 2px solid var(--accent-amber);
}

.btn-highlight:hover {
    background-color: var(--bg-white);
    color: var(--primary-blue);
    border-color: var(--bg-white);
}

.badge-recommend {
    background-color: var(--accent-amber);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
}

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

.text-dark {
    color: var(--text-dark) !important;
}

.text-white {
    color: var(--bg-white) !important;
}

@media (max-width: 767.98px) {
    .prices-heading {
        font-size: 1rem !important;
        line-height: 1.2;
    }

    .prices-subtitle {
        font-size: 0.875rem;
    }

    .table-responsive-wrapper {
        overflow-x: visible;
        border-radius: 12px;
    }

    .custom-pricing-table thead {
        display: none;
    }

    .custom-pricing-table,
    .custom-pricing-table tbody,
    .custom-pricing-table tr,
    .custom-pricing-table td {
        display: block;
        width: 100%;
    }

    .custom-pricing-table tr {
        background: #fff;
        border: 1px solid var(--background-light);
        border-radius: 10px;
        margin-bottom: 12px;
        padding: 16px;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
    }

    .custom-pricing-table tr.highlighted-row {
        background-color: var(--primary-blue) !important;
        border-color: var(--primary-blue) !important;
    }

    .custom-pricing-table td {
        padding: 4px 0;
        border-bottom: none;
        font-size: 0.875rem;
    }

    .custom-pricing-table td.text-end {
        text-align: left !important;
        padding-top: 10px;
    }

    .custom-pricing-table td.align-middle {
        vertical-align: top;
    }

    .service-title {
        font-size: 0.925rem;
    }

    .service-desc {
        font-size: 0.775rem;
    }

    .price-tag {
        font-size: 0.95rem;
    }

    .btn-select {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        display: block;
        margin-top: 8px;
        box-sizing: border-box;
    }

    .badge-recommend {
        display: inline-block;
        margin-left: 8px;
        margin-top: 0;
        width: max-content;
    }
}

/* ===== working-steps ===== */
#steps {
    background-color: var(--background-light);
}

#steps .js-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1) !important;
    border-left: 4px solid var(--accent-amber) !important;
}

#steps .js-step-card {
    border-left: 4px solid transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767.98px) {
    #steps h2 {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    #steps h3 {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
    }

    #steps p {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }

    #steps .icon-wrapper {
        width: 44px !important;
        height: 44px !important;
    }

    #steps .icon-wrapper svg {
        width: 20px !important;
        height: 20px !important;
    }
}

/* ===== projects-gallery ===== */
#portfolio {
    background-color: var(--bg-white);
    padding: 80px 0;
    overflow-x: hidden;
}

.portfolio-badge {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.comparison-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

.slider-handle-button svg {
    width: 18px;
    height: 18px;
    color: var(--bg-white);
}

.slider-range-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 20;
    -webkit-appearance: none;
    appearance: none;
}

.slider-label {
    position: absolute;
    bottom: 20px;
    padding: 6px 12px;
    background-color: rgba(15, 23, 42, 0.85);
    color: var(--bg-white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 12;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
}

.portfolio-card {
    background-color: var(--background-light);
    border-radius: 12px;
    padding: 2.5rem;
}

.portfolio-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.portfolio-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-blue);
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.05);
}

.portfolio-feature-text {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 1rem;
}

.portfolio-feature-desc {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.5;
}

.portfolio-cta-btn {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
}

.portfolio-cta-btn:hover {
    background-color: #1d4ed8;
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.25);
}

@media (max-width: 767.98px) {
    #portfolio {
        padding: 48px 0;
    }

    #portfolio h2 {
        font-size: 1.125rem !important;
        line-height: 1.25 !important;
        hyphens: auto;
    }

    #portfolio h3 {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        hyphens: auto;
    }

    .comparison-slider {
        height: 280px;
    }

    .portfolio-card {
        padding: 1.5rem;
    }

    .portfolio-feature-icon {
        width: 36px;
        height: 36px;
    }

    .portfolio-feature-text {
        font-size: 0.95rem;
    }

    .portfolio-feature-desc {
        font-size: 0.85rem;
    }
}

/* ===== reviews ===== */
#testimonials {
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

#testimonials .veltronax-badge {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

#testimonials .veltronax-title {
    color: var(--bg-white);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
}

#testimonials .veltronax-subtitle {
    color: #94A3B8;
    font-size: 1.1rem;
}

#testimonials .veltronax-card {
    background-color: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

#testimonials .veltronax-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

#testimonials .star-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-amber);
}

#testimonials .veltronax-quote-text {
    color: #E2E8F0;
    font-size: 1.15rem;
    line-height: 1.6;
    font-style: italic;
}

#testimonials .veltronax-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    font-weight: 700;
    font-size: 1rem;
}

#testimonials .veltronax-author-name {
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 600;
}

#testimonials .veltronax-author-role {
    color: #94A3B8;
    font-size: 0.875rem;
}

@media (max-width: 767.98px) {
    #testimonials .veltronax-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    #testimonials .veltronax-subtitle {
        font-size: 0.875rem;
    }

    #testimonials .veltronax-quote-text {
        font-size: 0.95rem;
    }

    #testimonials .veltronax-author-name {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }
}

/* ===== estimate-form ===== */
.estimate-section-wrapper {
    background-color: var(--background-light);
    overflow-x: hidden;
}

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

.bg-white-custom {
    background-color: var(--bg-white) !important;
}

.bg-light-custom {
    background-color: var(--background-light) !important;
}

.text-white-custom {
    color: var(--bg-white) !important;
}

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

.text-muted-custom {
    color: #94A3B8 !important;
}

.text-blue-custom {
    color: var(--primary-blue) !important;
}

.bg-amber-custom {
    background-color: var(--accent-amber) !important;
}

.text-amber-custom {
    color: var(--accent-amber) !important;
}

.form-card-custom {
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.form-input-custom {
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-input-custom:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background-color: var(--bg-white) !important;
}

.icon-wrapper-custom {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-amber);
}

.svg-icon-custom {
    width: 20px;
    height: 20px;
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    color: var(--bg-white) !important;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.transition-all {
    transition: all 0.2s ease-in-out;
}

@media (max-width: 767.98px) {
    .estimate-section-wrapper h2 {
        font-size: 1.125rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    .estimate-section-wrapper h3 {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
        hyphens: auto;
    }

    .estimate-section-wrapper p {
        font-size: 0.85rem;
    }

    .form-card-custom {
        padding: 1.5rem !important;
    }
}

/* ===== highlight-cta ===== */
#cta-banner {
    background-color: #0F172A;
    overflow-x: hidden;
}

#cta-banner .cta-title {
    font-size: 2.25rem;
    word-wrap: break-word;
    hyphens: auto;
}

#cta-banner .cta-desc {
    font-size: 1.125rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    hyphens: auto;
}

#cta-banner .btn-green-gradient {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: #FFFFFF;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    border: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

#cta-banner .btn-green-gradient:hover {
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
    color: #FFFFFF;
}

@media (max-width: 767.98px) {
    #cta-banner .cta-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    #cta-banner .cta-desc {
        font-size: 0.875rem !important;
        line-height: 1.3 !important;
    }

    #cta-banner .btn-green-gradient {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
    }
}

/* ===== footer ===== */
.footer-section {
    background-color: var(--primary-dark);
    color: #E5E7EB;
    overflow-x: hidden;
    font-family: system-ui, -apple-system, sans-serif;
}

.footer-logo {
    max-width: 65px;
    height: auto;
    display: block;
}

.footer-desc {
    color: #E5E7EB;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 500px;
    hyphens: auto;
}

.footer-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    hyphens: auto;
}

.footer-link,
.footer-legal-wrapper a {
    color: #E5E7EB;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}

.footer-link:hover,
.footer-legal-wrapper a:hover {
    color: var(--accent-amber);
}

.footer-contact-details {
    font-size: 0.95rem;
}

.footer-contact-item {
    color: #E5E7EB;
}

.footer-contact-label {
    font-weight: 600;
    color: #FFFFFF;
}

.footer-contact-item a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}

.footer-contact-item a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-copy {
    color: #E5E7EB;
    font-size: 0.8rem;
}

@media (max-width: 767.98px) {
    .footer-section h3 {
        font-size: 14px !important;
        line-height: 1.2 !important;
    }

    .footer-desc,
    .footer-contact-details {
        font-size: 0.875rem;
    }

    .footer-link,
    .footer-legal-wrapper a {
        font-size: 0.8rem;
    }
}