/* =========================================================
    ROOT VARIABLES
    Uipro Corporation Pvt. Ltd. Brand Color Combination
    Based on logo: Dark Navy + Deep Blue + Golden Accent
========================================================== */
:root {
    --primary-color: #0b2f56;
    --secondary-color: #061a2f;
    --accent-color: #d69a2d;
    --accent-dark: #b87a16;
    --light-bg: #f5f8fb;
    --dark-text: #1f2937;
    --muted-text: #6b7280;
    --white-color: #ffffff;
    --border-color: #e5e7eb;
    --footer-bg: #030b14;
}

/* =========================================================
    GLOBAL CSS
    Fixes horizontal scrolling issue also
========================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--dark-text);
    background: var(--white-color);
    overflow-x: hidden;
}

/* Prevent images, videos, iframes from creating horizontal scroll */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Bootstrap row safety for mobile overflow */
.row {
    max-width: 100%;
}

/* =========================================================
    COMMON BUTTON OVERRIDES
    Matching Uipro brand colors
========================================================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: var(--white-color) !important;
}

.btn-warning {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--secondary-color);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    color: var(--white-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* =========================================================
    TOP BAR SECTION
    Ultra premium top contact bar
========================================================== */
.top-bar {
    background:
        linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 55%, var(--secondary-color) 100%);
    color: var(--white-color);
    font-size: 14px;
    padding: 0;
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

.top-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(214, 154, 45, 0.16), transparent 24%),
        radial-gradient(circle at 80% 50%, rgba(214, 154, 45, 0.12), transparent 22%);
    pointer-events: none;
}

.top-bar-wrapper {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: 0.3s ease;
}

.top-bar-item:hover {
    color: var(--accent-color);
}

.top-bar-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.14);
    border: 1px solid rgba(214, 154, 45, 0.28);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex: 0 0 auto;
}

.top-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.22);
    display: inline-block;
}

.top-bar-offer {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.94);
    font-weight: 600;
    white-space: nowrap;
}

.top-bar-pulse {
    width: 9px;
    height: 9px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
}

.top-bar-pulse::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(214, 154, 45, 0.55);
    animation: topBarPulse 1.5s infinite;
}

.top-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--accent-color);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    padding: 7px 14px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(214, 154, 45, 0.22);
    transition: 0.3s ease;
    white-space: nowrap;
}

.top-bar-cta:hover {
    background: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.top-bar-cta i {
    font-size: 18px;
    line-height: 1;
}

@keyframes topBarPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* =========================================================
    TOP BAR RESPONSIVE CSS
========================================================== */
@media (max-width: 991px) {
    .top-bar-wrapper {
        gap: 16px;
    }

    .top-bar-item {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-wrapper {
        min-height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 12px;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-item,
    .top-bar-offer {
        font-size: 13px;
    }

    .top-bar-cta {
        padding: 6px 13px;
        font-size: 12px;
    }
}

@media (max-width: 420px) {
    .top-bar-left {
        flex-direction: column;
        gap: 7px;
    }

    .top-bar-right {
        gap: 7px;
    }

    .top-bar-item,
    .top-bar-offer {
        font-size: 12.5px;
    }

    .top-bar-icon {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}

/* =========================================================
    NAVBAR SECTION
    Ultra premium Uipro-style sticky navigation
========================================================== */
.premium-navbar {
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow: 0 14px 38px rgba(6, 26, 47, 0.08);
    padding: 12px 0;
    z-index: 999;
    transition: 0.3s ease;
}

/* =========================================================
    BRAND LOGO
========================================================== */
.premium-navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    max-width: 240px;
}

.navbar-brand img,
.brand-logo {
    max-height: 58px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* =========================================================
    NAVBAR MENU LINKS
========================================================== */
.premium-navbar-nav {
    align-items: center;
    gap: 6px;
}

.premium-navbar .nav-link {
    position: relative;
    color: var(--secondary-color) !important;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 14px !important;
    border-radius: 50px;
    transition: 0.3s ease;
}

.premium-navbar .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 30px;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(11, 47, 86, 0.06);
}

.premium-navbar .nav-link:hover::before,
.premium-navbar .nav-link.active::before {
    width: 22px;
}

/* =========================================================
    NAVBAR ACTION BUTTONS
========================================================== */
.premium-navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 18px;
}

.navbar-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid rgba(6, 26, 47, 0.1);
    border-radius: 50px;
    background: rgba(245, 248, 251, 0.85);
    color: var(--secondary-color);
    transition: 0.3s ease;
    white-space: nowrap;
}

.navbar-call-btn:hover {
    border-color: rgba(214, 154, 45, 0.55);
    background: rgba(214, 154, 45, 0.08);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.navbar-call-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    box-shadow: 0 8px 18px rgba(11, 47, 86, 0.22);
    flex: 0 0 auto;
}

.navbar-call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-call-text small {
    font-size: 11px;
    color: var(--muted-text);
    font-weight: 600;
}

.navbar-call-text strong {
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 800;
}

.navbar-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 12px 28px rgba(214, 154, 45, 0.24);
    transition: 0.3s ease;
    white-space: nowrap;
}

.navbar-quote-btn i {
    font-size: 20px;
    line-height: 1;
}

.navbar-quote-btn:hover {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(6, 26, 47, 0.22);
}

/* =========================================================
    MOBILE TOGGLER BUTTON
========================================================== */
.premium-navbar-toggler {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(6, 26, 47, 0.12);
    border-radius: 14px;
    padding: 0;
    background: rgba(245, 248, 251, 0.9);
    box-shadow: none;
}

.premium-navbar-toggler:focus {
    box-shadow: 0 0 0 0.18rem rgba(11, 47, 86, 0.12);
}

.premium-toggler-icon {
    width: 20px;
    height: 15px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}

.premium-toggler-icon span {
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 10px;
    display: block;
}

/* =========================================================
    RESPONSIVE CSS - TABLET AND MOBILE NAVBAR
========================================================== */
@media (max-width: 1199px) {
    .premium-navbar .nav-link {
        padding: 10px 10px !important;
        font-size: 14px;
    }

    .navbar-call-btn {
        display: none;
    }
}

@media (max-width: 991px) {
    .premium-navbar {
        padding: 10px 0;
    }

    .premium-navbar-brand {
        max-width: 210px;
    }

    .brand-logo {
        max-height: 50px;
    }

    .premium-navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 251, 0.98));
        border: 1px solid rgba(6, 26, 47, 0.08);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(6, 26, 47, 0.1);
    }

    .premium-navbar-nav {
        align-items: stretch;
        gap: 6px;
    }

    .premium-navbar .nav-link {
        width: 100%;
        padding: 13px 14px !important;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.75);
    }

    .premium-navbar .nav-link::before {
        display: none;
    }

    .premium-navbar-actions {
        width: 100%;
        margin-left: 0;
        margin-top: 14px;
        flex-direction: column;
        gap: 10px;
    }

    .navbar-call-btn {
        width: 100%;
        display: flex;
        justify-content: center;
        border-radius: 14px;
        padding: 11px 14px;
    }

    .navbar-quote-btn {
        width: 100%;
        border-radius: 14px;
        padding: 13px 18px;
    }
}

@media (max-width: 575px) {
    .premium-navbar {
        padding: 9px 0;
    }

    .premium-navbar-brand {
        max-width: 185px;
    }

    .brand-logo {
        max-height: 44px;
    }

    .premium-navbar-toggler {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .premium-navbar-collapse {
        padding: 14px;
        border-radius: 16px;
    }

    .premium-navbar .nav-link {
        font-size: 14px;
        padding: 12px 13px !important;
    }

    .navbar-call-text strong {
        font-size: 12px;
    }
}

@media (max-width: 375px) {
    .premium-navbar-brand {
        max-width: 160px;
    }

    .brand-logo {
        max-height: 40px;
    }

    .premium-navbar-toggler {
        width: 39px;
        height: 39px;
    }
}

/* =========================================================
    HERO SECTION
    Ultra premium mobile-first hero
========================================================== */
.hero-section {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    color: var(--white-color);
    background:
        linear-gradient(135deg, #030b14 0%, #061a2f 48%, #0b2f56 100%);
}

/* =========================================================
    HERO BACKGROUND DECORATION
========================================================== */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(214, 154, 45, 0.18), transparent 26%),
        radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(214, 154, 45, 0.12), transparent 30%);
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    pointer-events: none;
    opacity: 0.5;
}

.hero-bg-glow-one {
    width: 260px;
    height: 260px;
    background: rgba(214, 154, 45, 0.18);
    left: -120px;
    bottom: -100px;
}

.hero-bg-glow-two {
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    right: -90px;
    top: 80px;
}

/* =========================================================
    HERO MAIN WRAPPER
========================================================== */
.hero-main-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    align-items: center;
    gap: 42px;
}

/* =========================================================
    HERO CONTENT CARD
========================================================== */
.hero-content-card {
    width: 100%;
    max-width: 780px;
}

/* Offer Badge */
.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    margin-bottom: 22px;
    border-radius: 999px;
    color: var(--white-color);
    background: rgba(214, 154, 45, 0.14);
    border: 1px solid rgba(214, 154, 45, 0.42);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(214, 154, 45, 0.08);
}

.hero-badge i {
    color: var(--accent-color);
    font-size: 15px;
}

/* Main Title */
.hero-title {
    color: var(--white-color);
    font-size: clamp(44px, 5vw, 68px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 950;
    margin: 0;
}

/* Subtitle */
.hero-subtitle {
    max-width: 670px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
}

/* =========================================================
    HERO HIGHLIGHT STRIP
========================================================== */
.hero-highlight-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.hero-highlight-strip span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 13.5px;
    font-weight: 750;
}

.hero-highlight-strip i {
    color: var(--accent-color);
    font-size: 13px;
}

/* =========================================================
    HERO ACTION BUTTONS
========================================================== */
.hero-action-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-primary-btn,
.hero-secondary-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    transition: 0.3s ease;
    white-space: nowrap;
}

.hero-primary-btn {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: 0 16px 34px rgba(214, 154, 45, 0.26);
}

.hero-primary-btn:hover {
    color: var(--secondary-color);
    background: var(--white-color);
    transform: translateY(-2px);
}

.hero-secondary-btn {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.085);
    border: 1px solid rgba(255, 255, 255, 0.23);
}

.hero-secondary-btn:hover {
    color: var(--secondary-color);
    background: var(--white-color);
    transform: translateY(-2px);
}

.hero-primary-btn i,
.hero-secondary-btn i {
    font-size: 21px;
    line-height: 1;
}

/* =========================================================
    HERO STATS
========================================================== */
.hero-stats {
    width: 100%;
    max-width: 540px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 38px;
}

.hero-stat {
    min-height: 94px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 18px 12px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-stat strong {
    color: var(--accent-color);
    font-size: 29px;
    line-height: 1;
    font-weight: 950;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 750;
}

/* =========================================================
    HERO FORM CARD
========================================================== */
.hero-form-card {
    width: 100%;
    max-width: 470px;
    margin-left: auto;
    position: relative;
    color: var(--dark-text);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 251, 0.98));
    border-radius: 28px;
    padding: 32px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.72);
    overflow: hidden;
}

.hero-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

/* Form Header */
.hero-form-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.hero-form-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary-color);
    background: rgba(11, 47, 86, 0.08);
    font-size: 23px;
}

.hero-form-header h4 {
    margin: 0 0 5px;
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 950;
}

.hero-form-header p {
    margin: 0;
    color: var(--muted-text);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* =========================================================
    HERO FORM FIELDS
========================================================== */
.hero-form-group {
    margin-bottom: 15px;
}

.hero-lead-form .form-label {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 7px;
}

.hero-lead-form .form-control,
.hero-lead-form .form-select {
    width: 100%;
    min-height: 49px;
    border-radius: 14px;
    border: 1px solid #d8dee8;
    background-color: var(--white-color);
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 550;
    padding: 11px 14px;
    box-shadow: none;
    transition: 0.3s ease;
}

.hero-lead-form textarea.form-control {
    min-height: 88px;
    resize: none;
}

.hero-lead-form .form-control::placeholder {
    color: #9ca3af;
}

.hero-lead-form .form-control:focus,
.hero-lead-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.22rem rgba(214, 154, 45, 0.14);
}

/* Submit Button */
.hero-submit-btn {
    width: 100%;
    min-height: 54px;
    margin-top: 4px;
    border: none;
    border-radius: 15px;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 16px 34px rgba(11, 47, 86, 0.24);
    transition: 0.3s ease;
}

.hero-submit-btn i {
    font-size: 22px;
    line-height: 1;
}

.hero-submit-btn:hover {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    transform: translateY(-1px);
}

/* Form Note */
.hero-form-note {
    margin-top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--muted-text);
    font-size: 12.5px;
    font-weight: 650;
    text-align: center;
}

.hero-form-note i {
    color: var(--accent-color);
}

/* =========================================================
    HERO RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-main-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
        justify-items: center;
    }

    .hero-content-card {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .hero-badge,
    .hero-highlight-strip,
    .hero-action-buttons {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-form-card {
        max-width: 620px;
        margin: 0 auto;
    }
}

/* =========================================================
    HERO RESPONSIVE CSS - MOBILE
    Completely rebuilt to avoid left-floating issue
========================================================== */
@media (max-width: 575px) {
    .hero-section {
        padding: 34px 0 44px;
        background:
            radial-gradient(circle at top center, rgba(214, 154, 45, 0.16), transparent 34%),
            linear-gradient(180deg, #030b14 0%, #061a2f 52%, #0b2f56 100%);
    }

    .hero-section::before {
        background-size: 34px 34px;
        opacity: 0.5;
    }

    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-main-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    .hero-content-card {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 24px 16px 18px;
        border-radius: 26px;
        background: rgba(255, 255, 255, 0.055);
        border: 1px solid rgba(255, 255, 255, 0.105);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        margin: 0 auto;
    }

    .hero-badge {
        width: fit-content;
        max-width: 100%;
        margin: 0 auto 16px;
        padding: 8px 12px;
        font-size: 12px;
        justify-content: center;
    }

    .hero-badge i {
        font-size: 13px;
    }

    .hero-title {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        font-size: 30px;
        line-height: 1.16;
        letter-spacing: -0.6px;
        text-align: center;
    }

    .hero-subtitle {
        width: 100%;
        max-width: 315px;
        margin: 15px auto 0;
        font-size: 14px;
        line-height: 1.65;
        text-align: center;
        color: rgba(255, 255, 255, 0.82);
    }

    .hero-highlight-strip {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 20px auto 0;
    }

    .hero-highlight-strip span {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        border-radius: 14px;
        font-size: 12.5px;
    }

    .hero-action-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px auto 0;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
        min-height: 50px;
        border-radius: 15px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .hero-stats {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin: 20px auto 0;
    }

    .hero-stat {
        min-height: 74px;
        border-radius: 16px;
        padding: 12px 6px;
    }

    .hero-stat strong {
        font-size: 20px;
    }

    .hero-stat span {
        font-size: 10.8px;
    }

    .hero-form-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 21px;
        border-radius: 24px;
        box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    }

    .hero-form-card::before {
        height: 4px;
    }

    .hero-form-header {
        align-items: center;
        gap: 11px;
        margin-bottom: 18px;
    }

    .hero-form-icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 19px;
    }

    .hero-form-header h4 {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .hero-form-header p {
        font-size: 12.6px;
        line-height: 1.45;
    }

    .hero-form-group {
        margin-bottom: 13px;
    }

    .hero-lead-form .form-label {
        font-size: 12.5px;
        margin-bottom: 6px;
    }

    .hero-lead-form .form-control,
    .hero-lead-form .form-select {
        min-height: 46px;
        border-radius: 13px;
        font-size: 13.5px;
        padding: 10px 12px;
    }

    .hero-lead-form textarea.form-control {
        min-height: 78px;
    }

    .hero-submit-btn {
        min-height: 49px;
        border-radius: 14px;
        font-size: 14px;
    }

    .hero-form-note {
        font-size: 11.8px;
        margin-top: 11px;
    }
}

/* =========================================================
    HERO RESPONSIVE CSS - VERY SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .hero-section .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content-card {
        padding: 22px 13px 16px;
        border-radius: 22px;
    }

    .hero-title {
        max-width: 290px;
        font-size: 27px;
    }

    .hero-subtitle {
        max-width: 285px;
        font-size: 13.6px;
    }

    .hero-form-card {
        padding: 18px;
        border-radius: 21px;
    }

    .hero-stat strong {
        font-size: 18px;
    }

    .hero-stat span {
        font-size: 10px;
    }
}

/* =========================================================
    COMMON SECTION CSS
    Clean section spacing and centered headings
========================================================== */
.section-padding {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(214, 154, 45, 0.12);
    border: 1px solid rgba(214, 154, 45, 0.35);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.section-title {
    color: var(--secondary-color);
    font-size: 42px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: -1px;
    margin: 0;
}

.section-subtitle {
    color: var(--muted-text);
    max-width: 680px;
    margin: 16px auto 0;
    font-size: 16.5px;
    line-height: 1.75;
    font-weight: 500;
}

/* =========================================================
    SERVICES SECTION BACKGROUND
========================================================== */
.services-section {
    background:
        radial-gradient(circle at top left, rgba(214, 154, 45, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

/* =========================================================
    WHY CHOOSE US SECTION BACKGROUND
========================================================== */
.why-section {
    background:
        radial-gradient(circle at bottom right, rgba(11, 47, 86, 0.08), transparent 28%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

/* =========================================================
    PREMIUM CARD COMMON DESIGN
    Used in services and why choose us
========================================================== */
.premium-card {
    width: 100%;
    height: 100%;
    min-height: 245px;
    position: relative;
    padding: 32px 26px;
    border-radius: 24px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow: 0 14px 34px rgba(6, 26, 47, 0.06);
    transition: 0.3s ease;
    overflow: hidden;
}

/* Golden top line */
.premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 34px;
    right: 34px;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

/* Soft background glow */
.premium-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -65px;
    bottom: -65px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.08);
    pointer-events: none;
}

.premium-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 154, 45, 0.42);
    box-shadow: 0 24px 52px rgba(6, 26, 47, 0.11);
}

/* =========================================================
    PREMIUM ICON
========================================================== */
.premium-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    position: relative;
    z-index: 2;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(11, 47, 86, 0.09), rgba(214, 154, 45, 0.1));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    box-shadow: inset 0 0 0 1px rgba(11, 47, 86, 0.08);
    transition: 0.3s ease;
}

.premium-card:hover .premium-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(11, 47, 86, 0.18);
}

/* =========================================================
    PREMIUM CARD TEXT
========================================================== */
.premium-card h5 {
    position: relative;
    z-index: 2;
    color: var(--secondary-color);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 900;
    margin: 0 0 12px;
}

.premium-card p {
    position: relative;
    z-index: 2;
    color: var(--muted-text);
    font-size: 15px;
    line-height: 1.72;
    font-weight: 500;
    margin: 0;
}

/* =========================================================
    WHY CHOOSE US CARD SMALLER HEIGHT
========================================================== */
.why-section .premium-card {
    min-height: 235px;
}

/* =========================================================
    RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-title {
        font-size: 36px;
        letter-spacing: -0.6px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .premium-card {
        min-height: 230px;
        padding: 30px 24px;
        border-radius: 22px;
    }
}

/* =========================================================
    RESPONSIVE CSS - MOBILE
    Fixes left-floating issue by centering every card
========================================================== */
@media (max-width: 575px) {
    .section-padding {
        padding: 58px 0;
    }

    .services-section .container,
    .why-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading {
        max-width: 100%;
        margin-bottom: 30px;
        padding: 0 4px;
    }

    .section-badge {
        padding: 7px 13px;
        font-size: 11.5px;
        margin-bottom: 13px;
    }

    .section-title {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
        font-size: 28px;
        line-height: 1.25;
        letter-spacing: -0.4px;
        text-align: center;
    }

    .section-subtitle {
        max-width: 325px;
        font-size: 14.2px;
        line-height: 1.65;
        margin-top: 13px;
        text-align: center;
    }

    .services-section .row,
    .why-section .row {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .services-section [class*="col-"],
    .why-section [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
    }

    .premium-card {
        width: 100%;
        max-width: 335px;
        min-height: auto;
        padding: 26px 20px;
        border-radius: 22px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        box-shadow: 0 12px 28px rgba(6, 26, 47, 0.07);
    }

    .premium-card:hover {
        transform: none;
    }

    .premium-card::before {
        left: 42px;
        right: 42px;
        height: 3px;
    }

    .premium-card::after {
        width: 110px;
        height: 110px;
        right: -55px;
        bottom: -55px;
    }

    .premium-icon {
        width: 60px;
        height: 60px;
        border-radius: 19px;
        margin-bottom: 18px;
        font-size: 25px;
    }

    .premium-card h5 {
        font-size: 18px;
        margin-bottom: 9px;
    }

    .premium-card p {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
        font-size: 13.8px;
        line-height: 1.65;
    }
}

/* =========================================================
    RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .section-padding {
        padding: 52px 0;
    }

    .section-title {
        max-width: 300px;
        font-size: 25px;
    }

    .section-subtitle {
        max-width: 292px;
        font-size: 13.8px;
    }

    .premium-card {
        max-width: 310px;
        padding: 24px 18px;
        border-radius: 20px;
    }

    .premium-icon {
        width: 56px;
        height: 56px;
        font-size: 23px;
    }

    .premium-card h5 {
        font-size: 17px;
    }

    .premium-card p {
        max-width: 260px;
        font-size: 13.5px;
    }
}

/* =========================================================
    TESTIMONIAL / GOOGLE REVIEWS SECTION
    Premium review showcase
========================================================== */
.testimonial-section {
    position: relative;
    background:
        radial-gradient(circle at top right, rgba(214, 154, 45, 0.09), transparent 28%),
        radial-gradient(circle at bottom left, rgba(11, 47, 86, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}

.testimonial-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 26, 47, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 26, 47, 0.03) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

.testimonial-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
    GOOGLE REVIEW SUMMARY
========================================================== */
.google-review-summary {
    max-width: 920px;
    margin: 0 auto 42px;
    padding: 22px 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow: 0 18px 42px rgba(6, 26, 47, 0.075);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.google-review-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.google-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(11, 47, 86, 0.09), rgba(214, 154, 45, 0.1));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
}

.google-review-brand h4 {
    color: var(--secondary-color);
    font-size: 21px;
    font-weight: 950;
    margin: 0 0 6px;
}

.google-rating-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.google-rating-row strong {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 950;
}

.google-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--accent-color);
    font-size: 15px;
}

.google-rating-row span:last-child {
    color: var(--muted-text);
    font-size: 13px;
    font-weight: 700;
}

.google-review-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 950;
    transition: 0.3s ease;
    white-space: nowrap;
}

.google-review-cta i {
    font-size: 20px;
    line-height: 1;
}

.google-review-cta:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--secondary-color);
    transform: translateY(-1px);
}

/* =========================================================
    TESTIMONIAL CARD
========================================================== */
.testimonial-card {
    width: 100%;
    max-width: 380px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 26px 24px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow: 0 16px 38px rgba(6, 26, 47, 0.07);
    transition: 0.3s ease;
    overflow: hidden;
}

.testimonial-card::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.testimonial-card::after {
    content: "“";
    position: absolute;
    right: 20px;
    bottom: -22px;
    color: rgba(214, 154, 45, 0.11);
    font-size: 120px;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 154, 45, 0.38);
    box-shadow: 0 26px 58px rgba(6, 26, 47, 0.12);
}

/* =========================================================
    TESTIMONIAL HEADER
========================================================== */
.testimonial-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(11, 47, 86, 0.18);
}

.testimonial-header h5 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 950;
    margin: 0 0 3px;
}

.testimonial-header span {
    color: var(--muted-text);
    font-size: 12.5px;
    font-weight: 700;
}

.testimonial-google-icon {
    margin-left: auto;
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* =========================================================
    TESTIMONIAL CONTENT
========================================================== */
.testimonial-stars {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 3px;
    color: var(--accent-color);
    font-size: 15px;
    margin: 18px 0 14px;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    color: var(--muted-text);
    font-size: 14.5px;
    line-height: 1.72;
    font-weight: 500;
    margin: 0;
}

/* =========================================================
    TESTIMONIAL BOTTOM CTA
========================================================== */
.testimonial-bottom-cta {
    max-width: 650px;
    margin: 38px auto 0;
    padding: 18px 22px;
    border-radius: 22px;
    background: rgba(11, 47, 86, 0.06);
    border: 1px solid rgba(6, 26, 47, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.testimonial-bottom-cta p {
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 850;
    margin: 0;
}

.testimonial-bottom-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 17px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 950;
    white-space: nowrap;
    transition: 0.3s ease;
}

.testimonial-bottom-cta a:hover {
    background: #128c4a;
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================================================
    TESTIMONIAL RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .google-review-summary {
        max-width: 700px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .google-review-brand {
        flex-direction: column;
    }

    .google-rating-row {
        justify-content: center;
    }
}

/* =========================================================
    TESTIMONIAL RESPONSIVE CSS - MOBILE
========================================================== */
@media (max-width: 575px) {
    .testimonial-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .testimonial-section::before {
        background-size: 34px 34px;
    }

    .google-review-summary {
        max-width: 335px;
        padding: 22px 18px;
        border-radius: 24px;
        margin-bottom: 28px;
    }

    .google-icon {
        width: 54px;
        height: 54px;
        min-width: 54px;
        border-radius: 17px;
        font-size: 25px;
    }

    .google-review-brand h4 {
        font-size: 18px;
    }

    .google-rating-row {
        gap: 6px;
    }

    .google-rating-row strong {
        font-size: 18px;
    }

    .google-stars {
        font-size: 13px;
    }

    .google-rating-row span:last-child {
        width: 100%;
        font-size: 12px;
    }

    .google-review-cta {
        width: 100%;
        min-height: 45px;
        border-radius: 14px;
        font-size: 13px;
    }

    .testimonial-section .row {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .testimonial-section [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
    }

    .testimonial-card {
        max-width: 335px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .testimonial-card:hover {
        transform: none;
    }

    .reviewer-avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 16px;
    }

    .testimonial-header h5 {
        font-size: 15px;
    }

    .testimonial-header span {
        font-size: 12px;
    }

    .testimonial-google-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 15px;
    }

    .testimonial-stars {
        justify-content: flex-start;
        margin: 16px 0 12px;
    }

    .testimonial-card p {
        font-size: 13.8px;
        line-height: 1.68;
    }

    .testimonial-bottom-cta {
        max-width: 335px;
        margin-top: 28px;
        padding: 20px;
        border-radius: 22px;
        flex-direction: column;
        text-align: center;
    }

    .testimonial-bottom-cta p {
        font-size: 14px;
        line-height: 1.5;
    }

    .testimonial-bottom-cta a {
        width: 100%;
        min-height: 45px;
        border-radius: 14px;
        font-size: 13px;
    }

    .reviewer-avatar-img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(66, 133, 244, 0.18);
}
}

/* =========================================================
    TESTIMONIAL RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .google-review-summary,
    .testimonial-card,
    .testimonial-bottom-cta {
        max-width: 310px;
    }

    .testimonial-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .testimonial-card p {
        font-size: 13.4px;
    }
}

/* =========================================================
    PORTFOLIO SECTION
    Ultra premium work showcase with correct 1920x878 image ratio
========================================================== */
.portfolio-section {
    background:
        radial-gradient(circle at top right, rgba(214, 154, 45, 0.09), transparent 28%),
        radial-gradient(circle at bottom left, rgba(11, 47, 86, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}

.portfolio-section .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
    PORTFOLIO CARD
========================================================== */
.portfolio-card-premium {
    width: 100%;
    height: 100%;
    max-width: 410px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 47, 0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(6, 26, 47, 0.075);
    transition: 0.35s ease;
}

.portfolio-card-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(214, 154, 45, 0.55),
        transparent 40%,
        rgba(11, 47, 86, 0.22)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: 0.35s ease;
    z-index: 2;
}

.portfolio-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 62px rgba(6, 26, 47, 0.13);
}

.portfolio-card-premium:hover::before {
    opacity: 1;
}

/* =========================================================
    PORTFOLIO IMAGE AREA
    Image ratio: 1920x878 = 2.187:1
    object-fit: contain prevents image cutting
========================================================== */
.portfolio-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 878;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6, 26, 47, 0.08), rgba(214, 154, 45, 0.08)),
        #f5f8fb;
    border-bottom: 1px solid rgba(6, 26, 47, 0.08);
    padding: 10px;
}

.portfolio-image-wrap::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.72);
    pointer-events: none;
    z-index: 1;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
    background: #ffffff;
    transition: 0.45s ease;
    position: relative;
    z-index: 1;
}

.portfolio-card-premium:hover .portfolio-image {
    transform: scale(1.025);
}

/* Image overlay label */
.portfolio-image-overlay {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    justify-content: flex-start;
    z-index: 3;
}

.portfolio-image-overlay span {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(3, 11, 20, 0.8);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 900;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* =========================================================
    PORTFOLIO CONTENT
========================================================== */
.portfolio-content {
    position: relative;
    padding: 26px 24px 24px;
    background: #ffffff;
}

.portfolio-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 154, 45, 0.5),
        transparent
    );
}

.portfolio-category {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    margin-bottom: 15px;
    border-radius: 999px;
    background: rgba(214, 154, 45, 0.12);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
}

.portfolio-category i {
    color: var(--primary-color);
    font-size: 13px;
}

.portfolio-content h5 {
    color: var(--secondary-color);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 950;
    margin: 0 0 10px;
}

.portfolio-content p {
    color: var(--muted-text);
    font-size: 14.5px;
    line-height: 1.68;
    font-weight: 500;
    margin: 0 0 20px;
}

/* =========================================================
    PORTFOLIO BUTTON
========================================================== */
.portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 43px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(11, 47, 86, 0.08);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 900;
    transition: 0.3s ease;
}

.portfolio-btn i {
    font-size: 19px;
    line-height: 1;
}

.portfolio-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    transform: translateY(-1px);
}

/* =========================================================
    PORTFOLIO RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .portfolio-card-premium {
        max-width: 420px;
    }

    .portfolio-image-wrap {
        padding: 9px;
    }

    .portfolio-image,
    .portfolio-image-wrap::before {
        border-radius: 17px;
    }

    .portfolio-content {
        padding: 24px 22px 22px;
    }
}

/* =========================================================
    PORTFOLIO RESPONSIVE CSS - MOBILE
    Cards centered and image shown without cropping
========================================================== */
@media (max-width: 575px) {
    .portfolio-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .portfolio-section .row {
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
    }

    .portfolio-section [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
    }

    .portfolio-card-premium {
        width: 100%;
        max-width: 335px;
        border-radius: 24px;
        box-shadow: 0 14px 34px rgba(6, 26, 47, 0.08);
    }

    .portfolio-card-premium::before {
        border-radius: 24px;
    }

    .portfolio-card-premium:hover {
        transform: none;
    }

    .portfolio-image-wrap {
        aspect-ratio: 1920 / 878;
        padding: 8px;
    }

    .portfolio-image-wrap::before {
        inset: 8px;
        border-radius: 15px;
    }

    .portfolio-image {
        border-radius: 15px;
        object-fit: contain;
        object-position: center center;
    }

    .portfolio-card-premium:hover .portfolio-image {
        transform: none;
    }

    .portfolio-image-overlay {
        left: 16px;
        bottom: 16px;
    }

    .portfolio-image-overlay span {
        font-size: 11.5px;
        padding: 7px 11px;
    }

    .portfolio-content {
        padding: 22px 20px 21px;
        text-align: center;
    }

    .portfolio-content::before {
        left: 35px;
        right: 35px;
    }

    .portfolio-category {
        margin-left: auto;
        margin-right: auto;
        font-size: 11.5px;
        padding: 7px 11px;
    }

    .portfolio-content h5 {
        font-size: 19px;
    }

    .portfolio-content p {
        max-width: 285px;
        margin-left: auto;
        margin-right: auto;
        font-size: 13.8px;
        line-height: 1.65;
    }

    .portfolio-btn {
        width: 100%;
        min-height: 44px;
        border-radius: 14px;
        font-size: 13px;
    }
}

/* =========================================================
    PORTFOLIO RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .portfolio-card-premium {
        max-width: 310px;
        border-radius: 22px;
    }

    .portfolio-card-premium::before {
        border-radius: 22px;
    }

    .portfolio-image-wrap {
        padding: 7px;
    }

    .portfolio-image-wrap::before {
        inset: 7px;
        border-radius: 14px;
    }

    .portfolio-image {
        border-radius: 14px;
    }

    .portfolio-image-overlay {
        left: 14px;
        bottom: 14px;
    }

    .portfolio-content {
        padding: 20px 18px;
    }

    .portfolio-content h5 {
        font-size: 18px;
    }

    .portfolio-content p {
        max-width: 260px;
        font-size: 13.4px;
    }
}

/* =========================================================
    PRICING SECTION
    Premium ₹9,999 + GST website package
========================================================== */
.pricing-section {
    background:
        radial-gradient(circle at top center, rgba(214, 154, 45, 0.1), transparent 28%),
        radial-gradient(circle at bottom right, rgba(11, 47, 86, 0.08), transparent 30%),
        linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
    overflow: hidden;
}

/* =========================================================
    PRICING CARD
========================================================== */
.pricing-card-premium {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 251, 0.98));
    border: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow:
        0 24px 60px rgba(6, 26, 47, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.pricing-card-premium::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.pricing-card-premium::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.1);
    pointer-events: none;
}

/* =========================================================
    TOP BADGE
========================================================== */
.pricing-top-badge {
    width: fit-content;
    margin: 0 auto 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--accent-color);
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 950;
    box-shadow: 0 14px 28px rgba(214, 154, 45, 0.24);
    position: relative;
    z-index: 2;
}

.pricing-top-badge i {
    font-size: 13px;
}

/* =========================================================
    CARD HEADER
========================================================== */
.pricing-card-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(6, 26, 47, 0.08);
}

.pricing-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(11, 47, 86, 0.09), rgba(214, 154, 45, 0.11));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: inset 0 0 0 1px rgba(11, 47, 86, 0.08);
}

.pricing-card-header h3 {
    color: var(--secondary-color);
    font-size: 27px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}

.pricing-card-header p {
    color: var(--muted-text);
    max-width: 390px;
    margin: 0 auto;
    font-size: 14.5px;
    line-height: 1.65;
    font-weight: 500;
}

/* =========================================================
    PRICE BOX
========================================================== */
.pricing-price-box {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 26px 0 24px;
    border-bottom: 1px solid rgba(6, 26, 47, 0.08);
}

.pricing-starts {
    display: block;
    color: var(--muted-text);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 8px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-price .currency {
    font-size: 30px;
    font-weight: 950;
    margin-top: 7px;
}

.pricing-price .amount {
    font-size: 62px;
    font-weight: 950;
    letter-spacing: -2px;
}

.pricing-gst {
    display: inline-flex;
    margin-top: 10px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(214, 154, 45, 0.12);
    color: var(--accent-dark);
    font-size: 12.5px;
    font-weight: 900;
}

/* =========================================================
    PRICING FEATURES
========================================================== */
.pricing-features {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 12px;
    padding: 26px 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 13px;
    border-radius: 15px;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 47, 0.07);
    color: var(--secondary-color);
    font-size: 14.5px;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(6, 26, 47, 0.035);
}

.pricing-check {
    width: 27px;
    height: 27px;
    min-width: 27px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.14);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

/* =========================================================
    PRICING ACTIONS
========================================================== */
.pricing-actions {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

.pricing-primary-btn,
.pricing-whatsapp-btn {
    min-height: 52px;
    width: 100%;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 950;
    transition: 0.3s ease;
}

.pricing-primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    box-shadow: 0 16px 34px rgba(11, 47, 86, 0.22);
}

.pricing-primary-btn:hover {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    transform: translateY(-1px);
}

.pricing-whatsapp-btn {
    background: rgba(37, 211, 102, 0.1);
    color: #128c4a;
    border: 1px solid rgba(37, 211, 102, 0.22);
}

.pricing-whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-1px);
}

.pricing-primary-btn i,
.pricing-whatsapp-btn i {
    font-size: 21px;
    line-height: 1;
}

/* =========================================================
    PRICING NOTE
========================================================== */
.pricing-note {
    position: relative;
    z-index: 2;
    margin-top: 18px;
    padding: 13px 14px;
    border-radius: 15px;
    background: rgba(11, 47, 86, 0.055);
    color: var(--muted-text);
    font-size: 12.5px;
    line-height: 1.55;
    font-weight: 600;
    text-align: center;
}

.pricing-note i {
    color: var(--accent-color);
    margin-right: 4px;
}

/* =========================================================
    PRICING RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .pricing-card-premium {
        max-width: 560px;
    }

    .pricing-price .amount {
        font-size: 58px;
    }
}

/* =========================================================
    PRICING RESPONSIVE CSS - MOBILE
========================================================== */
@media (max-width: 575px) {
    .pricing-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .pricing-card-premium {
        max-width: 335px;
        padding: 24px 20px;
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(6, 26, 47, 0.1);
    }

    .pricing-card-premium::before {
        height: 5px;
    }

    .pricing-card-premium::after {
        width: 150px;
        height: 150px;
        right: -85px;
        top: -85px;
    }

    .pricing-top-badge {
        margin-bottom: 20px;
        padding: 8px 13px;
        font-size: 12px;
    }

    .pricing-card-header {
        padding-bottom: 21px;
    }

    .pricing-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .pricing-card-header h3 {
        font-size: 23px;
    }

    .pricing-card-header p {
        max-width: 280px;
        font-size: 13.5px;
    }

    .pricing-price-box {
        padding: 23px 0 21px;
    }

    .pricing-starts {
        font-size: 12px;
    }

    .pricing-price .currency {
        font-size: 25px;
        margin-top: 6px;
    }

    .pricing-price .amount {
        font-size: 50px;
        letter-spacing: -1.5px;
    }

    .pricing-gst {
        font-size: 11.8px;
        padding: 6px 11px;
    }

    .pricing-features {
        gap: 10px;
        padding: 22px 0;
    }

    .pricing-feature {
        padding: 11px 11px;
        border-radius: 13px;
        font-size: 13.5px;
        gap: 9px;
    }

    .pricing-check {
        width: 25px;
        height: 25px;
        min-width: 25px;
        font-size: 14px;
    }

    .pricing-primary-btn,
    .pricing-whatsapp-btn {
        min-height: 49px;
        border-radius: 14px;
        font-size: 13.5px;
    }

    .pricing-note {
        font-size: 11.8px;
        border-radius: 13px;
        padding: 12px;
    }
}

/* =========================================================
    PRICING RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .pricing-card-premium {
        max-width: 310px;
        padding: 22px 18px;
        border-radius: 22px;
    }

    .pricing-card-header h3 {
        font-size: 21px;
    }

    .pricing-card-header p {
        max-width: 260px;
        font-size: 13px;
    }

    .pricing-price .amount {
        font-size: 45px;
    }

    .pricing-price .currency {
        font-size: 23px;
    }

    .pricing-feature {
        font-size: 13px;
        align-items: flex-start;
    }
}



/* =========================================================
    LEAD FORM SECTION
    Ultra premium quote request section
========================================================== */
.lead-form-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(214, 154, 45, 0.1), transparent 28%),
        radial-gradient(circle at bottom right, rgba(11, 47, 86, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}

.lead-form-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(6, 26, 47, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 26, 47, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

.lead-form-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 42px;
    align-items: center;
}

/* =========================================================
    LEFT CONTENT
========================================================== */
.lead-content-box {
    width: 100%;
    max-width: 590px;
}

.lead-title {
    color: var(--secondary-color);
    font-size: 46px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -1.2px;
    margin: 0;
}

.lead-subtitle {
    color: var(--muted-text);
    font-size: 16.5px;
    line-height: 1.75;
    font-weight: 500;
    margin: 18px 0 0;
    max-width: 540px;
}

/* =========================================================
    LEAD BENEFITS
========================================================== */
.lead-benefits {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.lead-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow: 0 12px 28px rgba(6, 26, 47, 0.055);
}

.lead-benefit-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.14);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
}

.lead-benefit-item h5 {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 4px;
}

.lead-benefit-item p {
    color: var(--muted-text);
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0;
}

/* =========================================================
    LEAD ACTION BUTTONS
========================================================== */
.lead-action-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lead-whatsapp-btn,
.lead-call-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 21px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 950;
    transition: 0.3s ease;
}

.lead-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.lead-whatsapp-btn:hover {
    background: #128c4a;
    color: #ffffff;
    transform: translateY(-2px);
}

.lead-call-btn {
    background: rgba(11, 47, 86, 0.08);
    color: var(--primary-color);
    border: 1px solid rgba(11, 47, 86, 0.12);
}

.lead-call-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================================
    TRUST STRIP
========================================================== */
.lead-trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.lead-trust-strip div {
    padding: 16px 10px;
    border-radius: 18px;
    text-align: center;
    background: rgba(11, 47, 86, 0.06);
    border: 1px solid rgba(6, 26, 47, 0.08);
}

.lead-trust-strip strong {
    display: block;
    color: var(--primary-color);
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    margin-bottom: 6px;
}

.lead-trust-strip span {
    display: block;
    color: var(--muted-text);
    font-size: 12px;
    font-weight: 800;
}

/* =========================================================
    RIGHT FORM CARD
========================================================== */
.lead-form-card {
    width: 100%;
    position: relative;
    padding: 34px;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 251, 0.98));
    border: 1px solid rgba(6, 26, 47, 0.08);
    box-shadow:
        0 24px 60px rgba(6, 26, 47, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.lead-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.lead-form-card::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.1);
    pointer-events: none;
}

.lead-form-card form,
.lead-form-header {
    position: relative;
    z-index: 2;
}

/* =========================================================
    FORM HEADER
========================================================== */
.lead-form-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(6, 26, 47, 0.08);
}

.lead-form-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(11, 47, 86, 0.09), rgba(214, 154, 45, 0.11));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: inset 0 0 0 1px rgba(11, 47, 86, 0.08);
}

.lead-form-header h4 {
    color: var(--secondary-color);
    font-size: 25px;
    line-height: 1.25;
    font-weight: 950;
    margin: 0 0 5px;
}

.lead-form-header p {
    color: var(--muted-text);
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    font-weight: 500;
}

/* =========================================================
    FORM INPUTS
========================================================== */
.lead-input-group .form-label {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 850;
    margin-bottom: 7px;
}

.lead-form-card .form-control,
.lead-form-card .form-select {
    width: 100%;
    min-height: 50px;
    border-radius: 15px;
    border: 1px solid #d8dee8;
    background-color: #ffffff;
    color: var(--dark-text);
    font-size: 14px;
    font-weight: 550;
    padding: 11px 14px;
    box-shadow: none;
    transition: 0.3s ease;
}

.lead-form-card textarea.form-control {
    min-height: 105px;
    resize: none;
}

.lead-form-card .form-control::placeholder {
    color: #9ca3af;
}

.lead-form-card .form-control:focus,
.lead-form-card .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.22rem rgba(214, 154, 45, 0.14);
}

/* =========================================================
    SUBMIT BUTTON
========================================================== */
.lead-submit-btn {
    width: 100%;
    min-height: 54px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    font-size: 15px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 16px 34px rgba(11, 47, 86, 0.22);
    transition: 0.3s ease;
}

.lead-submit-btn i {
    font-size: 22px;
    line-height: 1;
}

.lead-submit-btn:hover {
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    transform: translateY(-1px);
}

/* =========================================================
    FORM NOTE
========================================================== */
.lead-form-note {
    margin-top: 15px;
    padding: 12px 14px;
    border-radius: 15px;
    background: rgba(11, 47, 86, 0.055);
    color: var(--muted-text);
    font-size: 12.5px;
    line-height: 1.55;
    font-weight: 650;
    text-align: center;
}

.lead-form-note i {
    color: var(--accent-color);
    margin-right: 4px;
}

/* =========================================================
    RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .lead-form-wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
        justify-items: center;
    }

    .lead-content-box {
        max-width: 700px;
        text-align: center;
    }

    .lead-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .lead-benefit-item {
        text-align: left;
    }

    .lead-action-buttons {
        justify-content: center;
    }

    .lead-form-card {
        max-width: 700px;
    }
}

/* =========================================================
    RESPONSIVE CSS - MOBILE
========================================================== */
@media (max-width: 575px) {
    .lead-form-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lead-form-wrapper {
        gap: 24px;
    }

    .lead-content-box {
        width: 100%;
        max-width: 335px;
        margin: 0 auto;
        padding: 24px 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.76);
        border: 1px solid rgba(6, 26, 47, 0.08);
        box-shadow: 0 12px 30px rgba(6, 26, 47, 0.06);
    }

    .lead-title {
        font-size: 28px;
        line-height: 1.22;
        letter-spacing: -0.4px;
        text-align: center;
    }

    .lead-subtitle {
        max-width: 295px;
        font-size: 14px;
        line-height: 1.65;
        text-align: center;
        margin-top: 13px;
    }

    .lead-benefits {
        gap: 11px;
        margin-top: 22px;
    }

    .lead-benefit-item {
        padding: 14px;
        border-radius: 17px;
        gap: 11px;
    }

    .lead-benefit-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 15px;
    }

    .lead-benefit-item h5 {
        font-size: 14.5px;
    }

    .lead-benefit-item p {
        font-size: 12.5px;
    }

    .lead-action-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 22px;
    }

    .lead-whatsapp-btn,
    .lead-call-btn {
        width: 100%;
        min-height: 49px;
        border-radius: 14px;
        font-size: 13.5px;
    }

    .lead-trust-strip {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 22px;
    }

    .lead-trust-strip div {
        padding: 12px 6px;
        border-radius: 14px;
    }

    .lead-trust-strip strong {
        font-size: 18px;
    }

    .lead-trust-strip span {
        font-size: 10px;
        line-height: 1.2;
    }

    .lead-form-card {
        max-width: 335px;
        padding: 22px;
        border-radius: 24px;
        box-shadow: 0 16px 40px rgba(6, 26, 47, 0.1);
    }

    .lead-form-card::before {
        height: 5px;
    }

    .lead-form-card::after {
        width: 145px;
        height: 145px;
        right: -85px;
        top: -85px;
    }

    .lead-form-header {
        align-items: center;
        gap: 11px;
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .lead-form-icon {
        width: 43px;
        height: 43px;
        min-width: 43px;
        border-radius: 14px;
        font-size: 20px;
    }

    .lead-form-header h4 {
        font-size: 20px;
    }

    .lead-form-header p {
        font-size: 12.6px;
        line-height: 1.45;
    }

    .lead-input-group .form-label {
        font-size: 12.5px;
        margin-bottom: 6px;
    }

    .lead-form-card .form-control,
    .lead-form-card .form-select {
        min-height: 46px;
        border-radius: 13px;
        font-size: 13.5px;
        padding: 10px 12px;
    }

    .lead-form-card textarea.form-control {
        min-height: 84px;
    }

    .lead-submit-btn {
        min-height: 49px;
        border-radius: 14px;
        font-size: 14px;
    }

    .lead-form-note {
        font-size: 11.8px;
        border-radius: 13px;
        padding: 11px;
    }
}

/* =========================================================
    RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .lead-content-box,
    .lead-form-card {
        max-width: 310px;
    }

    .lead-content-box {
        padding: 22px 15px;
    }

    .lead-title {
        font-size: 25px;
    }

    .lead-subtitle {
        max-width: 275px;
        font-size: 13.6px;
    }

    .lead-form-card {
        padding: 19px;
        border-radius: 22px;
    }

    .lead-trust-strip strong {
        font-size: 16px;
    }

    .lead-trust-strip span {
        font-size: 9.5px;
    }
}

/* =========================================================
    CTA SECTION
    Ultra premium final conversion section
========================================================== */
.cta-section {
    position: relative;
    color: var(--white-color);
    padding: 88px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top center, rgba(214, 154, 45, 0.22), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #030b14 0%, #061a2f 48%, #0b2f56 100%);
}

.cta-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -140px;
    bottom: -140px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.14);
    filter: blur(2px);
    pointer-events: none;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -110px;
    top: -110px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.cta-wrapper {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 48px 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.cta-badge {
    width: fit-content;
    margin: 0 auto 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(214, 154, 45, 0.14);
    border: 1px solid rgba(214, 154, 45, 0.42);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 900;
}

.cta-badge i {
    color: var(--accent-color);
}

.cta-wrapper h2 {
    max-width: 760px;
    margin: 0 auto;
    color: var(--white-color);
    font-size: 44px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -1px;
}

.cta-wrapper p {
    max-width: 680px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

.cta-wrapper p strong {
    color: var(--accent-color);
    font-weight: 950;
}

.cta-feature-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cta-feature-list span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.085);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    font-weight: 800;
}

.cta-feature-list i {
    color: var(--accent-color);
    font-size: 14px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.cta-primary-btn,
.cta-whatsapp-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    transition: 0.3s ease;
    white-space: nowrap;
}

.cta-primary-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--secondary-color);
    box-shadow: 0 16px 34px rgba(214, 154, 45, 0.25);
}

.cta-primary-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-whatsapp-btn {
    background: rgba(37, 211, 102, 0.12);
    color: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.32);
}

.cta-whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
}

.cta-primary-btn i,
.cta-whatsapp-btn i {
    font-size: 21px;
    line-height: 1;
}

/* =========================================================
    CTA RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .cta-section {
        padding: 76px 0;
    }

    .cta-wrapper {
        max-width: 720px;
        padding: 42px 28px;
        border-radius: 30px;
    }

    .cta-wrapper h2 {
        font-size: 38px;
    }

    .cta-wrapper p {
        font-size: 16px;
    }
}

/* =========================================================
    CTA RESPONSIVE CSS - MOBILE
========================================================== */
@media (max-width: 575px) {
    .cta-section {
        padding: 56px 0;
    }

    .cta-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cta-bg-pattern {
        background-size: 34px 34px;
        opacity: 0.05;
    }

    .cta-wrapper {
        max-width: 335px;
        padding: 30px 20px;
        border-radius: 24px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-badge {
        padding: 8px 12px;
        font-size: 11.8px;
        margin-bottom: 16px;
    }

    .cta-wrapper h2 {
        max-width: 292px;
        font-size: 27px;
        line-height: 1.22;
        letter-spacing: -0.4px;
    }

    .cta-wrapper p {
        max-width: 285px;
        font-size: 14px;
        line-height: 1.65;
        margin-top: 14px;
    }

    .cta-feature-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 9px;
        margin-top: 22px;
    }

    .cta-feature-list span {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
        font-size: 12.8px;
        padding: 10px 12px;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }

    .cta-primary-btn,
    .cta-whatsapp-btn {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
        font-size: 13.5px;
        padding: 12px 15px;
    }
}

/* =========================================================
    CTA RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .cta-wrapper {
        max-width: 310px;
        padding: 28px 18px;
        border-radius: 22px;
    }

    .cta-wrapper h2 {
        max-width: 270px;
        font-size: 25px;
    }

    .cta-wrapper p {
        max-width: 265px;
        font-size: 13.6px;
    }

    .cta-feature-list span {
        font-size: 12.2px;
    }
}

/* =========================================================
    FOOTER SECTION
    Ultra premium responsive footer
========================================================== */
.footer {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(214, 154, 45, 0.15), transparent 28%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.07), transparent 30%),
        linear-gradient(135deg, #030b14 0%, #061a2f 52%, #030b14 100%);
    color: #d1d5db;
    padding: 76px 0 24px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -150px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.11);
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    pointer-events: none;
}

.footer-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.055;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
    FOOTER GRID
========================================================== */
.footer-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 0.85fr 1fr 1.15fr;
    gap: 28px;
    align-items: stretch;
}

.footer-card {
    position: relative;
}

/* =========================================================
    FOOTER BRAND
========================================================== */
.footer-brand-box {
    max-width: 370px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    text-decoration: none;
}

.footer-logo img {
    max-width: 180px;
    max-height: 62px;
    object-fit: contain;
}

.footer-brand-box p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 14.5px;
    line-height: 1.75;
    font-weight: 500;
    margin: 0 0 22px;
}

/* =========================================================
    FOOTER SOCIAL LINKS
========================================================== */
.footer-social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social-links a:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* =========================================================
    FOOTER HEADINGS
========================================================== */
.footer h5 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 950;
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent-color);
}

/* =========================================================
    FOOTER LINKS
========================================================== */
.footer-links-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-box li {
    margin-bottom: 11px;
}

.footer-links-box a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14.2px;
    font-weight: 650;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.footer-links-box a i {
    color: var(--accent-color);
    font-size: 12px;
    transition: 0.3s ease;
}

.footer-links-box a:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

/* =========================================================
    FOOTER CONTACT
========================================================== */
.footer-contact-box {
    width: 100%;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.11);
    transition: 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.095);
    border-color: rgba(214, 154, 45, 0.28);
}

.footer-contact-item > span {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.14);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.footer-contact-item small {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11.5px;
    font-weight: 850;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.footer-contact-item a,
.footer-contact-item p {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 14px;
    font-weight: 750;
    margin: 0;
    word-break: break-word;
}

.footer-contact-item a:hover {
    color: var(--accent-color);
}

/* =========================================================
    FOOTER BOTTOM
========================================================== */
.footer-bottom {
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13.5px;
    font-weight: 500;
}

.footer-bottom p strong {
    color: var(--accent-color);
    font-weight: 900;
}

.footer-bottom-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 650;
    transition: 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer-bottom-links span {
    width: 4px;
    height: 4px;
    min-width: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* =========================================================
    FOOTER RESPONSIVE CSS - LAPTOP
========================================================== */
@media (max-width: 1199px) {
    .footer-wrapper {
        grid-template-columns: 1.2fr 0.8fr 0.9fr 1.15fr;
        gap: 24px;
    }

    .footer-logo img {
        max-width: 165px;
    }
}

/* =========================================================
    FOOTER RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .footer {
        padding: 66px 0 22px;
    }

    .footer-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-card {
        padding: 24px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.09);
    }

    .footer-brand-box {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
    FOOTER RESPONSIVE CSS - MOBILE
    Premium app-card style layout
========================================================== */
@media (max-width: 575px) {
    .footer {
        padding: 48px 0 20px;
        background:
            radial-gradient(circle at top center, rgba(214, 154, 45, 0.16), transparent 34%),
            linear-gradient(180deg, #030b14 0%, #061a2f 55%, #030b14 100%);
    }

    .footer .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer::before {
        width: 190px;
        height: 190px;
        left: -105px;
        bottom: -95px;
    }

    .footer::after {
        width: 160px;
        height: 160px;
        right: -85px;
        top: -80px;
    }

    .footer-bg-pattern {
        background-size: 34px 34px;
        opacity: 0.045;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center;
        text-align: left;
    }

    .footer-card {
        width: 100%;
        max-width: 335px;
        padding: 22px 20px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.065);
        border: 1px solid rgba(255, 255, 255, 0.11);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .footer-brand-box {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
        border-radius: 16px;
        padding: 9px 13px;
    }

    .footer-logo img {
        max-width: 155px;
        max-height: 54px;
    }

    .footer-brand-box p {
        max-width: 295px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
        font-size: 13.8px;
        line-height: 1.68;
        text-align: center;
    }

    .footer-social-links {
        justify-content: center;
        gap: 9px;
    }

    .footer-social-links a {
        width: 41px;
        height: 41px;
        background: rgba(255, 255, 255, 0.09);
    }

    .footer h5 {
        width: 100%;
        display: block;
        font-size: 17px;
        margin-bottom: 17px;
        text-align: left;
    }

    .footer h5::after {
        left: 0;
        transform: none;
    }

    .footer-links-box ul {
        display: grid;
        gap: 9px;
    }

    .footer-links-box li {
        margin-bottom: 0;
    }

    .footer-links-box a {
        width: 100%;
        min-height: 40px;
        padding: 9px 11px;
        border-radius: 13px;
        justify-content: flex-start;
        font-size: 13.8px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.065);
    }

    .footer-links-box a:hover {
        transform: none;
        background: rgba(214, 154, 45, 0.12);
        border-color: rgba(214, 154, 45, 0.22);
    }

    .footer-contact-item {
        text-align: left;
        border-radius: 16px;
        padding: 13px;
        background: rgba(255, 255, 255, 0.055);
        margin-bottom: 10px;
    }

    .footer-contact-item:last-child {
        margin-bottom: 0;
    }

    .footer-contact-item > span {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .footer-contact-item small {
        font-size: 10.8px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 13.4px;
        line-height: 1.45;
    }

    .footer-bottom {
        width: 100%;
        max-width: 335px;
        margin: 20px auto 0;
        padding: 18px 16px 0;
        gap: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-bottom p {
        max-width: 300px;
        line-height: 1.55;
        font-size: 12.5px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-bottom-links a {
        font-size: 12.5px;
    }
}

/* =========================================================
    FOOTER RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .footer .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .footer-card,
    .footer-bottom {
        max-width: 310px;
    }

    .footer-card {
        padding: 20px 17px;
        border-radius: 22px;
    }

    .footer-logo img {
        max-width: 145px;
    }

    .footer-brand-box p {
        max-width: 270px;
        font-size: 13.4px;
    }

    .footer-links-box a {
        font-size: 13.3px;
        padding: 9px 10px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 13px;
    }

    .footer-bottom p,
    .footer-bottom-links a {
        font-size: 12px;
    }
}

/* =========================================================
    FLOATING WHATSAPP BUTTON
========================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.whatsapp-float:hover {
    color: var(--white-color);
    background: #1ebe5d;
}

/* =========================================================
    RESPONSIVE CSS - LAPTOP / TABLET
========================================================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .navbar-collapse {
        padding-top: 15px;
    }

    .navbar .btn {
        margin-top: 10px;
        width: 100%;
    }
}

/* =========================================================
    RESPONSIVE CSS - MOBILE
    Main horizontal scroll fixes are here
========================================================== */
@media (max-width: 575px) {
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .top-bar {
        font-size: 13px;
        text-align: center;
    }

    .navbar-brand {
        font-size: 18px;
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .navbar-brand img,
    .brand-logo {
        max-height: 42px;
    }

    .hero-section {
        padding: 55px 0;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.18;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 7px 13px;
    }

    .hero-card {
        padding: 22px;
        border-radius: 16px;
    }

    .section-padding {
        padding: 55px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .service-card,
    .benefit-card,
    .portfolio-card,
    .pricing-card {
        padding: 22px;
        border-radius: 16px;
    }

    .form-box {
        padding: 22px;
        border-radius: 16px;
    }

    .cta-section {
        padding: 55px 0;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .footer {
        padding: 42px 0 18px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 16px;
        font-size: 25px;
    }

    /* Fix overflowing button groups on mobile */
    .d-flex.flex-column.flex-sm-row,
    .mt-4 {
        width: 100%;
    }

    .mt-4 .btn,
    .hero-section .btn {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .btn-lg {
        font-size: 16px;
        padding: 10px 18px;
    }
}

/* =========================================================
    RESPONSIVE CSS - EXTRA SMALL DEVICES
========================================================== */
@media (max-width: 375px) {
    .hero-title {
        font-size: 29px;
    }

    .section-title {
        font-size: 25px;
    }

    .hero-card,
    .form-box,
    .service-card,
    .benefit-card,
    .portfolio-card,
    .pricing-card {
        padding: 18px;
    }

    .btn-lg {
        font-size: 15px;
        padding: 10px 14px;
    }
}

/* =========================================================
    THANK YOU PAGE SECTION
    Ultra premium thank-you confirmation page
========================================================== */
.thankyou-section {
    position: relative;
    min-height: 680px;
    padding: 92px 0;
    overflow: hidden;
    color: var(--white-color);
    background:
        radial-gradient(circle at top center, rgba(214, 154, 45, 0.2), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 30%),
        linear-gradient(135deg, #030b14 0%, #061a2f 48%, #0b2f56 100%);
}

.thankyou-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.thankyou-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(3px);
}

.thankyou-glow-one {
    width: 280px;
    height: 280px;
    left: -135px;
    bottom: -125px;
    background: rgba(214, 154, 45, 0.16);
}

.thankyou-glow-two {
    width: 230px;
    height: 230px;
    right: -110px;
    top: 90px;
    background: rgba(255, 255, 255, 0.07);
}

.thankyou-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

/* =========================================================
    THANK YOU CARD
========================================================== */
.thankyou-card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 54px 42px;
    border-radius: 36px;
    text-align: center;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.thankyou-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
}

.thankyou-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(214, 154, 45, 0.12);
    pointer-events: none;
}

/* =========================================================
    SUCCESS ICON
========================================================== */
.thankyou-success-icon {
    width: 104px;
    height: 104px;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 54px;
    box-shadow:
        0 18px 42px rgba(214, 154, 45, 0.26),
        0 0 0 12px rgba(214, 154, 45, 0.1);
}

.thankyou-success-icon::after {
    content: "";
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px solid rgba(214, 154, 45, 0.35);
    animation: thankyouPulse 1.8s infinite;
}

@keyframes thankyouPulse {
    0% {
        transform: scale(0.88);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* =========================================================
    BADGE AND TEXT
========================================================== */
.thankyou-badge {
    width: fit-content;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(214, 154, 45, 0.14);
    border: 1px solid rgba(214, 154, 45, 0.42);
    color: var(--white-color);
    font-size: 13px;
    font-weight: 900;
}

.thankyou-badge i {
    color: var(--accent-color);
}

.thankyou-card h1 {
    position: relative;
    z-index: 2;
    color: var(--white-color);
    font-size: 58px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -1.6px;
    margin: 0;
}

.thankyou-message {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.75;
    font-weight: 500;
}

/* =========================================================
    THANK YOU INFO GRID
========================================================== */
.thankyou-info-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 34px;
}

.thankyou-info-item {
    padding: 20px 16px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.085);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

.thankyou-info-item span {
    width: 46px;
    height: 46px;
    margin: 0 auto 13px;
    border-radius: 16px;
    background: rgba(214, 154, 45, 0.15);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.thankyou-info-item h5 {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 6px;
}

.thankyou-info-item p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12.8px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

/* =========================================================
    THANK YOU ACTION BUTTONS
========================================================== */
.thankyou-actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 36px;
}

.thankyou-primary-btn,
.thankyou-whatsapp-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 950;
    transition: 0.3s ease;
    white-space: nowrap;
}

.thankyou-primary-btn {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: var(--secondary-color);
    box-shadow: 0 16px 34px rgba(214, 154, 45, 0.25);
}

.thankyou-primary-btn:hover {
    background: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.thankyou-whatsapp-btn {
    background: rgba(37, 211, 102, 0.12);
    color: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.32);
}

.thankyou-whatsapp-btn:hover {
    background: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
}

.thankyou-primary-btn i,
.thankyou-whatsapp-btn i {
    font-size: 21px;
    line-height: 1;
}

/* =========================================================
    THANK YOU CONTACT STRIP
========================================================== */
.thankyou-contact-strip {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 30px auto 0;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.thankyou-contact-strip a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 750;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: 0.3s ease;
}

.thankyou-contact-strip a:hover {
    color: var(--accent-color);
}

.thankyou-contact-strip i {
    color: var(--accent-color);
}

.thankyou-contact-strip span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* =========================================================
    THANK YOU RESPONSIVE CSS - TABLET
========================================================== */
@media (max-width: 991px) {
    .thankyou-section {
        padding: 76px 0;
    }

    .thankyou-card {
        max-width: 720px;
        padding: 46px 32px;
        border-radius: 32px;
    }

    .thankyou-card h1 {
        font-size: 48px;
    }

    .thankyou-info-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .thankyou-info-item {
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .thankyou-info-item span {
        margin: 0;
        flex: 0 0 auto;
    }
}

/* =========================================================
    THANK YOU RESPONSIVE CSS - MOBILE
========================================================== */
@media (max-width: 575px) {
    .thankyou-section {
        min-height: auto;
        padding: 48px 0 56px;
        background:
            radial-gradient(circle at top center, rgba(214, 154, 45, 0.16), transparent 34%),
            linear-gradient(180deg, #030b14 0%, #061a2f 55%, #0b2f56 100%);
    }

    .thankyou-section .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .thankyou-bg-pattern {
        background-size: 34px 34px;
        opacity: 0.05;
    }

    .thankyou-glow-one {
        width: 190px;
        height: 190px;
        left: -100px;
        bottom: -90px;
    }

    .thankyou-glow-two {
        width: 160px;
        height: 160px;
        right: -85px;
        top: 70px;
    }

    .thankyou-card {
        max-width: 335px;
        padding: 34px 20px;
        border-radius: 26px;
        margin-left: auto;
        margin-right: auto;
    }

    .thankyou-card::before {
        height: 5px;
    }

    .thankyou-success-icon {
        width: 82px;
        height: 82px;
        font-size: 43px;
        margin-bottom: 22px;
        box-shadow:
            0 16px 34px rgba(214, 154, 45, 0.22),
            0 0 0 9px rgba(214, 154, 45, 0.1);
    }

    .thankyou-success-icon::after {
        inset: -12px;
    }

    .thankyou-badge {
        padding: 8px 12px;
        font-size: 11.5px;
        margin-bottom: 16px;
    }

    .thankyou-card h1 {
        font-size: 34px;
        letter-spacing: -0.6px;
    }

    .thankyou-message {
        max-width: 285px;
        font-size: 14px;
        line-height: 1.65;
        margin-top: 13px;
    }

    .thankyou-info-grid {
        gap: 10px;
        margin-top: 24px;
    }

    .thankyou-info-item {
        padding: 15px 14px;
        border-radius: 17px;
        gap: 12px;
    }

    .thankyou-info-item span {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 18px;
    }

    .thankyou-info-item h5 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .thankyou-info-item p {
        font-size: 12.2px;
    }

    .thankyou-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 26px;
    }

    .thankyou-primary-btn,
    .thankyou-whatsapp-btn {
        width: 100%;
        min-height: 50px;
        border-radius: 14px;
        font-size: 13.5px;
        padding: 12px 15px;
    }

    .thankyou-contact-strip {
        max-width: 100%;
        margin-top: 22px;
        padding: 14px;
        border-radius: 16px;
        flex-direction: column;
        gap: 9px;
    }

    .thankyou-contact-strip span {
        display: none;
    }

    .thankyou-contact-strip a {
        font-size: 12.8px;
        justify-content: center;
        text-align: center;
    }
}

/* =========================================================
    THANK YOU RESPONSIVE CSS - SMALL MOBILE
========================================================== */
@media (max-width: 390px) {
    .thankyou-card {
        max-width: 310px;
        padding: 31px 18px;
        border-radius: 24px;
    }

    .thankyou-card h1 {
        font-size: 31px;
    }

    .thankyou-message {
        max-width: 265px;
        font-size: 13.6px;
    }

    .thankyou-info-item {
        padding: 14px 12px;
    }

    .thankyou-info-item p {
        font-size: 11.8px;
    }
}